HomeSort by relevance Sort by last modified time
    Searched defs:Identifiers (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/Index/
ProgramImpl.h 34 IdentifierTable Identifiers;
41 ProgramImpl() : Identifiers(LangOptions()) { }
44 IdentifierTable &getIdents() { return Identifiers; }
  /external/clang/lib/Parse/
ParsePragma.cpp 300 llvm::SmallVector<Token, 5> Identifiers;
309 Identifiers.push_back(Tok);
344 assert(!Identifiers.empty() && "Valid '#pragma unused' must have arguments");
351 Token *Toks = new Token[2*Identifiers.size()];
352 for (unsigned i=0; i != Identifiers.size(); i++) {
357 idTok = Identifiers[i];
359 PP.EnterTokenStream(Toks, 2*Identifiers.size(), /*DisableMacroExpansion=*/true, /*OwnsTokens=*/true);
  /external/clang/include/clang/Lex/
Preprocessor.h 78 /// Identifiers for builtin macros and other builtins.
118 /// Identifiers - This is mapping/lookup information for all identifiers in
120 mutable IdentifierTable Identifiers;
127 /// FIXME: Make sure the lifetime of Identifiers/Selectors *isn't* tied to
311 IdentifierTable &getIdentifierTable() { return Identifiers; }
401 return &Identifiers.get(Name);
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp 423 // file. Extra #defines are okay, so long as the identifiers being
657 // For uninteresting identifiers, just build the IdentifierInfo
732 /// all of the identifiers in the program.
    [all...]

Completed in 26 milliseconds