Searched refs:_PyAST_Constant (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Grammar/ |
D | python.gram | 275 | 'None' { _PyAST_Constant(Py_None, NULL, EXTRA) } 276 | 'True' { _PyAST_Constant(Py_True, NULL, EXTRA) } 277 | 'False' { _PyAST_Constant(Py_False, NULL, EXTRA) } 688 | 'True' { _PyAST_Constant(Py_True, NULL, EXTRA) } 689 | 'False' { _PyAST_Constant(Py_False, NULL, EXTRA) } 690 | 'None' { _PyAST_Constant(Py_None, NULL, EXTRA) } 696 | '...' { _PyAST_Constant(Py_Ellipsis, NULL, EXTRA) }
|
/third_party/python/Parser/ |
D | string_parser.c | 1043 return _PyAST_Constant(s, kind, first_token->lineno, first_token->col_offset, in make_str_node_and_del()
|
D | pegen.c | 1153 return _PyAST_Constant(c, NULL, t->lineno, t->col_offset, t->end_lineno, in _PyPegen_number_token() 2423 return _PyAST_Constant(bytes_str, NULL, first->lineno, in _PyPegen_concatenate_strings()
|
D | parser.c | 6428 _res = _PyAST_Constant ( Py_None , NULL , EXTRA ); in literal_expr_rule() 6461 _res = _PyAST_Constant ( Py_True , NULL , EXTRA ); in literal_expr_rule() 6494 _res = _PyAST_Constant ( Py_False , NULL , EXTRA ); in literal_expr_rule() 14848 _res = _PyAST_Constant ( Py_True , NULL , EXTRA ); in atom_rule() 14881 _res = _PyAST_Constant ( Py_False , NULL , EXTRA ); in atom_rule() 14914 _res = _PyAST_Constant ( Py_None , NULL , EXTRA ); in atom_rule() 15050 _res = _PyAST_Constant ( Py_Ellipsis , NULL , EXTRA ); in atom_rule()
|
/third_party/python/Include/internal/ |
D | pycore_ast.h | 763 expr_ty _PyAST_Constant(constant value, string kind, int lineno, int
|
/third_party/python/Python/ |
D | Python-ast.c | 3009 _PyAST_Constant(constant value, string kind, int lineno, int col_offset, int in _PyAST_Constant() function 9153 *out = _PyAST_Constant(value, kind, lineno, col_offset, end_lineno, in obj2ast_expr()
|