/external/chromium_org/third_party/tlslite/tlslite/ |
errors.py | 61 @ivar description: Set to one of the constants in 65 @ivar level: Set to one of the constants in 69 @ivar message: Description of what went wrong. 89 @ivar description: Set to one of the constants in 93 @ivar level: Set to one of the constants in
|
Session.py | 26 @ivar srpUsername: The client's SRP username (or None). 29 @ivar sharedKeyUsername: The client's shared-key username (or 34 @ivar clientCertChain: The client's certificate chain (or None). 38 @ivar serverCertChain: The server's certificate chain (or None).
|
/external/clang/test/Index/ |
complete-member-access.m | 14 int IVar; 22 ptr->IVar = 0; 54 // CHECK-CC2: ObjCIvarDecl:{ResultType int}{TypedText IVar} (35)
|
index-decls.m | 60 // CHECK: [indexDeclaration]: kind: objc-ivar | name: _prop | {{.*}} | loc: 11:20 64 // CHECK: [indexDeclaration]: kind: objc-ivar | name: _auto_prop | {{.*}} | loc: 20:33 65 // CHECK: [indexEntityReference]: kind: objc-ivar | name: _auto_prop | {{.*}} | loc: 25:3
|
comment-unqualified-objc-pointer.m | 27 //! This is private ivar
|
/external/clang/lib/Sema/ |
SemaObjCProperty.cpp | 626 ObjCIvarDecl *ivar) { 627 if (property->isInvalidDecl() || ivar->isInvalidDecl()) return; 629 QualType ivarType = ivar->getType(); 645 // If the ivar is private, and it's implicitly __unsafe_unretained 651 ivar->getAccessControl() == ObjCIvarDecl::Private) { 657 ivar->setType(ivarType); 664 S.Diag(ivar->getLocation(), diag::err_arc_strong_property_ownership) 666 << ivar->getDeclName() 671 S.Diag(ivar->getLocation(), diag::error_weak_property) 673 << ivar->getDeclName() [all...] |
/external/clang/test/CodeGenObjC/ |
mrr-captured-block-var-inlined-layout.m | 1 // RUN: %clang_cc1 -fblocks -fobjc-runtime-has-weak -triple x86_64-apple-darwin -O0 -print-ivar-layout -emit-llvm -o /dev/null %s > %t-64.layout 3 // RUN: %clang_cc1 -fblocks -fobjc-runtime-has-weak -triple i386-apple-darwin -O0 -print-ivar-layout -emit-llvm -o /dev/null %s > %t-32.layout
|
objc2-write-barrier-3.m | 44 // Storing into an ivar of an array of strong pointer types.
|
arc-captured-block-var-inlined-layout.m | 1 // RUN: %clang_cc1 -fblocks -fobjc-arc -fobjc-runtime-has-weak -triple x86_64-apple-darwin -O0 -print-ivar-layout -emit-llvm -o /dev/null %s > %t-64.layout 3 // RUN: %clang_cc1 -fblocks -fobjc-arc -fobjc-runtime-has-weak -triple i386-apple-darwin -O0 -print-ivar-layout -emit-llvm -o /dev/null %s > %t-32.layout
|
debug-info-blocks.m | 49 int ivar; 67 ivar = 42 + (int)[d count];
|
ivar-layout-64.m | 7 llvm-gcc -m64 -fobjc-gc -emit-llvm -S -o - ivar-layout-64.m | \ 103 id ivar;
|
/external/clang/test/SemaObjC/ |
weak-attr-ivar.m | 78 id ivar __attribute__((objc_gc(weak))); 83 id *(__attribute__((objc_gc(strong))) x) = &t->ivar; // expected-warning {{initializing '__strong id *' with an expression of type '__weak id *' discards qualifiers}}
|
protocol-attribute.m | 25 id <MyProto1> ivar; // expected-warning {{'MyProto1' is deprecated}}
|
synth-provisional-ivars.m | 30 @synthesize PROP3=IVAR;
|
arc-repeated-weak.mm | 5 Test *ivar; 311 use(self->ivar.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times}} 312 use(self->ivar.weakProp); // expected-note{{also accessed here}} 314 use(self->ivar->weakIvar); // expected-warning{{weak instance variable 'weakIvar' is accessed multiple times}} 315 use(self->ivar->weakIvar); // expected-note{{also accessed here}} 322 use(self->ivar.weakProp); // no-warning 323 use(other->ivar.weakProp); // no-warning 407 use(a->ivar.weakProp); // expected-warning{{weak property 'weakProp' may be accessed multiple times}} 408 use(b->ivar.weakProp); // expected-note{{also accessed here}}
|
/external/clang/test/ARCMT/ |
remove-dealloc-zerouts.m | 39 self.a.x = 0; // every dealloc must zero out its own ivar. This patter is not recognized.
|
remove-dealloc-zerouts.m.result | 34 self.a.x = 0; // every dealloc must zero out its own ivar. This patter is not recognized.
|
/external/clang/test/ASTMerge/Inputs/ |
interface1.m | 13 // Ivar mismatch
|
interface2.m | 13 // Ivar mismatch
|
/external/clang/test/Coverage/ |
objc-language-features.inc | 33 // Property type can differ from ivar type.
|
/external/clang/test/FixIt/ |
auto-isa-fixit.m | 31 Class isa; // note, not first ivar;
|
/external/clang/test/Analysis/ |
objc_invalidation.m | 70 SomeInvalidationImplementingObject *Ivar1; // regular ivar 71 SomeInvalidationImplementingObject *Ivar2; // regular ivar, sending invalidate message 77 SomeInvalidationImplementingObject *_propIvar; // property with custom named ivar, set to 0 via setter 78 Invalidation1Class *MultipleProtocols; // regular ivar belonging to a different class 79 Invalidation2Class *MultInheritance; // regular ivar belonging to a different class 198 // the parent and directly through a protocol. If a property backing ivar is 375 } // TODO: It would be nice to check that the full invalidation method actually invalidates the ivar.
|
unused-ivars.m | 16 // This test case tests the basic functionality of the unused ivar test. 24 // This test case tests whether the unused ivar check handles blocks that 30 @property (readwrite,retain) id ivar; 34 - (id)ivar { 48 // <rdar://problem/6260004> Detect that ivar is in use, if used in category
|
/external/clang/lib/CodeGen/ |
CGObjC.cpp | 514 static void emitStructGetterCall(CodeGenFunction &CGF, ObjCIvarDecl *ivar, 520 ivar, 0).getAddress(); 523 // sizeof (Type of Ivar), isAtomic, false); 532 CharUnits size = CGF.getContext().getTypeSizeInChars(ivar->getType()); 621 // Evaluate the ivar's size and alignment. 622 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local 623 QualType ivarType = ivar->getType(); 645 // acceptable if the ivar is __strong, which won't be true if 678 if (ivar->isBitField()) { 693 // Compute whether the ivar has strong members 824 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local 835 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local 1091 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local 1286 const ObjCIvarDecl *ivar; member in struct:__anon15806::DestroyIvar [all...] |
/external/chromium_org/third_party/tlslite/patches/ |
parse_chain.patch | 42 + @ivar data: A string containing PEM-encoded (Base64) certificates, 48 + @ivar index: The current offset within data to begin iterating from.
|