HomeSort by relevance Sort by last modified time
    Searched refs:ivar (Results 1 - 16 of 16) sorted by null

  /external/clang/test/Modules/Inputs/
def.h 7 int ivar; variable
  /external/lldb/test/lang/objc/objc-ivar-offsets/
Makefile 3 OBJC_SOURCES := objc-ivar-offsets.m main.m
  /external/clang/test/Index/
complete-at-exprstmt.m 3 @interface MyClass { int ivar; }
44 // CHECK-CC3: ObjCIvarDecl:{ResultType int}{TypedText ivar}
  /external/lldb/test/lang/objc/objc-ivar-stripped/
TestObjCIvarStripped.py 1 """Test printing ObjC objects that use unbacked properties - so that the static ivar offsets are incorrect."""
11 mydir = os.path.join("lang", "objc", "objc-ivar-stripped")
53 ivar = frame.EvaluateExpression ("(mc->_foo)")
54 self.assertTrue(ivar, "Got result for mc->_foo")
55 ivar_value = ivar.GetValueAsSigned (error)
  /external/chromium_org/third_party/tlslite/tlslite/
errors.py 75 @ivar description: Set to one of the constants in
79 @ivar level: Set to one of the constants in
83 @ivar message: Description of what went wrong.
103 @ivar description: Set to one of the constants in
107 @ivar level: Set to one of the constants in
  /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/clang/lib/CodeGen/
CGObjC.cpp 517 static void emitStructGetterCall(CodeGenFunction &CGF, ObjCIvarDecl *ivar,
523 ivar, 0).getAddress();
526 // sizeof (Type of Ivar), isAtomic, false);
535 CharUnits size = CGF.getContext().getTypeSizeInChars(ivar->getType());
624 // Evaluate the ivar's size and alignment.
625 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
626 QualType ivarType = ivar->getType();
648 // acceptable if the ivar is __strong, which won't be true if
681 if (ivar->isBitField()) {
696 // Compute whether the ivar has strong members
827 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
838 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
1097 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local
1292 const ObjCIvarDecl *ivar; member in struct:__anon22460::DestroyIvar
    [all...]
CodeGenModule.cpp     [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...]
xsltInternals.h 1350 xsltVarInfoPtr ivar; \/* topmost local variable\/param. *\/ member in struct:_xsltCompilerCtxt
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 644 ObjCIvarDecl *ivar) {
645 if (property->isInvalidDecl() || ivar->isInvalidDecl()) return;
647 QualType ivarType = ivar->getType();
663 // If the ivar is private, and it's implicitly __unsafe_unretained
669 ivar->getAccessControl() == ObjCIvarDecl::Private) {
675 ivar->setType(ivarType);
682 S.Diag(ivar->getLocation(), diag::err_arc_strong_property_ownership)
684 << ivar->getDeclName()
689 S.Diag(ivar->getLocation(), diag::error_weak_property)
691 << ivar->getDeclName()
    [all...]
  /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/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntimeV2.cpp     [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 702 /// \brief Indicates that the ivar cache does not yet include ivars
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 150 // ivar bitfield grouping containers
153 // This container maps an <class, group number for ivar> tuple to the type
381 // Computes ivar bitfield group no.
383 // Names field decl. for ivar bitfield group.
385 // Names struct type for ivar bitfield group.
387 // Names symbol for ivar bitfield group field offset.
389 // Given an ivar bitfield, it builds (or finds) its group record type.
473 // Rewriting ivar
474 void RewriteIvarOffsetComputation(ObjCIvarDecl *ivar,
    [all...]
RewriteObjC.cpp 350 // Rewriting ivar access
352 virtual void RewriteIvarOffsetComputation(ObjCIvarDecl *ivar,
547 // Rewriting ivar
548 void RewriteIvarOffsetComputation(ObjCIvarDecl *ivar,
    [all...]

Completed in 403 milliseconds