Home
last modified time | relevance | path

Searched refs:is_keyword (Results 1 – 3 of 3) sorted by relevance

/external/yapf/yapf/yapflib/
Dunwrapped_line.py210 return tok.is_keyword or tok.is_name or tok.is_number or tok.is_string
262 if ((right.is_keyword or right.is_name) and
263 (left.is_keyword or left.is_name)):
288 if left.is_keyword and _IsUnaryOperator(right):
320 if left.is_keyword and rval == '.' or lval == '.' and right.is_keyword:
Dformat_token.py289 def is_keyword(self): member in FormatToken
295 return self.node.type == token.NAME and not self.is_keyword
Dformat_decision_state.py250 if (pptoken and not pptoken.is_name and not pptoken.is_keyword and
430 if pprevious and not pprevious.is_keyword and not pprevious.is_name: