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

  /external/chromium/base/json/
json_reader.cc 174 if (ParseToken().type == Token::END_OF_INPUT) {
205 Token token = ParseToken();
247 token = ParseToken();
257 token = ParseToken();
260 token = ParseToken();
285 token = ParseToken();
303 token = ParseToken();
308 token = ParseToken();
317 token = ParseToken();
320 token = ParseToken();
    [all...]
json_reader.h 183 Token ParseToken();
  /external/llvm/lib/AsmParser/
LLParser.cpp 295 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
312 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
319 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
334 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
335 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
346 return ParseToken(lltok::rsquare, "expected ']' at end of list");
356 if (ParseToken(lltok::equal, "expected '=' after name") ||
357 ParseToken(lltok::kw_type, "expected 'type' after '='"))
386 if (ParseToken(lltok::equal, "expected '=' after name") ||
387 ParseToken(lltok::kw_type, "expected 'type' after name")
    [all...]
LLParser.h 156 bool ParseToken(lltok::Kind T, const char *ErrMsg);
  /external/chromium_org/base/json/
json_parser.h 51 // the parser in GetNextToken/ParseToken, that is tokenization operates on
167 // Calls GetNextToken() and then ParseToken(). Caller owns the result.
173 Value* ParseToken(Token token);
json_parser.cc 457 return ParseToken(GetNextToken());
460 Value* JSONParser::ParseToken(Token token) {
561 Value* item = ParseToken(token);
  /external/chromium_org/net/cookies/
parsed_cookie.h 82 static bool ParseToken(std::string::const_iterator* it,
parsed_cookie.cc 274 bool ParsedCookie::ParseToken(std::string::const_iterator* it,
341 if (ParseToken(&it, end, &token_start, &token_end))
381 if (!ParseToken(&it, end, &token_start, &token_end))
  /external/chromium_org/gpu/config/
gpu_test_expectations_parser.cc 129 Token ParseToken(const std::string& word) {
224 Token token = ParseToken(tokens[i]);
271 Token token = ParseToken(tokens[i]);
  /external/chromium/testing/gtest/scripts/
pump.py 243 def ParseToken(lines, pos, regex, token_type):
328 id_token = ParseToken(lines, found.end, ID_REGEX, 'id')
332 eq_token = ParseToken(lines, pos, EQ_REGEX, '=')
337 exp_token = ParseToken(lines, pos, REST_OF_LINE_REGEX, 'exp')
344 id_token = ParseToken(lines, found.end, ID_REGEX, 'id')
351 id_token = ParseToken(lines, found.end, ID_REGEX, 'id')
  /external/chromium_org/testing/gtest/scripts/
pump.py 243 def ParseToken(lines, pos, regex, token_type):
328 id_token = ParseToken(lines, found.end, ID_REGEX, 'id')
332 eq_token = ParseToken(lines, pos, EQ_REGEX, '=')
337 exp_token = ParseToken(lines, pos, REST_OF_LINE_REGEX, 'exp')
344 id_token = ParseToken(lines, found.end, ID_REGEX, 'id')
351 id_token = ParseToken(lines, found.end, ID_REGEX, 'id')
  /external/gtest/scripts/
pump.py 243 def ParseToken(lines, pos, regex, token_type):
328 id_token = ParseToken(lines, found.end, ID_REGEX, 'id')
332 eq_token = ParseToken(lines, pos, EQ_REGEX, '=')
337 exp_token = ParseToken(lines, pos, REST_OF_LINE_REGEX, 'exp')
344 id_token = ParseToken(lines, found.end, ID_REGEX, 'id')
351 id_token = ParseToken(lines, found.end, ID_REGEX, 'id')
  /external/chromium/net/base/
cookie_monster.h 731 static bool ParseToken(std::string::const_iterator* it,
    [all...]
cookie_monster.cc     [all...]

Completed in 1266 milliseconds