Home
last modified time | relevance | path

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

/art/runtime/interpreter/mterp/
Dgen_mterp.py63 def setHandlerStyle(tokens): argument
65 if len(tokens) != 2:
67 style = tokens[1]
77 def setHandlerSize(tokens): argument
81 if len(tokens) != 2:
87 handler_size_bytes = bytes = int(tokens[1])
102 def importFile(tokens): argument
103 if len(tokens) != 2:
105 source = tokens[1]
107 appendSourceFile(tokens[1], getGlobalSubDict(), asm_fp, None)
[all …]
/art/compiler/utils/
Dassembler_test_base.h402 std::vector<std::string> tokens(start, end); in Compile()
404 if (tokens.size() < OBJDUMP_SECTION_LINE_MIN_TOKENS) { in Compile()
409 if (tokens[1] != ".text") { in Compile()
414 std::string lengthToken = "0x" + tokens[2]; in Compile()
417 std::string offsetToken = "0x" + tokens[5]; in Compile()
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h77 virtual size_t MaybeMatches(const TokenRange& tokens) = 0;
482 virtual size_t MaybeMatches(const TokenRange& tokens) { in MaybeMatches()
483 return argument_info_.MaybeMatches(tokens); in MaybeMatches()
/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/
Dcpplint.py3426 tokens = re.split(r'\s|\+|\-|\*|\/|<<|>>]', match.group(3))
3429 for tok in tokens: