Home
last modified time | relevance | path

Searched refs:name_file (Results 1 – 4 of 4) sorted by relevance

/external/fonttools/Tests/misc/
Dfilenames_test.py38 name_file = "N_A_M_E_"
41 prefix + name_file + suffix)
47 name_file = "N_A_M_E_"
54 self.assertEqual(generated, prefix + name_file + suffix)
60 prefix + name_file + collision_avoidance1 + suffix)
65 prefix + name_file + collision_avoidance2+ suffix)
/external/autotest/client/cros/input_playback/
Dinput_playback.py409 name_file = os.path.join(class_folder, 'device', 'name')
410 if os.path.isfile(name_file):
411 name = self._get_contents_of_file(name_file)
/external/tensorflow/tensorflow/lite/tools/benchmark/
Dbenchmark_tflite_model.cc157 std::vector<std::string> name_file = Split(val, ':'); in PopulateInputValueFiles() local
158 if (name_file.size() != 2) { in PopulateInputValueFiles()
164 int layer_info_idx = FindLayerInfoIndex(info, name_file[0], names_string); in PopulateInputValueFiles()
172 info->at(layer_info_idx).input_file_path = name_file[1]; in PopulateInputValueFiles()
/external/rust/crates/bindgen/src/
Dlib.rs93 fn file_is_cpp(name_file: &str) -> bool { in file_is_cpp()
94 name_file.ends_with(".hpp") || in file_is_cpp()
95 name_file.ends_with(".hxx") || in file_is_cpp()
96 name_file.ends_with(".hh") || in file_is_cpp()
97 name_file.ends_with(".h++") in file_is_cpp()