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

12

  /external/clang/lib/Sema/
SemaStmt.cpp 335 // If we're in C89 mode, check that we don't have any decls after stmts. If
    [all...]
SemaDeclObjC.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaDecl.cpp 139 /// \brief Tries to perform unqualified lookup of the type decls in bases for
141 /// \return \a NotFound if no any decls is found, \a FoundNotType if found not a
142 /// type decl, \a FoundType if only type decls are found.
149 // Look for type decls in base classes.
157 // Look for type decls in dependent base classes that have known primary
203 // Look for type decls in dependent base classes that have known primary
    [all...]
SemaCodeComplete.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 849 for (auto *I : NSD->decls())
860 // We're not interested in "interesting" decls.
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
ASTReaderStmt.cpp 289 SmallVector<Decl *, 16> Decls;
290 Decls.reserve(Record.size() - Idx);
292 Decls.push_back(ReadDecl(Record, Idx));
294 Decls.data(),
295 Decls.size())));
    [all...]
ASTWriter.cpp     [all...]
  /external/clang/lib/AST/
Decl.cpp 638 // FIXME: In C++11 onwards, anonymous namespaces should give decls
752 // look at previous decls in here.
    [all...]
StmtPrinter.cpp 129 SmallVector<Decl*, 2> Decls(S->decls());
130 Decl::printGroup(Decls.data(), Decls.size(), OS, Policy, IndentLevel);
    [all...]
DeclCXX.cpp 39 assert(Impl.Decls.isLazy() && "getFromExternalSource for non-lazy set");
45 Impl.Decls.setLazy(false);
    [all...]
ASTImporter.cpp     [all...]
  /external/clang/include/clang/Frontend/
ASTUnit.h 138 /// Track the top-level decls which appeared in an ASTUnit which was loaded
152 /// The files and decls are only local (and non-preamble) ones.
586 /// \brief Get the decls that are contained in a file in the Offset/Length
590 SmallVectorImpl<Decl *> &Decls);
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 306 SmallVector<Decl *, 16> Decls;
307 Unit->findFileRegionDecls(File, Offset, Length, Decls);
309 // If we didn't find any file level decls for the file, try looking at the
311 while (Decls.empty() || Decls.front()->isTopLevelDeclInObjCContainer()) {
327 Unit->findFileRegionDecls(File, Offset, Length, Decls);
330 assert(!Decls.empty());
334 SmallVectorImpl<Decl *>::iterator DIt = Decls.begin();
335 for (SmallVectorImpl<Decl *>::iterator DE = Decls.end(); DIt != DE; ++DIt) {
372 // No Decls overlapped with the range. Move up the lexical context until ther
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 89 /// or DeclRefExprs (that have decls of type EnumConstantDecl)
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 231 /// True if we are within an Objective-C container while parsing C-like decls.
234 /// to parse the C-like decls, meaning Actions.getObjCDeclContext() will
    [all...]
  /external/clang/include/clang/AST/
DeclBase.h 280 /// Access - Used by C++ decls for the access specifier.
1434 decl_range decls() const { return decl_range(decls_begin(), decls_end()); } function in class:clang::DeclContext
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h 279 // will not link it. Since it has no previous decls, it will remain
491 /// \brief The set of file scoped decls seen so far that have not been used
669 /// \#pragma weak during processing of other Decls.
    [all...]

Completed in 551 milliseconds

12