Home
last modified time | relevance | path

Searched refs:from_name (Results 1 – 12 of 12) sorted by relevance

/external/kmod/testsuite/
Dtest-new-module.c30 static int from_name(const struct test *t) in from_name() function
63 DEFINE_TEST(from_name,
/external/libevent/test/
Dregress_rpc.c284 EVTAG_ASSIGN(msg, from_name, "niels"); in rpc_basic_message()
474 EVTAG_ASSIGN(msg, from_name, "niels"); in rpc_basic_client()
549 EVTAG_ASSIGN(msg, from_name, "niels"); in rpc_basic_queued_client()
654 EVTAG_ASSIGN(msg, from_name, "niels"); in rpc_basic_client_with_pause()
704 EVTAG_ASSIGN(msg, from_name, "niels"); in rpc_client_timeout()
749 EVTAG_ASSIGN(msg, from_name, "niels"); in rpc_test()
808 if (!EVTAG_HAS(msg2, from_name) || in rpc_test()
Dregress.rpc4 string /* sender */ from_name = 1; /* be verbose */
/external/swiftshader/third_party/llvm-7.0/llvm/utils/
Dunicode-case-fold.py37 from_name = m.group(3)
41 yield from_char, to_char, from_name
/external/clang/bindings/python/tests/cindex/
Dtest_location.py49 file = File.from_name(tu, 't.c')
85 file = File.from_name(tu, 't.c')
Dtest_file.py6 file = File.from_name(tu, "t.c")
/external/libkmsxx/py/tests/
Dhpd.py12 dev = pyudev.Devices.from_name(context, 'drm', 'card0')
/external/v8/tools/ignition/
Dbytecode_dispatches_report.py132 for from_index, from_name in enumerate(labels):
133 current_row = dispatches_table[from_name];
/external/v8/src/interpreter/
Dinterpreter.cc294 std::string from_name = Bytecodes::ToString(from_bytecode); in GetDispatchCountersObject() local
296 v8::String::NewFromUtf8(isolate, from_name.c_str(), in GetDispatchCountersObject()
/external/python/cpython3/Lib/importlib/
D_bootstrap.py1033 from_name = '{}.{}'.format(module.__name__, x)
1035 _call_with_frames_removed(import_, from_name)
1040 if (exc.name == from_name and
1041 sys.modules.get(from_name, _NEEDS_LOADING) is not None):
/external/tensorflow/tensorflow/tools/compatibility/
Dtf_upgrade_v2_test.py225 for from_name, _ in keyword_renames.items():
227 from_name, arg_names_v1,
229 (from_name, name, str(arg_names_v1)))
279 ["%s=%d" % (from_name, from_index)
280 for from_index, from_name in enumerate(arg_names_v1)])
/external/clang/bindings/python/clang/
Dcindex.py2479 return File.from_name(self, filename)
2673 def from_name(translation_unit, file_name): member in File