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

  /external/llvm/lib/AsmParser/
LLParser.cpp 304 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(lltok::kw_type, "expected 'type' after name")
    [all...]
LLParser.h 166 bool ParseToken(lltok::Kind T, const char *ErrMsg);
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
rule.cc 34 bool ParseToken(char c, AddressField* field) {
111 if (ParseToken(control_character, &field)) {
132 if (ParseToken(required[i], &field)) {
  /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 261 bool ParsedCookie::ParseToken(std::string::const_iterator* it,
328 if (ParseToken(&it, end, &token_start, &token_end))
359 if (!ParseToken(&it, end, &token_start, &token_end))
  /external/chromium_org/gpu/config/
gpu_test_expectations_parser.cc 131 Token ParseToken(const std::string& word) {
226 Token token = ParseToken(tokens[i]);
274 Token token = ParseToken(tokens[i]);
  /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')

Completed in 513 milliseconds