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

  /external/clang/lib/Parse/
ParsePragma.cpp 471 SmallVector<Token, 5> Identifiers;
480 Identifiers.push_back(Tok);
515 assert(!Identifiers.empty() && "Valid '#pragma unused' must have arguments");
524 sizeof(Token) * 2 * Identifiers.size(), llvm::alignOf<Token>());
525 for (unsigned i=0; i != Identifiers.size(); i++) {
530 idTok = Identifiers[i];
532 PP.EnterTokenStream(Toks, 2*Identifiers.size(),
  /external/clang/include/clang/Lex/
Preprocessor.h 61 /// predefined values. Only handles simple tokens and identifiers.
68 assert(Kind != tok::raw_identifier && "Raw identifiers are not supported.");
70 "Identifiers should be created by TokenValue(IdentifierInfo *)");
109 /// Identifiers for builtin macros and other builtins.
172 /// Identifiers - This is mapping/lookup information for all identifiers in
174 mutable IdentifierTable Identifiers;
181 /// FIXME: Make sure the lifetime of Identifiers/Selectors *isn't* tied to
438 IdentifierTable &getIdentifierTable() { return Identifiers; }
559 /// identifiers that hadMacroDefinition()
    [all...]

Completed in 102 milliseconds