HomeSort by relevance Sort by last modified time
    Searched refs:IdentifierStr (Results 1 - 17 of 17) sorted by null

  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 38 static std::string IdentifierStr; // Filled in if tok_identifier
50 IdentifierStr = LastChar;
52 IdentifierStr += LastChar;
54 if (IdentifierStr == "def")
56 if (IdentifierStr == "extern")
226 std::string IdName = IdentifierStr;
329 std::string FnName = IdentifierStr;
337 ArgNames.push_back(IdentifierStr);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 45 static std::string IdentifierStr; // Filled in if tok_identifier
57 IdentifierStr = LastChar;
59 IdentifierStr += LastChar;
61 if (IdentifierStr == "def")
63 if (IdentifierStr == "extern")
65 if (IdentifierStr == "if")
67 if (IdentifierStr == "then")
69 if (IdentifierStr == "else")
71 if (IdentifierStr == "for")
73 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 32 static std::string IdentifierStr; // Filled in if tok_identifier
44 IdentifierStr = LastChar;
46 IdentifierStr += LastChar;
48 if (IdentifierStr == "def")
50 if (IdentifierStr == "extern")
229 std::string IdName = IdentifierStr;
332 std::string FnName = IdentifierStr;
340 ArgNames.push_back(IdentifierStr);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 38 static std::string IdentifierStr; // Filled in if tok_identifier
50 IdentifierStr = LastChar;
52 IdentifierStr += LastChar;
54 if (IdentifierStr == "def")
56 if (IdentifierStr == "extern")
235 std::string IdName = IdentifierStr;
338 std::string FnName = IdentifierStr;
346 ArgNames.push_back(IdentifierStr);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 52 static std::string IdentifierStr; // Filled in if tok_identifier
64 IdentifierStr = LastChar;
66 IdentifierStr += LastChar;
68 if (IdentifierStr == "def")
70 if (IdentifierStr == "extern")
72 if (IdentifierStr == "if")
74 if (IdentifierStr == "then")
76 if (IdentifierStr == "else")
78 if (IdentifierStr == "for")
80 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 63 static std::string IdentifierStr; // Filled in if tok_identifier
75 IdentifierStr = LastChar;
77 IdentifierStr += LastChar;
79 if (IdentifierStr == "def") return tok_def;
80 if (IdentifierStr == "extern") return tok_extern;
81 if (IdentifierStr == "if") return tok_if;
82 if (IdentifierStr == "then") return tok_then;
83 if (IdentifierStr == "else") return tok_else;
84 if (IdentifierStr == "for") return tok_for;
85 if (IdentifierStr == "in") return tok_in
    [all...]
toy.cpp 70 static std::string IdentifierStr; // Filled in if tok_identifier
82 IdentifierStr = LastChar;
84 IdentifierStr += LastChar;
86 if (IdentifierStr == "def") return tok_def;
87 if (IdentifierStr == "extern") return tok_extern;
88 if (IdentifierStr == "if") return tok_if;
89 if (IdentifierStr == "then") return tok_then;
90 if (IdentifierStr == "else") return tok_else;
91 if (IdentifierStr == "for") return tok_for;
92 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 47 static std::string IdentifierStr; // Filled in if tok_identifier
59 IdentifierStr = LastChar;
61 IdentifierStr += LastChar;
63 if (IdentifierStr == "def") return tok_def;
64 if (IdentifierStr == "extern") return tok_extern;
65 if (IdentifierStr == "if") return tok_if;
66 if (IdentifierStr == "then") return tok_then;
67 if (IdentifierStr == "else") return tok_else;
68 if (IdentifierStr == "for") return tok_for;
69 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 48 static std::string IdentifierStr; // Filled in if tok_identifier
60 IdentifierStr = LastChar;
62 IdentifierStr += LastChar;
64 if (IdentifierStr == "def") return tok_def;
65 if (IdentifierStr == "extern") return tok_extern;
66 if (IdentifierStr == "if") return tok_if;
67 if (IdentifierStr == "then") return tok_then;
68 if (IdentifierStr == "else") return tok_else;
69 if (IdentifierStr == "for") return tok_for;
70 if (IdentifierStr == "in") return tok_in
    [all...]
