/external/tensorflow/tensorflow/core/framework/ |
D | allocator_registry.cc | 40 int source_line, const string& name, in Register() argument 54 << ":" << source_line in Register() 56 << existing->source_file << ":" << existing->source_line; in Register() 61 entry.source_line = source_line; in Register()
|
D | allocator_registry.h | 66 void Register(const char* source_file, int source_line, const string& name, 95 int source_line; member
|
/external/python/cpython3/Lib/test/test_importlib/source/ |
D | test_source_encoding.py | 34 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'))
|
/external/google-breakpad/src/google_breakpad/processor/ |
D | stack_frame.h | 63 source_line(), in StackFrame() 131 int source_line; member
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_op_metadata.cc | 40 if (metadata.source_line() != 0) { in OpMetadataToString() 41 result.push_back(absl::StrCat("source_line=", metadata.source_line())); in OpMetadataToString()
|
D | source_map_util.h | 35 op_metadata.source_line()); in InvalidParameterArgument()
|
D | local_service.cc | 130 return absl::StrFormat(" (%s:%d)", m.source_file(), m.source_line()); in CompileExecutables()
|
/external/google-breakpad/src/processor/ |
D | fast_source_line_resolver_unittest.cc | 164 frame.source_line == 0) in VerifyEmpty() 173 frame->source_line = 0; in ClearSourceLineInfo() 225 ASSERT_EQ(frame.source_line, 0); in TEST_F() 235 ASSERT_EQ(frame.source_line, 44); in TEST_F() 255 ASSERT_EQ(frame.source_line, 0); in TEST_F() 266 ASSERT_EQ(frame.source_line, 0); in TEST_F() 388 ASSERT_EQ(frame.source_line, 21); in TEST_F()
|
D | source_line_resolver_base_types.h | 71 Line(MemAddr addr, MemAddr code_size, int file_id, int source_line) in Line() 75 , line(source_line) { } in Line()
|
D | basic_source_line_resolver_unittest.cc | 154 frame.source_line == 0) in VerifyEmpty() 163 frame->source_line = 0; in ClearSourceLineInfo() 197 ASSERT_EQ(frame.source_line, 0); in TEST_F() 207 ASSERT_EQ(frame.source_line, 44); in TEST_F() 228 ASSERT_EQ(frame.source_line, 0); in TEST_F() 239 ASSERT_EQ(frame.source_line, 0); in TEST_F() 361 ASSERT_EQ(frame.source_line, 21); in TEST_F()
|
D | minidump_processor_unittest.cc | 536 ASSERT_EQ(stack->frames()->at(0)->source_line, 58); in TEST_F() 543 ASSERT_EQ(stack->frames()->at(1)->source_line, 65); in TEST_F() 552 ASSERT_EQ(stack->frames()->at(2)->source_line, 327); in TEST_F() 561 ASSERT_EQ(stack->frames()->at(3)->source_line, 0); in TEST_F()
|
D | stackwalker_address_list_unittest.cc | 183 ASSERT_EQ(1, frames->at(0)->source_line); in TEST_F()
|
D | fast_source_line_resolver.cc | 98 frame->source_line = line->line; in LookupAddress()
|
/external/ruy/ruy/ |
D | trace.h | 68 int source_line = 0; member 90 void set_current_source_line(int source_line) { in set_current_source_line() argument 91 current_source_line_ = source_line; in set_current_source_line() 102 entry.source_line = current_source_line_; in Write() 267 formatted("%s:%d", base_name, entry.source_line); in Print() 356 RuyTraceScope(const char* source_file, int source_line, in RuyTraceScope() argument 359 source_line_(source_line), in RuyTraceScope()
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | check_numerics_callback.py | 205 for filepath, lineno, function_name, source_line in traceback[ 214 if source_line is not None: 215 message += "%s| %s\n" % (user_code_indicator, source_line)
|
/external/python/cpython3/Python/ |
D | _warnings.c | 996 PyObject *source_line; in get_source_line() local 1038 source_line = PyList_GetItem(source_list, lineno-1); in get_source_line() 1039 Py_XINCREF(source_line); in get_source_line() 1041 return source_line; in get_source_line() 1058 PyObject *source_line = NULL; in warnings_warn_explicit() local 1074 source_line = get_source_line(module_globals, lineno); in warnings_warn_explicit() 1075 if (source_line == NULL && PyErr_Occurred()) { in warnings_warn_explicit() 1080 registry, source_line, sourceobj); in warnings_warn_explicit() 1081 Py_XDECREF(source_line); in warnings_warn_explicit()
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | xla_client.py | 166 def __init__(self, op_type='', op_name='', source_file='', source_line=0): argument 170 self.source_line = source_line 181 source_line=lineno)
|
D | types.h | 406 pybind11::handle source_line = getattr(handle, "source_line"); 407 if (!source_line.is_none()) { 408 value.set_source_line(source_line.cast<xla::int32>());
|
/external/tensorflow/tensorflow/compiler/mlir/xla/tests/translate/ |
D | location.hlotxt | 15 …tadata={op_type="Add" op_name="embedded_inference/Add_1", source_file="source.txt", source_line=17}
|
D | location_to_op_metadata.mlir | 43 // CHECK-SAME: metadata={source_file="file_name" source_line=2}
|
/external/python/cpython2/Lib/test/ |
D | test_traceback.py | 205 banner, location, source_line = tb_lines 208 self.assertTrue(source_line.startswith(' raise'))
|
/external/angle/tools/android/modularization/convenience/ |
D | lookup_dep.py | 214 for source_line in sources_contents: 215 source_path = pathlib.Path(source_line.strip())
|
/external/python/cpython2/Python/ |
D | _warnings.c | 652 PyObject *source_line; in warnings_warn_explicit() local 695 source_line = PyList_GetItem(source_list, lineno-1); in warnings_warn_explicit() 696 if (!source_line) { in warnings_warn_explicit() 703 registry, source_line); in warnings_warn_explicit()
|
/external/swiftshader/src/Reactor/ |
D | ReactorDebugInfo.cpp | 96 location.line = frame.source_line(); in getCallerBacktrace()
|
/external/selinux/libsepol/src/ |
D | assertion.c | 45 avrule->source_line, avrule->source_filename, avrule->line, in report_failure() 178 avrule->source_line, avrule->source_filename, avrule->line, in report_assertion_extended_permissions() 195 avrule->source_line, avrule->source_filename, avrule->line, in report_assertion_extended_permissions()
|