/external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/ |
templateid.cpp | 8 template <typename> class Ident {}; // expected-note {{previous use is here}} 11 template <typename> void Ident(); 13 class Ident<int> AIdent; // expected-error {{refers to a function template}} 14 class ::Ident<int> AnotherIdent; 17 class Ident<int> GlobalIdent; 18 union Ident<int> GlobalIdent2; // expected-error {{ tag type that does not match }}
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
token.ml | 12 | Ident of string | Number of float
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
token.ml | 12 | Ident of string | Number of float
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
token.ml | 12 | Ident of string | Number of float
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
token.ml | 12 | Ident of string | Number of float
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
token.ml | 12 | Ident of string | Number of float
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
token.ml | 12 | Ident of string | Number of float
|
/external/clang/include/clang/Lex/ |
PPCallbacks.h | 106 /// Ident - This callback is invoked when a #ident or #sccs directive is read. 110 virtual void Ident(SourceLocation Loc, const std::string &str) { 238 virtual void Ident(SourceLocation Loc, const std::string &str) { 239 First->Ident(Loc, str); 240 Second->Ident(Loc, str);
|
/external/clang/lib/Frontend/ |
PrintPreprocessedOutput.cpp | 122 virtual void Ident(SourceLocation Loc, const std::string &str); 289 /// Ident - Handle #ident directives when read by the preprocessor. 291 void PrintPPOutputPPCallbacks::Ident(SourceLocation Loc, const std::string &S) { 294 OS.write("#ident ", strlen("#ident "));
|
/external/llvm/lib/Object/ |
ELFObjectFile.cpp | 726 std::pair<unsigned char, unsigned char> Ident = getElfArchType(Object); 728 if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB) 730 else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB) 732 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB) 734 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB)
|
/external/llvm/lib/Transforms/Instrumentation/ |
GCOVProfiling.cpp | 272 uint32_t Ident = reinterpret_cast<intptr_t>((MDNode*)SP); 273 write(Ident); 592 Type::getInt32Ty(*Ctx), // uint32_t ident 655 intptr_t ident = reinterpret_cast<intptr_t>(I->second); local 657 ConstantInt::get(Type::getInt32Ty(*Ctx), ident),
|
/external/clang/lib/Parse/ |
ParseDeclCXX.cpp | 62 IdentifierInfo *Ident = 0; 70 Ident = Tok.getIdentifierInfo(); 93 return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd); 102 Diag(Tok, Ident ? diag::err_expected_lbrace : 159 IdentLoc, Ident, LBrace, attrs.getList()); 181 std::vector<IdentifierInfo*>& Ident, 187 if (index == Ident.size()) { 204 Ident[index], LBrace, attrs.getList()); 206 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc, 242 IdentifierInfo *Ident = Tok.getIdentifierInfo() [all...] |
ParseDecl.cpp | [all...] |
/external/clang/lib/Sema/ |
SemaDeclObjC.cpp | 732 IdentifierInfo *Ident = IdentList[i].first; 733 ObjCProtocolDecl *PDecl = LookupProtocol(Ident, IdentList[i].second); 737 IdentList[i].second, Ident); [all...] |
/external/clang/include/clang/Sema/ |
DeclSpec.h | [all...] |