/external/clang/lib/AST/ |
DeclObjC.cpp | 53 /// getIvarDecl - This method looks up an ivar in this ContextDecl. 58 for (lookup_const_iterator Ivar = R.begin(), IvarEnd = R.end(); 59 Ivar != IvarEnd; ++Ivar) { 60 if (ObjCIvarDecl *ivar = dyn_cast<ObjCIvarDecl>(*Ivar)) 61 return ivar; [all...] |
/external/clang/lib/CodeGen/ |
CGValue.h | 139 // objective-c's ivar 140 bool Ivar:1; 142 // objective-c's ivar is an array 180 this->Ivar = this->ObjIsArray = this->NonGC = this->GlobalObjCRef = false; 210 bool isObjCIvar() const { return Ivar; } 211 void setObjCIvar(bool Value) { Ivar = Value; }
|
CGObjCMac.cpp | 840 // gc ivar layout bitmap calculation helper caches [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRReaderStream.m | 141 stream = nil; // stream is ivar, so reinit it
|
/external/chromium_org/third_party/tlslite/tlslite/ |
x509certchain.py | 15 @ivar x509List: A list of L{tlslite.x509.X509} instances,
|
/external/clang/include/clang/Index/ |
USRGeneration.h | 40 void generateUSRForObjCIvar(StringRef Ivar, raw_ostream &OS);
|
/external/clang/lib/ARCMigrate/ |
TransProperties.cpp | 16 // - If a property is synthesized, adds the ownership specifier in the ivar 305 ObjCIvarDecl *Ivar; 307 PlusOneAssign(ObjCIvarDecl *D) : Ivar(D) {} 312 if (RE->getDecl() != Ivar)
|
/external/clang/test/CodeGenObjC/ |
objc2-write-barrier-2.m | 76 _documentNames[filteredPos] = 0; // storing into an element of array ivar. objc_assign_strongCast is needed.
|
metadata-symbols-64.m | 62 @property (assign) int ivar; 69 @synthesize ivar = _ivar;
|
arc-precise-lifetime.m | 123 id ivar; 128 x->ivar = 0; 136 // CHECK-NEXT: [[OFFSET:%.*]] = load i64* @"OBJC_IVAR_$_Test2.ivar"
|
/external/clang/test/Modules/ |
decldef.mm | 35 a->ivar = 17;
|
/external/clang/test/PCH/ |
pending-ids.m | 30 BOOL ivar;
|
/external/clang/test/SemaObjC/ |
default-synthesize.m | 124 @synthesize PROP=IVAR;
|
default-synthesize-2.m | 110 // With default synthesis, '_object' is be the synthesized ivar not the global
|
/external/lldb/test/lang/objc/objc-builtin-types/ |
TestObjCBuiltinTypes.py | 36 #<rdar://problem/10591460> [regression] Can't print ivar value: error: reference to 'id' is ambiguous
|
/external/clang/include/clang/AST/ |
DeclObjC.h | 702 /// \brief Indicates that the ivar cache does not yet include ivars [all...] |
/external/lldb/test/lang/objc/objc-property/ |
TestObjCProperty.py | 113 # Now we call the getter of a property that is backed by an ivar, 114 # make sure it works and that we actually update the backing ivar.
|
/external/llvm/lib/TableGen/ |
TGParser.h | 51 ForeachLoop(VarInit *IVar, ListInit *LValue) 52 : IterVar(IVar), ListValue(LValue) {}
|
/external/svox/pico/lib/ |
picocep.c | 967 picoos_int32 mean, ivar; local 1139 picoos_int32 mean = 0, ivar = 0; local 1311 picoos_int32 mean, ivar; local [all...] |
/external/chromium_org/third_party/libxslt/libxslt/ |
xslt.c | 512 xsltVarInfoPtr ivar = cctxt->ivars, ivartmp; local 514 while (ivar) { 515 ivartmp = ivar; 516 ivar = ivar->next; 2249 xsltVarInfoPtr ivar; local 3936 xsltVarInfoPtr ivar = cctxt->ivar; local 3973 xsltVarInfoPtr ivar = cctxt->ivar; local [all...] |
/external/chromium_org/base/mac/ |
objc_property_releaser.mm | 114 Ivar instance_variable =
|
/external/clang/test/CodeGenObjCXX/ |
block-var-layout.mm | 1 // RUN: %clang_cc1 -x objective-c++ -fblocks -fobjc-gc -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -print-ivar-layout -emit-llvm -o /dev/null %s > %t-64.layout
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/c-family/ |
c-objc.h | 23 /* ObjC ivar visibility types. */
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
DirectIvarAssignment.cpp | 128 // Find the corresponding IVar. 135 // Store the IVar to property mapping.
|
/external/clang/test/Analysis/ |
properties.m | 241 // be released, even though we are manipulating the ivar in between the two 341 // For now, don't assume a property is implemented using an ivar unless we can
|