toy.cpp 49 static std::string IdentifierStr; // Filled in if tok_identifier
61 IdentifierStr = LastChar;
63 IdentifierStr += LastChar;
65 if (IdentifierStr == "def") return tok_def;
66 if (IdentifierStr == "extern") return tok_extern;
67 if (IdentifierStr == "if") return tok_if;
68 if (IdentifierStr == "then") return tok_then;
69 if (IdentifierStr == "else") return tok_else;
70 if (IdentifierStr == "for") return tok_for;
71 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 49 static std::string IdentifierStr; // Filled in if tok_identifier
61 IdentifierStr = LastChar;
63 IdentifierStr += LastChar;
65 if (IdentifierStr == "def")
67 if (IdentifierStr == "extern")
69 if (IdentifierStr == "if")
71 if (IdentifierStr == "then")
73 if (IdentifierStr == "else")
75 if (IdentifierStr == "for")
77 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 118 static std::string IdentifierStr; // Filled in if tok_identifier
132 IdentifierStr = LastChar;
134 IdentifierStr += LastChar;
136 if (IdentifierStr == "def")
138 if (IdentifierStr == "extern")
140 if (IdentifierStr == "if")
142 if (IdentifierStr == "then")
144 if (IdentifierStr == "else")
146 if (IdentifierStr == "for")
148 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 89 static std::string IdentifierStr; // Filled in if tok_identifier
101 IdentifierStr = LastChar;
103 IdentifierStr += LastChar;
105 if (IdentifierStr == "def") return tok_def;
106 if (IdentifierStr == "extern") return tok_extern;
107 if (IdentifierStr == "if") return tok_if;
108 if (IdentifierStr == "then") return tok_then;
109 if (IdentifierStr == "else") return tok_else;
110 if (IdentifierStr == "for") return tok_for;
111 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 54 static std::string IdentifierStr; // Filled in if tok_identifier
66 IdentifierStr = LastChar;
68 IdentifierStr += LastChar;
70 if (IdentifierStr == "def") return tok_def;
71 if (IdentifierStr == "extern") return tok_extern;
72 if (IdentifierStr == "if") return tok_if;
73 if (IdentifierStr == "then") return tok_then;
74 if (IdentifierStr == "else") return tok_else;
75 if (IdentifierStr == "for") return tok_for;
76 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 53 static std::string IdentifierStr; // Filled in if tok_identifier
65 IdentifierStr = LastChar;
67 IdentifierStr += LastChar;
69 if (IdentifierStr == "def") return tok_def;
70 if (IdentifierStr == "extern") return tok_extern;
71 if (IdentifierStr == "if") return tok_if;
72 if (IdentifierStr == "then") return tok_then;
73 if (IdentifierStr == "else") return tok_else;
74 if (IdentifierStr == "for") return tok_for;
75 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 53 static std::string IdentifierStr; // Filled in if tok_identifier
65 IdentifierStr = LastChar;
67 IdentifierStr += LastChar;
69 if (IdentifierStr == "def") return tok_def;
70 if (IdentifierStr == "extern") return tok_extern;
71 if (IdentifierStr == "if") return tok_if;
72 if (IdentifierStr == "then") return tok_then;
73 if (IdentifierStr == "else") return tok_else;
74 if (IdentifierStr == "for") return tok_for;
75 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 53 static std::string IdentifierStr; // Filled in if tok_identifier
65 IdentifierStr = LastChar;
67 IdentifierStr += LastChar;
69 if (IdentifierStr == "def") return tok_def;
70 if (IdentifierStr == "extern") return tok_extern;
71 if (IdentifierStr == "if") return tok_if;
72 if (IdentifierStr == "then") return tok_then;
73 if (IdentifierStr == "else") return tok_else;
74 if (IdentifierStr == "for") return tok_for;
75 if (IdentifierStr == "in") return tok_in
    [all...]

Completed in 64 milliseconds