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

1 2

  /sdk/emulator/opengl/host/tools/emugen/
strUtils.cpp 21 std::string getNextToken(const std::string & str, size_t pos, size_t * last, const std::string & delim)
  /external/chromium_org/third_party/icu/source/tools/genrb/
read.c 62 enum ETokenType getNextToken(UCHARBUF* buf,
  /external/icu4c/tools/genrb/
read.c 64 getNextToken(UCHARBUF* buf,
  /external/nist-sip/java/gov/nist/core/
StringTokenizer.java 174 public String getNextToken(char delim) throws ParseException {
LexerCore.java 159 public Token getNextToken() {
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 134 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
135 /// token the parser is looking at. getNextToken reads another token from the
138 static int getNextToken() {
170 getNextToken(); // eat identifier.
176 getNextToken(); // eat (
188 getNextToken();
193 getNextToken();
201 getNextToken(); // consume the number
207 getNextToken(); // eat (.
213 getNextToken(); // eat )
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryService.java 119 public final int getNextToken() {
CalendarColorPickerDialog.java 151 mService.startUpdate(mService.getNextToken(), null, ContentUris.withAppendedId(
DeleteEventHelper.java 139 mService.startDelete(mService.getNextToken(), null, uri, null, null, Utils.UNDO_DELAY);
211 mService.startQuery(mService.getNextToken(), null, uri, EditEventHelper.EVENT_PROJECTION,
350 mService.startUpdate(mService.getNextToken(), null, uri, values, null, null,
391 mService.startInsert(mService.getNextToken(), null, Events.CONTENT_URI, values,
397 mService.startDelete(mService.getNextToken(), null, uri, null, null,
406 mService.startDelete(mService.getNextToken(), null, uri, null, null,
431 mService.startUpdate(mService.getNextToken(), null, uri, values, null, null,
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParser.java 190 else token = token.next = token_source.getNextToken();
201 final public Token getNextToken() {
203 else token = token.next = token_source.getNextToken();
213 else t = t.next = token_source.getNextToken();
220 return (jj_ntk = (token.next=token_source.getNextToken()).kind);
ContentTypeParserTokenManager.java 691 public Token getNextToken()
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_expr.c 133 static int getNextToken(
464 rc = getNextToken(pParse, iCol, &z[iColLen], n-iColLen, ppExpr, pnConsumed);
  /external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp 60 NextToken = getNextToken();
69 NextToken = getNextToken();
76 TokenInfo getNextToken() {
  /external/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/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...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParser.java 489 else token = token.next = token_source.getNextToken();
500 final public Token getNextToken() {
502 else token = token.next = token_source.getNextToken();
512 else t = t.next = token_source.getNextToken();
519 return (jj_ntk = (token.next=token_source.getNextToken()).kind);
DateTimeParserTokenManager.java 730 public Token getNextToken()
  /external/clang/lib/Format/
UnwrappedLineParser.cpp 27 virtual FormatToken *getNextToken() = 0;
77 virtual FormatToken *getNextToken() {
79 // \c getNextToken() after it has encountered the first eof token.
81 Token = PreviousTokenSource->getNextToken();
159 virtual FormatToken *getNextToken() {
252 // a closing brace or eof - note that getNextToken() will
268 NextTok = Tokens->getNextToken();
1128 FormatTok = Tokens->getNextToken();
    [all...]
  /external/icu4c/i18n/
plurrule.cpp 361 mParser->getNextToken(ruleData, &ruleIndex, token, type, status);
    [all...]
  /external/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...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.java 794 else token = token.next = token_source.getNextToken();
821 jj_lastpos = jj_scanpos = jj_scanpos.next = token_source.getNextToken();
838 final public Token getNextToken() {
840 else token = token.next = token_source.getNextToken();
850 else t = t.next = token_source.getNextToken();
857 return (jj_ntk = (token.next=token_source.getNextToken()).kind);
AddressListParserTokenManager.java 805 public Token getNextToken()
  /external/chromium_org/third_party/icu/source/i18n/
plurrule.cpp 298 mParser->getNextToken(ruleData, &ruleIndex, token, type, status);
960 RuleParser::getNextToken(const UnicodeString& ruleData,
  /external/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...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 236 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
237 /// token the parser is looking at. getNextToken reads another token from the
240 static int getNextToken() {
272 getNextToken(); // eat identifier.
278 getNextToken(); // eat (
290 getNextToken();
295 getNextToken();
303 getNextToken(); // consume the number
309 getNextToken(); // eat (.
315 getNextToken(); // eat )
    [all...]

Completed in 632 milliseconds

1 2