Searched refs:ParseToken (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/AsmParser/
H A DLLParser.cpp304 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
321 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
328 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
343 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
344 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
355 return ParseToken(lltok::rsquare, "expected ']' at end of list");
365 if (ParseToken(lltok::equal, "expected '=' after name") ||
366 ParseToken(lltok::kw_type, "expected 'type' after '='"))
395 if (ParseToken(lltok::equal, "expected '=' after name") ||
396 ParseToken(llto
[all...]
H A DLLParser.h166 bool ParseToken(lltok::Kind T, const char *ErrMsg);
/external/chromium_org/base/json/
H A Djson_parser.h51 // 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);
H A Djson_parser.cc457 return ParseToken(GetNextToken());
460 Value* JSONParser::ParseToken(Token token) { function in class:base::internal::JSONParser
561 Value* item = ParseToken(token);
/external/chromium_org/net/cookies/
H A Dparsed_cookie.h84 static bool ParseToken(std::string::const_iterator* it,
H A Dparsed_cookie.cc261 bool ParsedCookie::ParseToken(std::string::const_iterator* it, function in class:net::ParsedCookie
328 if (ParseToken(&it, end, &token_start, &token_end))
359 if (!ParseToken(&it, end, &token_start, &token_end))
/external/chromium_org/gpu/config/
H A Dgpu_test_expectations_parser.cc131 Token ParseToken(const std::string& word) { function in namespace:gpu::__anon8461
226 Token token = ParseToken(tokens[i]);
274 Token token = ParseToken(tokens[i]);
/external/chromium_org/testing/gtest/scripts/
H A Dpump.py243 def ParseToken(lines, pos, regex, token_type): function
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')

Completed in 998 milliseconds