代码搜索:Contributed
找到约 10,000 项符合「Contributed」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5523031
m static-1.m
/* Contributed by Nicola Pero - Fri Mar 9 19:39:15 CET 2001 */
#include
/* Test defining a static variable *inside* a class implementation */
@interface Test
{
Class isa;
}
+ (int)
www.eeworm.com/read/162614/5523060
m static-2.m
/* Contributed by Nicola Pero - Fri Mar 9 19:39:15 CET 2001 */
#include
/* Test defining a static function *inside* a class implementation */
@interface Test
{
Class isa;
}
+ (int)
www.eeworm.com/read/162614/5523090
m redefining_self.m
/* Contributed by Nicola Pero - Fri Mar 9 19:39:15 CET 2001 */
#include
/* Test redefining self */
@interface TestClass
{
Class isa;
}
+ (Class) class;
@end
@implementation TestCl
www.eeworm.com/read/162614/5523092
m compatibility_alias.m
/* Contributed by Nicola Pero - Thu Mar 8 17:23:59 CET 2001 */
#include
#include
@compatibility_alias MyObject Object;
int main (void)
{
MyObject *object = [MyObject
www.eeworm.com/read/162614/5523100
m load.m
/* Contributed by Nicola Pero - Wed Mar 7 17:55:04 CET 2001 */
#include
/* Test that +load is automatically called before main is run */
static int static_variable = 0;
@interface Te
www.eeworm.com/read/162614/5523103
m nested-3.m
/* Contributed by Nicola Pero - Fri Mar 9 19:39:15 CET 2001 */
#include
/* Test defining a nested function inside a method */
@interface Test
{
Class isa;
}
+ (int) test;
@end
@imp
www.eeworm.com/read/162614/5526090
f90 read_noadvance.f90
! { dg-do run }
! pr24719, non-advancing read should read more than one line
! test contributed by jerry delisle
implicit none
character(1) :: chr
character(2
www.eeworm.com/read/162614/5526111
f90 save_common.f90
! { dg-do compile }
! PR20847 - A common variable may not have the SAVE attribute.
! Contributed by Joost VandeVondele
INTEGER, SAVE :: X
COMMON /COM/ X ! { dg-error "conflicts with
www.eeworm.com/read/162614/5526147
f90 save_result.f90
! { dg-do compile }
! PR20856 - A function result may not have SAVE attribute.
! Contributed by Joost VandeVondele
FUNCTION X() RESULT(Y)
REAL, SAVE :: Y ! { dg-error "RESULT attribu
www.eeworm.com/read/162614/5526177
f90 pure_non_intrinsic_dummy_1.f90
! { dg-do compile }
! Tests the fix for 20871, in which pure non-intrinsic procedures were permitted to
! be dummy arguments.
!
! Contributed by Joost VandeVondele
!
MODULE TT
CONTA