代码搜索:contributed
找到约 10,000 项符合「contributed」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5523006
m formal_protocol-6.m
/* Contributed by Nicola Pero - Fri Mar 9 21:35:47 CET 2001 */
#include
#include
/* Test defining a protocol, and accessing it using @protocol */
@protocol Evaluatin
www.eeworm.com/read/162614/5523007
m nested-1.m
/* Contributed by Nicola Pero Wed Feb 21 12:08:16 GMT 2001 */
int main (void)
{
void nested (void)
{
return;
}
return 0;
}
www.eeworm.com/read/162614/5523036
m nested-2.m
/* Contributed by Nicola Pero Mon Mar 5 19:57:11 CET 2001 */
int main (void)
{
inline int nested (void)
{
return 1;
}
if (nested () != 1)
{
exit (1);
}
return 0;
www.eeworm.com/read/162614/5523042
m informal_protocol.m
/* Contributed by Nicola Pero - Fri Mar 9 21:35:47 CET 2001 */
#include
#include
@interface Object (StopProtocol)
- (void) stop;
@end
int main (void)
{
return 0;
}
www.eeworm.com/read/162614/5523050
m bycopy-1.m
/*
* Contributed by Nicola Pero
* Fri Feb 2 11:48:01 GMT 2001
*/
#include
#include
@protocol MyProtocol
- (bycopy id) bycopyMethod;
@end
www.eeworm.com/read/162614/5523053
m private.m
/* Contributed by Nicola Pero - Fri Mar 9 19:39:15 CET 2001 */
#include
#include
/* Test the @private, @protected, @public keyworks for ivars. We only
check syntax.
www.eeworm.com/read/162614/5523063
m protocol-isequal-3.m
/* Contributed by Nicola Pero - Fri Jun 4 03:16:17 BST 2004 */
/* Test that a protocol is not equal to nil. */
#include
@protocol Foo
- (void)foo;
@end
int main (void)
{
if ([@
www.eeworm.com/read/162614/5523084
m no_clash.m
/* Contributed by Nicola Pero - Fri Mar 9 19:39:15 CET 2001 */
#include
#include
/* Test that using the same name for different things makes no
problem */
@interfa
www.eeworm.com/read/162614/5523101
m protocol-isequal-1.m
/* Contributed by Nicola Pero - Fri Jun 4 03:16:17 BST 2004 */
/* Test that a protocol is equal to itself. */
#include
@protocol Foo
- (void)foo;
@end
int main (void)
{
Protoco
www.eeworm.com/read/162614/5526031
f90 equiv_constraint_3.f90
! { dg-do compile }
! PR20900 - USE associated variables cannot be equivalenced.
! Contributed by Joost VandeVondele
MODULE TEST
INTEGER :: I
END MODULE
! note 11.7
USE TEST, ONLY :