Searched refs:tokens (Results 1 – 5 of 5) sorted by relevance
63 def setHandlerStyle(tokens): argument65 if len(tokens) != 2:67 style = tokens[1]77 def setHandlerSize(tokens): argument81 if len(tokens) != 2:87 handler_size_bytes = bytes = int(tokens[1])102 def importFile(tokens): argument103 if len(tokens) != 2:105 source = tokens[1]107 appendSourceFile(tokens[1], getGlobalSubDict(), asm_fp, None)[all …]
402 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()
77 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()
84 For example with `-orange:_` the parse would know to check all tokens in an `argv` list for the171 an option to ignore any argument tokens that are not known to the parser. This is done with the
3426 tokens = re.split(r'\s|\+|\-|\*|\/|<<|>>]', match.group(3))3429 for tok in tokens: