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

  /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 42 explicit TokenRange(const TokenList& token_list)
43 : token_list_(new TokenList(token_list)),
58 TokenRange(const TokenList& token_list ATTRIBUTE_UNUSED,
64 assert(it_begin >= token_list.begin());
65 assert(it_end <= token_list.end());
70 TokenRange(const char* token_list[], size_t length)
71 : token_list_(new TokenList(&token_list[0], &token_list[length])),
77 explicit TokenRange(TokenList&& token_list)
78 : token_list_(new TokenList(std::forward<TokenList>(token_list))),
408 auto token_list = std::make_shared<TokenList>(begin(), end()); local
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/tracing_agent/
cpu_tracing_agent.py 22 token_list = line.strip().split()
23 if len(token_list) < 5:
24 raise ValueError('Line has too few tokens: %s.' % token_list)
27 'pCpu': float(token_list[0]),
28 'pMem': float(token_list[1]),
29 'pid': int(token_list[2]),
30 'ppid': int(token_list[3]),
31 'name': ' '.join(token_list[4:])
147 token_list = proc_string.strip().split()
148 if len(token_list) < 5
    [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'):
  /art/cmdline/detail/
cmdline_parse_argument_detail.h 113 size_t MaybeMatches(const TokenRange& token_list) const {
114 auto best_match = FindClosestMatch(token_list);
123 std::pair<const TokenRange*, size_t> FindClosestMatch(const TokenRange& token_list) const {
128 size_t this_match = token_range.MaybeMatches(token_list, std::string("_"));
  /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/googletest/googlemock/scripts/generator/cpp/
ast.py 340 for token_list in self.bases:
342 for token in token_list:
    [all...]
  /external/v8/testing/gmock/scripts/generator/cpp/
ast.py 340 for token_list in self.bases:
342 for token in token_list:
    [all...]

Completed in 1432 milliseconds