Home
last modified time | relevance | path

Searched defs:col_offset (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Python/
DPython-ast.c1946 type_comment, int lineno, int col_offset, int end_lineno, in _PyAST_FunctionDef()
1980 string type_comment, int lineno, int col_offset, int in _PyAST_AsyncFunctionDef()
2014 int lineno, int col_offset, int end_lineno, int end_col_offset, in _PyAST_ClassDef()
2040 _PyAST_Return(expr_ty value, int lineno, int col_offset, int end_lineno, int in _PyAST_Return()
2057 _PyAST_Delete(asdl_expr_seq * targets, int lineno, int col_offset, int in _PyAST_Delete()
2075 lineno, int col_offset, int end_lineno, int end_col_offset, in _PyAST_Assign()
2100 col_offset, int end_lineno, int end_col_offset, PyArena *arena) in _PyAST_AugAssign()
2134 int lineno, int col_offset, int end_lineno, int in _PyAST_AnnAssign()
2165 orelse, string type_comment, int lineno, int col_offset, int in _PyAST_For()
2198 col_offset, int end_lineno, int end_col_offset, PyArena *arena) in _PyAST_AsyncFor()
[all …]
Dsymtable.c60 void *key, int lineno, int col_offset, in ste_new()
980 void *ast, int lineno, int col_offset, in symtable_enter_block()
1035 int lineno, int col_offset, int end_lineno, int end_col_offset) in symtable_add_def_helper()
1121 int lineno, int col_offset, int end_lineno, int end_col_offset) in symtable_add_def()
1178 int col_offset, int end_lineno, int end_col_offset) in symtable_record_directive()
1974 int col_offset = a->col_offset; in symtable_visit_alias() local
Derrors.c1575 PyErr_SyntaxLocationObjectEx(PyObject *filename, int lineno, int col_offset, in PyErr_SyntaxLocationObjectEx()
1692 PyErr_SyntaxLocationObject(PyObject *filename, int lineno, int col_offset) { in PyErr_SyntaxLocationObject()
1697 PyErr_RangedSyntaxLocationObject(PyObject *filename, int lineno, int col_offset, in PyErr_RangedSyntaxLocationObject()
1703 PyErr_SyntaxLocationEx(const char *filename, int lineno, int col_offset) in PyErr_SyntaxLocationEx()
/third_party/python/Parser/
Dpegen_errors.c68 Py_ssize_t col_offset = -1; in _Pypegen_tokenizer_error() local
216 Py_ssize_t col_offset; in _PyPegen_raise_error() local
266 Py_ssize_t lineno, Py_ssize_t col_offset, in _PyPegen_raise_error_known_location()
Dpegen.c157 byte_offset_to_character_offset(PyObject *line, Py_ssize_t col_offset) in byte_offset_to_character_offset()
345 Py_ssize_t col_offset = -1; in tokenizer_error() local
403 Py_ssize_t col_offset; in _PyPegen_raise_error() local
453 Py_ssize_t lineno, Py_ssize_t col_offset, in _PyPegen_raise_error_known_location()
701 int col_offset = (start != NULL && start >= line_start) ? (int)(start - line_start) : -1; in initialize_token() local
1665 _PyPegen_alias_for_star(Parser *p, int lineno, int col_offset, int end_lineno, in _PyPegen_alias_for_star()
2575 int lineno, int col_offset, int end_lineno, in _PyPegen_collect_call_seqs()
Dpegen.h37 int lineno, col_offset, end_lineno, end_col_offset; member
160 Py_ssize_t lineno, Py_ssize_t col_offset, in RAISE_ERROR_KNOWN_LOCATION()
Dtokenizer.c1077 int col_offset, int end_col_offset, in _syntaxerror_range()
1138 int col_offset, int end_col_offset, in syntaxerror_known_range()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/
Dextract_image_patches_impl.cu43 const int64_t col_offset = patch_offset - row_offset * row_stride; in ExtractImagePatches() local
/third_party/python/Include/internal/
Dpycore_ast.h327 int col_offset; member
484 int col_offset; member
508 int col_offset; member
528 int col_offset; member
537 int col_offset; member
546 int col_offset; member
609 int col_offset; member
Dpycore_ast_state.h170 PyObject *col_offset; member
/third_party/ffmpeg/libavformat/
Daaxdec.c236 int64_t col_offset; in aax_read_header() local
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/int8/
Dmatmul_int8.c107 size_t col_offset = (size_t)col; in RowMajor2Row16x4MajorInt8() local
/third_party/python/Lib/
Dast.py203 def _fix(node, lineno, col_offset, end_lineno, end_col_offset): argument