Home
last modified time | relevance | path

Searched refs:source_line (Results 1 – 16 of 16) sorted by relevance

/third_party/python/Lib/test/test_importlib/source/
Dtest_source_encoding.py34 source_line = "{0} = '{1}'\n".format(variable, character) variable in EncodingTest
49 source_lines.append(self.source_line.encode(encoding))
62 self.run_test(self.source_line.encode('utf-8'))
77 self.run_test(codecs.BOM_UTF8 + self.source_line.encode('utf-8'))
/third_party/python/Python/
D_warnings.c990 PyObject *source_line; in get_source_line() local
1032 source_line = PyList_GetItem(source_list, lineno-1); in get_source_line()
1033 Py_XINCREF(source_line); in get_source_line()
1035 return source_line; in get_source_line()
1052 PyObject *source_line = NULL; in warnings_warn_explicit() local
1068 source_line = get_source_line(module_globals, lineno); in warnings_warn_explicit()
1069 if (source_line == NULL && PyErr_Occurred()) { in warnings_warn_explicit()
1074 registry, source_line, sourceobj); in warnings_warn_explicit()
1075 Py_XDECREF(source_line); in warnings_warn_explicit()
/third_party/skia/third_party/externals/angle2/tools/android/modularization/convenience/
Dlookup_dep.py214 for source_line in sources_contents:
215 source_path = pathlib.Path(source_line.strip())
/third_party/selinux/libsepol/src/
Dassertion.c53 avrule->source_line, avrule->source_filename, avrule->line, policy_name(p), in report_failure()
184 avrule->source_line, avrule->source_filename, avrule->line, policy_name(p), in report_assertion_extended_permissions()
200 avrule->source_line, avrule->source_filename, avrule->line, policy_name(p), in report_assertion_extended_permissions()
Dlink.c1328 new_rule->source_line = cur->source_line; in copy_avrule_list()
Dexpand.c2661 avrule->source_line = source_rule->source_line; in copy_neverallow()
Dmodule_to_cil.c1195 cil_println(0, ";;* lmx %lu %s\n",avrule->source_line, avrule->source_filename); in avrule_list_to_cil()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DReactorDebugInfo.cpp96 location.line = frame.source_line(); in getCallerBacktrace()
/third_party/selinux/libsepol/include/sepol/policydb/
Dpolicydb.h298 unsigned long source_line; member
/third_party/python/Lib/test/
Dtest_traceback.py343 location, source_line = tb_lines[-2:]
346 self.assertTrue(source_line.startswith(' raise'))
/third_party/selinux/checkpolicy/
Dpolicy_define.c1624 avrule->source_line = source_lineno; in define_compute_type_helper()
2059 avrule->source_line = source_lineno; in define_te_avtab_xperms_helper()
2368 dest->source_line = src->source_line; in avrule_cpy()
2519 avrule->source_line = source_lineno; in define_te_avtab_helper()
/third_party/cef/libcef/renderer/
Dv8_impl.cc733 v8::MaybeLocal<v8::String> source_line = message->GetSourceLine(context); in CefV8ExceptionImpl() local
734 if (!source_line.IsEmpty()) in CefV8ExceptionImpl()
735 GetCefString(isolate, source_line.ToLocalChecked(), source_line_); in CefV8ExceptionImpl()
/third_party/python/Modules/expat/
Dxmlparse.c568 ptrdiff_t bytesMore, int source_line,
572 int source_line,
7273 const char *after, ptrdiff_t bytesMore, int source_line, in accountingReportDiff() argument
7280 levelsAwayFromRootParser, source_line, 10, ""); in accountingReportDiff()
7309 const char *after, int source_line, in accountingDiffTolerated() argument
7356 bytesMore, source_line, account); in accountingDiffTolerated()
/third_party/skia/third_party/externals/expat/expat/lib/
Dxmlparse.c568 ptrdiff_t bytesMore, int source_line,
572 int source_line,
7273 const char *after, ptrdiff_t bytesMore, int source_line, in accountingReportDiff() argument
7280 levelsAwayFromRootParser, source_line, 10, ""); in accountingReportDiff()
7309 const char *after, int source_line, in accountingDiffTolerated() argument
7356 bytesMore, source_line, account); in accountingDiffTolerated()
/third_party/selinux/libsepol/cil/src/
Dcil_binary.c4629 avrule->source_line = node->line; in __cil_init_sepol_avrule()
4634 avrule->source_line = hll_line + node->hll_offset - source_node->hll_offset - 1; in __cil_init_sepol_avrule()
/third_party/python/Doc/library/
Dast.rst94 ``source_line[node.col_offset : node.end_col_offset]``.