Searched defs:ivars (Results 1 - 5 of 5) sorted by relevance

/external/clang/include/clang/AST/
H A DDeclObjC.h694 /// IvarList - List of all ivars defined by this class; including class
702 /// \brief Indicates that the ivar cache does not yet include ivars
916 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); } function in class:clang::ObjCInterfaceDecl
1418 /// ivars.
1440 /// NextIvar - Next Ivar in the list of ivars declared in class; class's
1723 /// class extension may have private ivars.
1804 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); } function in class:clang::ObjCCategoryDecl
1991 /// \@implementation may have private ivars.
1996 /// IvarInitializers - The arguments used to initialize the ivars
2000 /// Do the ivars o
2118 ivar_range ivars() const { return ivar_range(ivar_begin(), ivar_end()); } function in class:clang::ObjCImplementationDecl
[all...]
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp1151 ObjCIvarDecl **ivars, unsigned numIvars,
1164 ivars[i]->setLexicalDeclContext(ImpDecl);
1165 IDecl->makeDeclVisibleInContext(ivars[i]);
1166 ImpDecl->addDecl(ivars[i]);
1175 assert(ivars && "missing @implementation ivars");
1180 ObjCIvarDecl* ImplIvar = ivars[i];
1187 // Check class extensions (unnamed categories) for duplicate ivars.
1210 ObjCIvarDecl* ImplIvar = ivars[j++];
1239 Diag(ivars[
1150 CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, ObjCIvarDecl **ivars, unsigned numIvars, SourceLocation RBrace) argument
[all...]
H A DSemaDeclCXX.cpp12696 /// Objective-C implementation whose ivars need be initialized.
12701 SmallVector<ObjCIvarDecl*, 8> ivars; local
12702 CollectIvarsToConstructOrDestruct(OID, ivars);
12703 if (ivars.empty())
12706 for (unsigned i = 0; i < ivars.size(); i++) {
12707 FieldDecl *Field = ivars[i];
/external/chromium_org/third_party/libxslt/libxslt/
H A DxsltInternals.h1349 xsltVarInfoPtr ivars; /* Storage of local in-scope variables/params. */ member in struct:_xsltCompilerCtxt
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp963 assert(IMD && OID && "Synthesized ivars must be attached to @implementation");
3923 // Generate the struct type for this group of bitfield ivars.
3984 /// an objective-c class with ivars.
4002 // If no ivars and no root or if its root, directly or indirectly,
4003 // have no ivars (thus not synthesized) then no need to synthesize this class.
4060 /// RewriteIvarOffsetSymbols - Rewrite ivar offset symbols of those ivars which
5995 // private ivars.
6282 /// const struct _ivar_list_t *ivars;
6367 Result += "\tconst struct _ivar_list_t *ivars;\n";
6551 ArrayRef<ObjCIvarDecl *>ivars,
6545 Write__class_ro_t_initializer(ASTContext *Context, std::string &Result, unsigned int flags, const std::string &InstanceStart, const std::string &InstanceSize, ArrayRef<ObjCMethodDecl *>baseMethods, ArrayRef<ObjCProtocolDecl *>baseProtocols, ArrayRef<ObjCIvarDecl *>ivars, ArrayRef<ObjCPropertyDecl *>Properties, StringRef VarName, StringRef ClassName) argument
[all...]

Completed in 106 milliseconds