Searched refs:Ident (Results 1 - 25 of 37) sorted by relevance

12

/external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/
H A Dtemplateid.cpp8 template <typename> class Ident {}; // expected-note {{previous use is here}} class
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/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dparser.ml26 | [< 'Token.Ident id; stream >] ->
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
99 | [< 'Token.Ident id;
H A Dlexer.ml47 | id -> [< 'Token.Ident id; stream >]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dparser.ml26 | [< 'Token.Ident id; stream >] ->
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
99 | [< 'Token.Ident id;
H A Dlexer.ml47 | id -> [< 'Token.Ident id; stream >]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dparser.ml26 | [< 'Token.Ident id; stream >] ->
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
99 | [< 'Token.Ident id;
H A Dlexer.ml47 | id -> [< 'Token.Ident id; stream >]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dlexer.ml52 | id -> [< 'Token.Ident id; stream >]
H A Dparser.ml28 | [< 'Token.Ident id; stream >] ->
58 'Token.Ident id ?? "expected identifier after for";
130 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
135 | [< 'Token.Ident id;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dlexer.ml54 | id -> [< 'Token.Ident id; stream >]
H A Dparser.ml28 | [< 'Token.Ident id; stream >] ->
58 'Token.Ident id ?? "expected identifier after for";
143 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
155 | [< 'Token.Ident id;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml12 | Ident of string | Number of float Constructor in type:token
H A Dlexer.ml55 | id -> [< 'Token.Ident id; stream >]
H A Dparser.ml29 | [< 'Token.Ident id; stream >] ->
59 'Token.Ident id ?? "expected identifier after for";
89 'Token.Ident id ?? "expected identifier after var";
153 'Token.Ident id ?? "expected identifier list after var";
169 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
181 | [< 'Token.Ident id;
/external/clang/include/clang/Lex/
H A DPPCallbacks.h109 /// Ident - This callback is invoked when a #ident or #sccs directive is read.
113 virtual void Ident(SourceLocation Loc, const std::string &str) { function in class:clang::PPCallbacks
253 virtual void Ident(SourceLocation Loc, const std::string &str) { function in class:clang::PPChainedCallbacks
254 First->Ident(Loc, str);
255 Second->Ident(Loc, str);
/external/llvm/include/llvm/Support/
H A DGCOV.h171 GCOVFunction() : Ident(0), LineNumber(0) {}
177 uint32_t Ident; member in class:llvm::GCOVFunction
/external/llvm/lib/Object/
H A DELFObjectFile.cpp1449 std::pair<unsigned char, unsigned char> Ident = getElfArchType(Object); local
1451 if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB)
1453 else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB)
1455 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB)
1457 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB)
/external/clang/lib/Parse/
H A DParseDeclCXX.cpp64 IdentifierInfo *Ident = 0; local
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 local
181 ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc, std::vector<IdentifierInfo*>& Ident, std::vector<SourceLocation>& NamespaceLoc, unsigned int index, SourceLocation& InlineLoc, ParsedAttributes& attrs, BalancedDelimiterTracker &Tracker) argument
[all...]
/external/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp123 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) { function in class:PrintPPOutputPPCallbacks
/external/llvm/lib/VMCore/
H A DGCOV.cpp95 Ident = Buff.readInt();

Completed in 814 milliseconds

12