Searched refs:is_keyword (Results 1 – 10 of 10) sorted by relevance
210 return tok.is_keyword or tok.is_name or tok.is_number or tok.is_string262 if ((right.is_keyword or right.is_name) and263 (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:
289 def is_keyword(self): member in FormatToken295 return self.node.type == token.NAME and not self.is_keyword
250 if (pptoken and not pptoken.is_name and not pptoken.is_keyword and430 if pprevious and not pprevious.is_keyword and not pprevious.is_name:
9 unsigned is_keyword : 1; member
78 tok->is_keyword = 0; in isl_token_new()143 else if (tok->is_keyword) in isl_stream_error()492 tok->is_keyword = 1; in next_token()
996 if (tok->type != ISL_TOKEN_IDENT && !tok->is_keyword) { in next_is_tuple()1460 if (tok->type == ISL_TOKEN_IDENT || tok->is_keyword) { in read_tuple_space()3426 if (tok && (tok->type == ISL_TOKEN_IDENT || tok->is_keyword)) { in read_aff_domain()
1948 _PyPegen_keyword_or_starred(Parser *p, void *element, int is_keyword) in _PyPegen_keyword_or_starred() argument1955 a->is_keyword = is_keyword; in _PyPegen_keyword_or_starred()1966 if (!k->is_keyword) { in _seq_number_of_starred_exprs()1989 if (!k->is_keyword) { in _PyPegen_seq_extract_starred_exprs()2013 if (k->is_keyword) { in _PyPegen_seq_delete_starred_exprs()
111 int is_keyword; member
773 template <typename T> using is_keyword = std::is_base_of<arg, T>; variable777 is_keyword, is_s_unpacking, is_ds_unpacking779 template <typename T> using is_keyword_or_ds = satisfies_any_of<T, is_keyword, is_ds_unpacking>;
208 has_arg_annotations = any_of<is_keyword<Extra>...>::value; in PYBIND11_NAMESPACE_BEGIN()