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

  /external/clang/lib/Parse/
ParseOpenMP.cpp 36 SmallVector<Expr *, 5> Identifiers;
44 if (!ParseOpenMPSimpleVarList(OMPD_threadprivate, Identifiers, true)) {
55 Identifiers);
83 SmallVector<Expr *, 5> Identifiers;
97 if (!ParseOpenMPSimpleVarList(OMPD_threadprivate, Identifiers, false)) {
107 Identifiers);
ParsePragma.cpp 502 SmallVector<Token, 5> Identifiers;
511 Identifiers.push_back(Tok);
546 assert(!Identifiers.empty() && "Valid '#pragma unused' must have arguments");
555 sizeof(Token) * 2 * Identifiers.size(), llvm::alignOf<Token>());
556 for (unsigned i=0; i != Identifiers.size(); i++) {
561 idTok = Identifiers[i];
563 PP.EnterTokenStream(Toks, 2*Identifiers.size(),
860 /// 'linker' is one of five identifiers: compiler, exestr, lib, linker, user.
  /external/chromium_org/third_party/jinja2/
compiler.py 103 class Identifiers(object):
104 """Tracks the status of identifiers in frames."""
145 self.identifiers = Identifiers()
175 self.identifiers.declared.update(
176 parent.identifiers.declared |
177 parent.identifiers.declared_parameter |
180 self.identifiers.outer_undeclared.update(
181 parent.identifiers.undeclared -
182 self.identifiers.declare
    [all...]
  /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
441 IdentifierTable &getIdentifierTable() { return Identifiers; }
553 /// identifiers that hadMacroDefinition()
    [all...]

Completed in 295 milliseconds