Home
last modified time | relevance | path

Searched refs:tokens (Results 1 – 6 of 6) sorted by relevance

/art/libnativeloader/
Dpublic_libraries.cpp274 std::vector<std::string> tokens = base::Split(line, " "); in ParseApexLibrariesConfigLine() local
275 if (tokens.size() != 3) { in ParseApexLibrariesConfigLine()
278 if (tokens[0] != "jni" && tokens[0] != "public") { in ParseApexLibrariesConfigLine()
281 if (!std::regex_match(tokens[1], kApexNamespaceRegex)) { in ParseApexLibrariesConfigLine()
284 if (!std::regex_match(tokens[2], kLibraryListRegex)) { in ParseApexLibrariesConfigLine()
287 return ApexLibrariesConfigLine{std::move(tokens[0]), std::move(tokens[1]), std::move(tokens[2])}; in ParseApexLibrariesConfigLine()
378 std::vector<std::string> tokens = android::base::Split(trimmed_line, " "); in ParseConfig() local
379 if (tokens.size() < 1 || tokens.size() > 3) { in ParseConfig()
383 size_t i = tokens.size(); in ParseConfig()
385 if (tokens[i] == "nopreload") { in ParseConfig()
[all …]
/art/tools/jvmti-agents/ti-alloc-sample/
Dmkflame.py100 thread_type_size = self.definition(int(tokens[0]))
108 tokens = definition.split(";")
111 (thread_type_size, weight) = get_top_and_weight(int(tokens[0]))
114 del tokens[0]
117 for i in range(len(tokens)):
120 token = tokens[i]
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h82 virtual size_t MaybeMatches(const TokenRange& tokens) = 0;
548 virtual size_t MaybeMatches(const TokenRange& tokens) { in MaybeMatches()
549 return argument_info_.MaybeMatches(tokens); in MaybeMatches()
/art/tools/veridex/
Dveridex.cc124 std::vector<std::string> tokens; in Split() local
128 tokens.push_back(tmp); in Split()
130 return tokens; in Split()
/art/cmdline/
DREADME.md84 For example with `-orange:_` the parse would know to check all tokens in an `argv` list for the
171 an option to ignore any argument tokens that are not known to the parser. This is done with the
/art/tools/ahat/
DREADME.txt59 Annotate binder services, tokens, and proxies.