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

  /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 109 /// Ident - This callback is invoked when a #ident or #sccs directive is read.
113 virtual void Ident(SourceLocation Loc, const std::string &str) {
253 virtual void Ident(SourceLocation Loc, const std::string &str) {
254 First->Ident(Loc, str);
255 Second->Ident(Loc, str);
  /external/llvm/include/llvm/Support/
GCOV.h 171 GCOVFunction() : Ident(0), LineNumber(0) {}
177 uint32_t Ident;
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 123 virtual void Ident(SourceLocation Loc, const std::string &str);
291 /// Ident - Handle #ident directives when read by the preprocessor.
293 void PrintPPOutputPPCallbacks::Ident(SourceLocation Loc, const std::string &S) {
296 OS.write("#ident ", strlen("#ident "));
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 263 uint32_t Ident = reinterpret_cast<intptr_t>((MDNode*)SP);
264 write(Ident);
587 Type::getInt32Ty(*Ctx), // uint32_t ident
650 intptr_t ident = reinterpret_cast<intptr_t>(I->second); local
652 ConstantInt::get(Type::getInt32Ty(*Ctx), ident),
  /external/clang/lib/Parse/
ParseDeclCXX.cpp 64 IdentifierInfo *Ident = 0;
72 Ident = Tok.getIdentifierInfo();
94 return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
104 Diag(Tok, Ident ? diag::err_expected_lbrace :
160 IdentLoc, Ident, T.getOpenLocation(),
182 std::vector<IdentifierInfo*>& Ident,
187 if (index == Ident.size()) {
207 Ident[index], Tracker.getOpenLocation(),
210 ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc,
247 IdentifierInfo *Ident = Tok.getIdentifierInfo()
    [all...]
ParseDecl.cpp     [all...]
  /external/llvm/lib/Object/
ELFObjectFile.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 697 IdentifierInfo *Ident = IdentList[i].first;
698 ObjCProtocolDecl *PDecl = LookupProtocol(Ident, IdentList[i].second);
701 PDecl = ObjCProtocolDecl::Create(Context, CurContext, Ident,
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]

Completed in 411 milliseconds