/external/v8/src/parsing/ |
token.cc | 14 TOKEN_LIST(T, T) 21 TOKEN_LIST(T, T) 28 TOKEN_LIST(T, T) 36 TOKEN_LIST(KT, KK)
|
token.h | 14 // TOKEN_LIST takes a list of 3 macros M, all of which satisfy the 24 // an argument (at any position) for a TOKEN_LIST call. It does 29 #define TOKEN_LIST(T, K) \ 180 TOKEN_LIST(T, T)
|
/external/autotest/client/site_tests/platform_Pkcs11Events/ |
platform_Pkcs11Events.py | 15 token_list = ['/tmp/chaps%d' % x for x in range(num_tokens)] 18 for token in token_list: 23 for token in token_list: 30 for token in token_list: 33 for token in token_list: 38 token = random.choice(token_list) 53 for token in token_list: 55 for token in token_list:
|
/art/cmdline/ |
token_range.h | 40 explicit TokenRange(const TokenList& token_list) 41 : token_list_(new TokenList(token_list)), 56 TokenRange(const TokenList& token_list ATTRIBUTE_UNUSED, 62 assert(it_begin >= token_list.begin()); 63 assert(it_end <= token_list.end()); 68 TokenRange(const char* token_list[], size_t length) 69 : token_list_(new TokenList(&token_list[0], &token_list[length])), 75 explicit TokenRange(TokenList&& token_list) 76 : token_list_(new TokenList(std::forward<TokenList>(token_list))), 406 auto token_list = std::make_shared<TokenList>(begin(), end()); local [all...] |
/external/mesa3d/src/glsl/glcpp/ |
glcpp.h | 49 typedef struct token_list token_list_t; 57 token_list_t *token_list; member in union:YYSTYPE 103 struct token_list { struct
|
glcpp-parse.y | 169 %type <token_list> pp_tokens replacement_list text_line conditional_tokens [all...] |
/external/autotest/client/cros/ |
pkcs11.py | 43 token_list = __run_cmd('p11_replay --list_tokens') 44 for line in token_list.split('\n'): 64 token_list = __run_cmd('p11_replay --list_tokens') 65 for line in token_list.split('\n'):
|
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/ |
requireprovidesorter.py | 269 token_list = [] 274 token_list.append(token) 276 token_list.append(last_token) 278 return token_list
|
tokenutil.py | 489 token_list = list(token_iterable) 490 if not token_list: 493 line_number = token_list[0].line_number 495 for token in token_list:
|
/art/cmdline/detail/ |
cmdline_parse_argument_detail.h | 111 size_t MaybeMatches(TokenRange token_list) const { 112 auto best_match = FindClosestMatch(token_list); 121 std::pair<const TokenRange*, size_t> FindClosestMatch(TokenRange token_list) const { 126 size_t this_match = token_range.MaybeMatches(token_list, std::string("_"));
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_tokenize.py | 50 ... token_list = list(generate_tokens(f.readline)) 52 ... tokens1 = [tok[:2] for tok in token_list]
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_tokenize.py | 50 ... token_list = list(generate_tokens(f.readline)) 52 ... tokens1 = [tok[:2] for tok in token_list]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_tokenize.py | 50 ... token_list = list(generate_tokens(f.readline)) 52 ... tokens1 = [tok[:2] for tok in token_list]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_tokenize.py | 50 ... token_list = list(generate_tokens(f.readline)) 52 ... tokens1 = [tok[:2] for tok in token_list]
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
ast.py | 339 for token_list in self.bases: 341 for token in token_list: [all...] |
/external/v8/test/cctest/ |
test-parsing.cc | 58 TOKEN_LIST(IGNORE_TOKEN, KEYWORD) [all...] |