Home
last modified time | relevance | path

Searched refs:method_names (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/lite/
Dinterpreter.h295 std::vector<const std::string*> method_names; in signature_def_names() local
296 method_names.reserve(signature_defs_.size()); in signature_def_names()
298 method_names.emplace_back(&sig_def.method_name); in signature_def_names()
300 return method_names; in signature_def_names()
/external/libwebsockets/lib/roles/http/server/
Daccess-log.c37 extern const char * const method_names[];
76 me = method_names[meth]; in lws_prepare_access_log_info()
Dserver.c27 const char * const method_names[] = { variable
61 (void)method_names; in _lws_vhost_init_server()
1390 if (meth < 0 || meth >= (int)LWS_ARRAY_SIZE(method_names)) in lws_http_action()
1401 lwsl_info("Method: '%s' (%d), request for '%s'\n", method_names[meth], in lws_http_action()
/external/tensorflow/tensorflow/python/keras/distribute/
Dmulti_worker_test.py140 def wrap_methods(self, method_names): argument
146 for method_name in method_names:
/external/autotest/server/site_tests/firmware_FAFTRPC/
Dfirmware_FAFTRPC.py331 method_names = get_rpc_method_names_from_test_case(test_case)
339 for method_name in method_names:
/external/rust/crates/bindgen/src/codegen/
Dmod.rs2128 let mut method_names = Default::default(); in codegen() localVariable
2135 &mut method_names, in codegen()
2153 &mut method_names, in codegen()
2166 &mut method_names, in codegen()
2254 method_names: &mut HashMap<String, usize>, in codegen_method()
2265 method_names: &mut HashMap<String, usize>, in codegen_method()
2322 let count = method_names.entry(name.clone()).or_insert(0); in codegen_method()
/external/libwebsockets/lib/roles/h2/
Dhttp2.c1316 static const char * const method_names[] = { variable
1624 for (n = 0; n < (int)LWS_ARRAY_SIZE(method_names); n++) in lws_h2_parse_end_of_frame()
1625 if (!strcasecmp(p, method_names[n])) { in lws_h2_parse_end_of_frame()
/external/tensorflow/tensorflow/tools/compatibility/
Dtf_upgrade_v2_test.py349 method_names = list(full_dict.keys())
350 for method_name in method_names: