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

12

  /external/clang/include/clang/Frontend/
ASTUnit.h 115 /// Track the top-level decls which appeared in an ASTUnit which was loaded
129 /// The files and decls are only local (and non-preamble) ones.
517 /// \brief Get the decls that are contained in a file in the Offset/Length
521 SmallVectorImpl<Decl *> &Decls);
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 281 SmallVector<Decl *, 16> Decls;
282 Decls.reserve(Record.size() - Idx);
284 Decls.push_back(ReadDecl(Record, Idx));
286 Decls.data(),
287 Decls.size())));
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 271 SmallVector<Decl *, 16> Decls;
272 Unit->findFileRegionDecls(File, Offset, Length, Decls);
274 // If we didn't find any file level decls for the file, try looking at the
276 while (Decls.empty() || Decls.front()->isTopLevelDeclInObjCContainer()) {
292 Unit->findFileRegionDecls(File, Offset, Length, Decls);
295 assert(!Decls.empty());
299 SmallVector<Decl *, 16>::iterator DIt = Decls.begin();
300 for (SmallVector<Decl *, 16>::iterator DE = Decls.end(); DIt != DE; ++DIt) {
337 // 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 792 SmallVector<VarDecl*, 10> Decls;
793 Decls.reserve(B.distance(E));
795 Decls.push_back(*I);
797 for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(),
798 E = Decls.rend();
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 903 if (LA.Decls.size() > 0) {
904 Decl *D = LA.Decls[0];
913 if (LA.Decls.size() == 1) {
930 FnScope.Exit(); // Pop scope, and remove Decls from IdResolver
936 // If there are multiple decls, then the decl cannot be within the
944 for (unsigned i = 0, ni = LA.Decls.size(); i < ni; ++i) {
945 Actions.ActOnFinishDelayedAttribute(getCurScope(), LA.Decls[i], Attrs);
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 217 /// True if we are within an Objective-C container while parsing C-like decls.
220 /// to parse the C-like decls, meaning Actions.getObjCDeclContext() will
803 SmallVector<Decl*, 2> Decls;
811 void addDecl(Decl *D) { Decls.push_back(D); }
    [all...]
  /external/clang/include/clang/AST/
DeclBase.h 269 /// Access - Used by C++ decls for the access specifier.
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h     [all...]
  /external/clang/include/clang/Sema/
Sema.h 332 /// \brief The set of file scoped decls seen so far that have not been used
475 /// \#pragma weak during processing of other Decls.
845 /// WeakTopLevelDeclDecls - access to \#pragma weak-generated Decls
    [all...]
  /external/clang/lib/AST/
ASTImporter.cpp     [all...]

Completed in 436 milliseconds

12