Home
last modified time | relevance | path

Searched refs:is_name (Results 1 – 4 of 4) sorted by relevance

/third_party/cef/tools/yapf/yapf/yapflib/
Dunwrapped_line.py181 return tok.is_keyword or tok.is_name or tok.is_number or tok.is_string
232 if ((right.is_keyword or right.is_name) and
233 (left.is_keyword or left.is_name)):
259 (right.is_name or right.is_number or rval == '(')):
304 if left.is_name and rval in '([':
369 if prev_token.is_name and cval == '(':
372 if prev_token.is_name and cval == '[':
375 if prev_token.is_name and cval == '.':
Dformat_decision_state.py199 if (current.is_name or current.is_string) and previous.value == ',':
215 if current.is_name:
217 while tok and (tok.is_name or tok.value == '.'):
240 opening.previous_token.is_name):
305 if opening and opening.previous_token and opening.previous_token.is_name:
310 if ((current.is_name or current.value in {'*', '**'}) and
317 (opening.previous_token.is_name or
325 if (not (token.is_name or token.value in {'*', '**'}) and
335 if (current.is_name and pprevious and pprevious.is_name and
355 if pprevious and not pprevious.is_keyword and not pprevious.is_name:
[all …]
Dformat_token.py252 def is_name(self): member in FormatToken
/third_party/elfutils/src/
Dobjdump.c109 bool is_name; member
187 newp->is_name = false; in parse_opt()
191 newp->is_name = true; in parse_opt()
452 if (runp->is_name) in section_match()