Home
last modified time | relevance | path

Searched refs:PROTO (Results 1 – 22 of 22) sorted by relevance

/external/clang/test/SemaObjC/
Dprotocols.m32 @protocol PROTO<p1> // expected-note {{previous definition is here}} protocol
35 @protocol PROTO<p1> // expected-warning {{duplicate protocol definition of 'PROTO'}} protocol
44 @protocol PROTO4 <p1, p2, PROTO, PROTO3, p3>
Dclass-def-test-1.m24 @protocol PROTO; protocol
26 @interface INTF3 : PROTO @end // expected-error {{cannot find interface declaration for 'PROTO', su…
Dundef-protocol-methods-1.m19 @protocol PROTO<P1, P3> protocol
25 @interface INTF <PROTO>
/external/clang/test/CodeGenObjC/
Ddefault-property-synthesis.m14 @protocol PROTO protocol
19 @protocol PROTO1 <PROTO>
23 @interface Super <PROTO>
/external/clang/test/Rewriter/
Drewrite-modern-protocol.mm12 @protocol PROTO <P1, P2> protocol
27 @interface INTF <PROTO, ROOT>
Drewrite-modern-class.mm4 @protocol PROTO @end protocol
15 @interface MAXIMAL : root_with_ivars<PROTO>
/external/python/cpython2/Lib/ctypes/test/
Dtest_callbacks.py19 PROTO = self.functype.im_func(typ, typ)
20 result = PROTO(self.callback)(arg)
27 PROTO = self.functype.im_func(typ, c_byte, typ)
28 result = PROTO(self.callback)(-3, arg)
/external/libpcap/
Dgrammar.h58 PROTO = 268, enumerator
180 #define PROTO 268 macro
Dgrammar.y303 %token NET NETMASK PORT PORTRANGE LESS GREATER PROTO PROTOCHAIN CBYTE
442 | pqual PROTO { QSET($$.q, $1, Q_DEFAULT, Q_PROTO); }
Dscanner.l299 proto return PROTO;
Dgrammar.c361 PROTO = 268, enumerator
483 #define PROTO 268 macro
Dscanner.c3371 return PROTO;
/external/openssh/regress/
Dtest-exec.sh400 PROTO="2,1"
402 PROTO="2"
/external/clang/test/Index/
Dannotate-tokens.m601 …tribute__((ibaction)' -target x86_64-apple-macosx10.7.0 | FileCheck -check-prefix=CHECK-ID-PROTO %s
602 // CHECK-ID-PROTO: Identifier: "id" [155:9 - 155:11] TypeRef=id:0:0
603 // CHECK-ID-PROTO: Punctuation: "<" [155:11 - 155:12] TypedefDecl=proto_ptr:155:20 (Definition)
604 // CHECK-ID-PROTO: Identifier: "Proto" [155:12 - 155:17] ObjCProtocolRef=Proto
605 // CHECK-ID-PROTO: Punctuation: ">" [155:17 - 155:18] TypedefDecl=proto_ptr:155:20 (Definition)
/external/python/cpython2/Lib/
Dpickle.py149 PROTO = '\x80' # identify pickle protocol variable
223 self.write(PROTO + chr(self.proto))
893 dispatch[PROTO] = load_proto
/external/clang/test/Sema/
Dwarn-documentation.m142 @protocol PROTO
/external/mdnsresponder/mDNSWindows/mdnsNSP/
DmdnsNSP.c1690 #define DebugSocketProtocolToString( PROTO ) ( ( PROTO ) == IPPROTO_UDP ) ? "IPPROTO_UDP" : \ argument
1691 ( ( PROTO ) == IPPROTO_TCP ) ? "IPPROTO_TCP" : ""
/external/eigen/lapack/
DCMakeLists.txt425 # ======== SINGLE-DOUBLE PROTO LIN TESTS ==============
/external/python/cpython2/Lib/test/
Dpickletester.py1118 expected = pickle.PROTO + chr(proto) + expected
1123 badpickle = pickle.PROTO + chr(oob) + build_none
/external/libnl/lib/netfilter/
Dct_obj.c315 diff |= CT_DIFF_VAL(PROTO, ct_proto); in ct_compare()
/external/python/cpython2/Modules/
DcPickle.c75 #define PROTO '\x80' /* identify pickle protocol */ macro
2838 bytes[0] = PROTO; in dump()
5001 case PROTO: in load()
5419 case PROTO: in noload()
/external/clang/lib/Sema/
DSemaExprObjC.cpp1745 for (const auto *PROTO : OPT->quals()) { in LookupMethodInQualifiedType() local
1746 if ((MD = PROTO->lookupMethod(Sel, Instance))) { in LookupMethodInQualifiedType()