HomeSort by relevance Sort by last modified time
    Searched refs:Decls (Results 26 - 38 of 38) sorted by null

12

  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 276 SmallVector<Decl *, 16> Decls;
277 Decls.reserve(Record.size() - Idx);
279 Decls.push_back(ReadDecl(Record, Idx));
281 Decls.data(),
282 Decls.size())));
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 264 SmallVector<Decl *, 16> Decls;
265 Unit->findFileRegionDecls(File, Offset, Length, Decls);
267 // If we didn't find any file level decls for the file, try looking at the
269 while (Decls.empty() || Decls.front()->isTopLevelDeclInObjCContainer()) {
285 Unit->findFileRegionDecls(File, Offset, Length, Decls);
288 assert(!Decls.empty());
292 SmallVector<Decl *, 16>::iterator DIt = Decls.begin();
293 for (SmallVector<Decl *, 16>::iterator DE = Decls.end(); DIt != DE; ++DIt) {
330 // No Decls overlapped with the range. Move up the lexical context until ther
    [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp     [all...]
SemaDecl.cpp     [all...]
TreeTransform.h     [all...]
SemaDeclCXX.cpp     [all...]
  /external/clang/lib/Analysis/
CFG.cpp 764 SmallVector<VarDecl*, 10> Decls;
765 Decls.reserve(B.distance(E));
767 Decls.push_back(*I);
769 for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(),
770 E = Decls.rend();
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 795 if (LA.Decls.size() == 1) {
796 Decl *D = LA.Decls[0];
814 FnScope.Exit(); // Pop scope, and remove Decls from IdResolver
819 } else if (LA.Decls.size() > 0) {
820 // If there are multiple decls, then the decl cannot be within the
827 for (unsigned i = 0, ni = LA.Decls.size(); i < ni; ++i) {
828 Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs);
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 799 SmallVector<Decl*, 2> Decls;
807 void addDecl(Decl *D) { Decls.push_back(D); }
    [all...]
  /external/clang/include/clang/AST/
DeclBase.h 268 /// Access - Used by C++ decls for the access specifier.
923 /// can act as declaration contexts. These decls are (only the top classes
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h     [all...]
  /external/clang/include/clang/Sema/
Sema.h 322 /// \brief The set of file scoped decls seen so far that have not been used
490 /// #pragma weak during processing of other Decls.
878 /// WeakTopLevelDeclDecls - access to #pragma weak-generated Decls
    [all...]
  /external/clang/lib/AST/
ASTImporter.cpp     [all...]

Completed in 1630 milliseconds

12