Searched defs:Identifiers (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/Parse/
H A DParseOpenMP.cpp36 SmallVector<Expr *, 5> Identifiers; local
44 if (!ParseOpenMPSimpleVarList(OMPD_threadprivate, Identifiers, true)) {
55 Identifiers);
83 SmallVector<Expr *, 5> Identifiers; local
97 if (!ParseOpenMPSimpleVarList(OMPD_threadprivate, Identifiers, false)) {
107 Identifiers);
H A DParsePragma.cpp502 SmallVector<Token, 5> Identifiers; local
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(),
/external/chromium_org/third_party/jinja2/
H A Dcompiler.py103 class Identifiers(object): class in inherits:object
145 self.identifiers = Identifiers()
/external/clang/include/clang/Lex/
H A DPreprocessor.h70 "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; member in class:clang::Preprocessor
181 /// FIXME: Make sure the lifetime of Identifiers/Selectors *isn't* tied to
441 IdentifierTable &getIdentifierTable() { return Identifiers; }
595 return &Identifiers.get(Name);
1149 /// Identifiers used for SEH handling in Borland. These are only
/external/clang/lib/Sema/
H A DSemaLookup.cpp3429 SmallVectorImpl<const IdentifierInfo*> &Identifiers) {
3431 getNestedNameSpecifierIdentifiers(Prefix, Identifiers);
3433 Identifiers.clear();
3462 Identifiers.push_back(II);
3427 getNestedNameSpecifierIdentifiers( NestedNameSpecifier *NNS, SmallVectorImpl<const IdentifierInfo*> &Identifiers) argument

Completed in 186 milliseconds