HomeSort by relevance Sort by last modified time
    Searched refs:Ident (Results 1 - 25 of 37) sorted by null

1 2

  /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
parser.ml 26 | [< 'Token.Ident id; stream >] ->
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
99 | [< 'Token.Ident id;
lexer.ml 47 | id -> [< 'Token.Ident id; stream >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 12 | Ident of string | Number of float
parser.ml 26 | [< 'Token.Ident id; stream >] ->
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
99 | [< 'Token.Ident id;
lexer.ml 47 | id -> [< 'Token.Ident id; stream >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 12 | Ident of string | Number of float
parser.ml 26 | [< 'Token.Ident id; stream >] ->
94 | [< 'Token.Ident id; e=parse_args (id::accumulator) >] -> e
99 | [< 'Token.Ident id;
lexer.ml 47 | id -> [< 'Token.Ident id; stream >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
token.ml 12 | Ident of string | Number of float
lexer.ml 52 | id -> [< 'Token.Ident id; stream >]
parser.ml 28 | [< '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/
token.ml 12 | Ident of string | Number of float
lexer.ml 54 | id -> [< 'Token.Ident id; stream >]
parser.ml 28 | [< '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/
token.ml 12 | Ident of string | Number of float
lexer.ml 55 | id -> [< 'Token.Ident id; stream >]
parser.ml 29 | [< '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/
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/llvm/lib/Object/
ELFObjectFile.cpp     [all...]
  /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...]
  /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/VMCore/
GCOV.cpp 95 Ident = Buff.readInt();

Completed in 275 milliseconds

1 2