Searched refs:tok (Results 1 - 2 of 2) sorted by relevance

/art/cmdline/
H A Dtoken_range.h117 std::string tok; local
124 if (!tok.empty()) {
125 new_token_list.push_back(tok);
126 tok = "";
131 tok += c;
136 if (!tok.empty()) {
137 new_token_list.push_back(tok);
231 return RemoveIf([&](const std::string& tok) { return tok == token; });
290 const std::string& tok
[all...]
/art/tools/
H A Dcpplint.py3429 for tok in tokens:
3434 if Search(r'sizeof\(.+\)', tok): continue
3435 if Search(r'arraysize\(\w+\)', tok): continue
3437 tok = tok.lstrip('(')
3438 tok = tok.rstrip(')')
3439 if not tok: continue
3440 if Match(r'\d+', tok): continue
3441 if Match(r'0[xX][0-9a-fA-F]+', tok)
[all...]

Completed in 30 milliseconds