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

  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
toy.cpp 23 static std::string IdentifierStr; // Filled in if tok_identifier
35 IdentifierStr = LastChar;
37 IdentifierStr += LastChar;
39 if (IdentifierStr == "def") return tok_def;
40 if (IdentifierStr == "extern") return tok_extern;
176 std::string IdName = IdentifierStr;
287 std::string FnName = IdentifierStr;
295 ArgNames.push_back(IdentifierStr);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 42 static std::string IdentifierStr; // Filled in if tok_identifier
54 IdentifierStr = LastChar;
56 IdentifierStr += LastChar;
58 if (IdentifierStr == "def") return tok_def;
59 if (IdentifierStr == "extern") return tok_extern;
60 if (IdentifierStr == "if") return tok_if;
61 if (IdentifierStr == "then") return tok_then;
62 if (IdentifierStr == "else") return tok_else;
63 if (IdentifierStr == "for") return tok_for;
64 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 39 static std::string IdentifierStr; // Filled in if tok_identifier
51 IdentifierStr = LastChar;
53 IdentifierStr += LastChar;
55 if (IdentifierStr == "def")
57 if (IdentifierStr == "extern")
227 std::string IdName = IdentifierStr;
330 std::string FnName = IdentifierStr;
338 ArgNames.push_back(IdentifierStr);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
toy.cpp 28 static std::string IdentifierStr; // Filled in if tok_identifier
40 IdentifierStr = LastChar;
42 IdentifierStr += LastChar;
44 if (IdentifierStr == "def") return tok_def;
45 if (IdentifierStr == "extern") return tok_extern;
188 std::string IdName = IdentifierStr;
299 std::string FnName = IdentifierStr;
307 ArgNames.push_back(IdentifierStr);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 57 static std::string IdentifierStr; // Filled in if tok_identifier
69 IdentifierStr = LastChar;
71 IdentifierStr += LastChar;
73 if (IdentifierStr == "def")
75 if (IdentifierStr == "extern")
77 if (IdentifierStr == "if")
79 if (IdentifierStr == "then")
81 if (IdentifierStr == "else")
83 if (IdentifierStr == "for")
85 if (IdentifierStr == "in"
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 39 static std::string IdentifierStr; // Filled in if tok_identifier
51 IdentifierStr = LastChar;
53 IdentifierStr += LastChar;
55 if (IdentifierStr == "def") return tok_def;
56 if (IdentifierStr == "extern") return tok_extern;
57 if (IdentifierStr == "if") return tok_if;
58 if (IdentifierStr == "then") return tok_then;
59 if (IdentifierStr == "else") return tok_else;
60 if (IdentifierStr == "for") return tok_for;
61 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 65 static std::string IdentifierStr; // Filled in if tok_identifier
77 IdentifierStr = LastChar;
79 IdentifierStr += LastChar;
81 if (IdentifierStr == "def")
83 if (IdentifierStr == "extern")
85 if (IdentifierStr == "if")
87 if (IdentifierStr == "then")
89 if (IdentifierStr == "else")
91 if (IdentifierStr == "for")
93 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 65 static std::string IdentifierStr; // Filled in if tok_identifier
77 IdentifierStr = LastChar;
79 IdentifierStr += LastChar;
81 if (IdentifierStr == "def")
83 if (IdentifierStr == "extern")
85 if (IdentifierStr == "if")
87 if (IdentifierStr == "then")
89 if (IdentifierStr == "else")
91 if (IdentifierStr == "for")
93 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 65 static std::string IdentifierStr; // Filled in if tok_identifier
77 IdentifierStr = LastChar;
79 IdentifierStr += LastChar;
81 if (IdentifierStr == "def")
83 if (IdentifierStr == "extern")
85 if (IdentifierStr == "if")
87 if (IdentifierStr == "then")
89 if (IdentifierStr == "else")
91 if (IdentifierStr == "for")
93 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 66 static std::string IdentifierStr; // Filled in if tok_identifier
78 IdentifierStr = LastChar;
80 IdentifierStr += LastChar;
82 if (IdentifierStr == "def")
84 if (IdentifierStr == "extern")
86 if (IdentifierStr == "if")
88 if (IdentifierStr == "then")
90 if (IdentifierStr == "else")
92 if (IdentifierStr == "for")
94 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 81 static std::string IdentifierStr; // Filled in if tok_identifier
93 IdentifierStr = LastChar;
95 IdentifierStr += LastChar;
97 if (IdentifierStr == "def")
99 if (IdentifierStr == "extern")
101 if (IdentifierStr == "if")
103 if (IdentifierStr == "then")
105 if (IdentifierStr == "else")
107 if (IdentifierStr == "for")
109 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 40 static std::string IdentifierStr; // Filled in if tok_identifier
52 IdentifierStr = LastChar;
54 IdentifierStr += LastChar;
56 if (IdentifierStr == "def")
58 if (IdentifierStr == "extern")
237 std::string IdName = IdentifierStr;
340 std::string FnName = IdentifierStr;
348 ArgNames.push_back(IdentifierStr);
  /external/llvm/examples/Kaleidoscope/Chapter4/
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")
246 std::string IdName = IdentifierStr;
349 std::string FnName = IdentifierStr;
357 ArgNames.push_back(IdentifierStr);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 65 static std::string IdentifierStr; // Filled in if tok_identifier
77 IdentifierStr = LastChar;
79 IdentifierStr += LastChar;
81 if (IdentifierStr == "def")
83 if (IdentifierStr == "extern")
85 if (IdentifierStr == "if")
87 if (IdentifierStr == "then")
89 if (IdentifierStr == "else")
91 if (IdentifierStr == "for")
93 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 62 static std::string IdentifierStr; // Filled in if tok_identifier
74 IdentifierStr = LastChar;
76 IdentifierStr += LastChar;
78 if (IdentifierStr == "def")
80 if (IdentifierStr == "extern")
82 if (IdentifierStr == "if")
84 if (IdentifierStr == "then")
86 if (IdentifierStr == "else")
88 if (IdentifierStr == "for")
90 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/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
toy.cpp 35 static std::string IdentifierStr; // Filled in if tok_identifier
47 IdentifierStr = LastChar;
49 IdentifierStr += LastChar;
51 if (IdentifierStr == "def") return tok_def;
52 if (IdentifierStr == "extern") return tok_extern;
195 std::string IdName = IdentifierStr;
306 std::string FnName = IdentifierStr;
314 ArgNames.push_back(IdentifierStr);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 45 static std::string IdentifierStr; // Filled in if tok_identifier
57 IdentifierStr = LastChar;
59 IdentifierStr += LastChar;
61 if (IdentifierStr == "def") return tok_def;
62 if (IdentifierStr == "extern") return tok_extern;
63 if (IdentifierStr == "if") return tok_if;
64 if (IdentifierStr == "then") return tok_then;
65 if (IdentifierStr == "else") return tok_else;
66 if (IdentifierStr == "for") return tok_for;
67 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 61 static std::string IdentifierStr; // Filled in if tok_identifier
73 IdentifierStr = LastChar;
75 IdentifierStr += LastChar;
77 if (IdentifierStr == "def")
79 if (IdentifierStr == "extern")
81 if (IdentifierStr == "if")
83 if (IdentifierStr == "then")
85 if (IdentifierStr == "else")
87 if (IdentifierStr == "for")
89 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 119 static std::string IdentifierStr; // Filled in if tok_identifier
133 IdentifierStr = LastChar;
135 IdentifierStr += LastChar;
137 if (IdentifierStr == "def")
139 if (IdentifierStr == "extern")
141 if (IdentifierStr == "if")
143 if (IdentifierStr == "then")
145 if (IdentifierStr == "else")
147 if (IdentifierStr == "for")
149 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...]

Completed in 126 milliseconds