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

1 2 3 4 5

  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
toy.cpp 142 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
143 /// token the parser is looking at. getNextToken reads another token from the
146 static int getNextToken() {
178 getNextToken(); // eat identifier.
184 getNextToken(); // eat (
196 getNextToken();
201 getNextToken();
209 getNextToken(); // consume the number
215 getNextToken(); // eat (.
221 getNextToken(); // eat )
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 164 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
165 /// token the parser is looking at. getNextToken reads another token from the
168 static int getNextToken() { return CurTok = gettok(); }
201 getNextToken(); // consume the number
207 getNextToken(); // eat (.
214 getNextToken(); // eat ).
224 getNextToken(); // eat identifier.
230 getNextToken(); // eat (
244 getNextToken();
249 getNextToken();
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptParser.java 79 Token token = lexer.getNextToken();
83 token = lexer.getNextToken();
97 token = lexer.getNextToken();
101 token = lexer.getNextToken();
InReplyToParser.java 79 Token token = lexer.getNextToken();
83 Token secToken = lexer.getNextToken();
101 token = lexer.getNextToken();
105 Token secToken = lexer.getNextToken();
SubscriptionStateParser.java 78 Token token = lexer.getNextToken();
85 token = lexer.getNextToken();
91 token = lexer.getNextToken();
98 token = lexer.getNextToken();
112 token = lexer.getNextToken();
126 Token secondToken = lexer.getNextToken();
WarningParser.java 88 Token token = lexer.getNextToken();
101 token = lexer.getNextToken();
106 Token token2 = lexer.getNextToken();
130 Token tok = lexer.getNextToken();
143 tok = lexer.getNextToken();
150 Token token2 = lexer.getNextToken();
ContentTypeParser.java 67 Token type = lexer.getNextToken();
74 Token subType = lexer.getNextToken();
ViaParser.java 57 Token protocolName = lexer.getNextToken();
65 Token protocolVersion = lexer.getNextToken();
75 Token transport = lexer.getNextToken();
122 Token tok = lexer.getNextToken();
125 tok = lexer.getNextToken();
150 Token name = lexer.getNextToken();
173 Token value = lexer.getNextToken();
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 169 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
170 /// token the parser is looking at. getNextToken reads another token from the
173 static int getNextToken() { return CurTok = gettok(); }
206 getNextToken(); // consume the number
212 getNextToken(); // eat (.
219 getNextToken(); // eat ).
229 getNextToken(); // eat identifier.
235 getNextToken(); // eat (
249 getNextToken();
254 getNextToken();
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
toy.cpp 154 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
155 /// token the parser is looking at. getNextToken reads another token from the
158 static int getNextToken() {
190 getNextToken(); // eat identifier.
196 getNextToken(); // eat (
208 getNextToken();
213 getNextToken();
221 getNextToken(); // consume the number
227 getNextToken(); // eat (.
233 getNextToken(); // eat )
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 218 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
219 /// token the parser is looking at. getNextToken reads another token from the
222 static int getNextToken() {
254 getNextToken(); // eat identifier.
260 getNextToken(); // eat (
272 getNextToken();
277 getNextToken();
285 getNextToken(); // consume the number
291 getNextToken(); // eat (.
297 getNextToken(); // eat )
    [all...]
  /device/generic/opengl-transport/host/commands/emugen/
strUtils.h 25 std::string getNextToken(const std::string & str, size_t pos, size_t * last, const std::string & delim);
EntryPoint.cpp 58 field = getNextToken(linestr, 0, &last, "(");
61 field = getNextToken(linestr, pos, &last, ",)");
88 m_name = getNextToken(linestr, pos, &last, ",)");
94 field = getNextToken(linestr, pos, &last, ",)");
207 std::string token = getNextToken(line, 0, &last, WHITESPACE);
213 std::string varname = getNextToken(line, pos, &last, WHITESPACE);
223 std::string varname = getNextToken(line, pos, &last, WHITESPACE);
233 std::string varname = getNextToken(line, pos, &last, WHITESPACE);
240 std::string pointerDirStr = getNextToken(line, pos, &last, WHITESPACE);
258 std::string varname = getNextToken(line, pos, &last, WHITESPACE)
    [all...]
  /external/icu/icu4c/source/tools/genrb/
read.h 28 /* The types of tokens which may be returned by getNextToken.
48 getNextToken(UCHARBUF *buf,
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 230 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
231 /// token the parser is looking at. getNextToken reads another token from the
234 static int getNextToken() { return CurTok = gettok(); }
268 getNextToken(); // consume the number
274 getNextToken(); // eat (.
281 getNextToken(); // eat ).
291 getNextToken(); // eat identifier.
297 getNextToken(); // eat (
311 getNextToken();
316 getNextToken();
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 190 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
191 /// token the parser is looking at. getNextToken reads another token from the
194 static int getNextToken() {
226 getNextToken(); // eat identifier.
232 getNextToken(); // eat (
244 getNextToken();
249 getNextToken();
257 getNextToken(); // consume the number
263 getNextToken(); // eat (.
269 getNextToken(); // eat )
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 244 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
245 /// token the parser is looking at. getNextToken reads another token from the
248 static int getNextToken() { return CurTok = gettok(); }
282 getNextToken(); // consume the number
288 getNextToken(); // eat (.
295 getNextToken(); // eat ).
305 getNextToken(); // eat identifier.
311 getNextToken(); // eat (
325 getNextToken();
330 getNextToken();
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 178 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
179 /// token the parser is looking at. getNextToken reads another token from the
182 static int getNextToken() { return CurTok = gettok(); }
216 getNextToken(); // consume the number
222 getNextToken(); // eat (.
229 getNextToken(); // eat ).
239 getNextToken(); // eat identifier.
245 getNextToken(); // eat (
259 getNextToken();
264 getNextToken();
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 187 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
188 /// token the parser is looking at. getNextToken reads another token from the
191 static int getNextToken() { return CurTok = gettok(); }
225 getNextToken(); // consume the number
231 getNextToken(); // eat (.
238 getNextToken(); // eat ).
248 getNextToken(); // eat identifier.
254 getNextToken(); // eat (
268 getNextToken();
273 getNextToken();
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
toy.cpp 161 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
162 /// token the parser is looking at. getNextToken reads another token from the
165 static int getNextToken() {
197 getNextToken(); // eat identifier.
203 getNextToken(); // eat (
215 getNextToken();
220 getNextToken();
228 getNextToken(); // consume the number
234 getNextToken(); // eat (.
240 getNextToken(); // eat )
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 189 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
190 /// token the parser is looking at. getNextToken reads another token from the
193 static int getNextToken() { return CurTok = gettok(); }
227 getNextToken(); // consume the number
233 getNextToken(); // eat (.
240 getNextToken(); // eat ).
250 getNextToken(); // eat identifier.
256 getNextToken(); // eat (
270 getNextToken();
275 getNextToken();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 199 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
200 /// token the parser is looking at. getNextToken reads another token from the
203 static int getNextToken() { return CurTok = gettok(); }
237 getNextToken(); // consume the number
243 getNextToken(); // eat (.
250 getNextToken(); // eat ).
260 getNextToken(); // eat identifier.
266 getNextToken(); // eat (
280 getNextToken();
285 getNextToken();
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 283 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
284 /// token the parser is looking at. getNextToken reads another token from the
287 static int getNextToken() { return CurTok = gettok(); }
321 getNextToken(); // consume the number
327 getNextToken(); // eat (.
334 getNextToken(); // eat ).
344 getNextToken(); // eat identifier.
350 getNextToken(); // eat (
364 getNextToken();
369 getNextToken();
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 283 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
284 /// token the parser is looking at. getNextToken reads another token from the
287 static int getNextToken() { return CurTok = gettok(); }
321 getNextToken(); // consume the number
327 getNextToken(); // eat (.
334 getNextToken(); // eat ).
344 getNextToken(); // eat identifier.
350 getNextToken(); // eat (
364 getNextToken();
369 getNextToken();
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 283 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
284 /// token the parser is looking at. getNextToken reads another token from the
287 static int getNextToken() { return CurTok = gettok(); }
321 getNextToken(); // consume the number
327 getNextToken(); // eat (.
334 getNextToken(); // eat ).
344 getNextToken(); // eat identifier.
350 getNextToken(); // eat (
364 getNextToken();
369 getNextToken();
    [all...]

Completed in 305 milliseconds

1 2 3 4 5