Home
last modified time | relevance | path

Searched refs:orig_name (Results 1 – 13 of 13) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/scripts/
Dgen_dynamic_list.py84 orig_name = match.group(1)
85 if orig_name in function_set and (args.version_list or orig_name not in versioned_functions):
86 result.append(orig_name)
/external/autotest/database/
Ddb_utils.py37 for orig_name, new_name in mapping.iteritems():
38 manager.execute('RENAME TABLE `%s` TO `%s`' % (orig_name, new_name))
/external/mesa3d/src/compiler/glsl/
Dlink_varyings.h134 return this->orig_name; in name()
180 const char *orig_name; variable
Dlink_varyings.cpp980 this->orig_name = input; in init()
1120 this->orig_name, this->array_subscript, in assign_location()
1142 this->orig_name, this->var_name); in assign_location()
1166 this->orig_name); in assign_location()
1295 this->orig_name, xfb_offset * 4); in store()
1353 this->orig_name); in store()
1400 this->orig_name); in find_candidate()
/external/python/cpython2/Modules/_sqlite/
Dmodule.c178 PyObject* orig_name; in module_register_converter() local
183 if (!PyArg_ParseTuple(args, "SO", &orig_name, &callable)) { in module_register_converter()
188 name = PyObject_CallMethod(orig_name, "upper", ""); in module_register_converter()
/external/python/cpython3/Modules/_sqlite/
Dmodule.c195 PyObject* orig_name; in module_register_converter() local
201 if (!PyArg_ParseTuple(args, "UO", &orig_name, &callable)) { in module_register_converter()
206 name = _PyObject_CallMethodId(orig_name, &PyId_upper, NULL); in module_register_converter()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/translate/
Dexport_graphdef.cc585 std::string orig_name(output_names[it.index()]); in Convert() local
586 auto tensor_id = ParseTensorName(orig_name); in Convert()
613 std::string orig_name(input_names[it.index()]); in Convert() local
614 std::string name = LegalizeNodeName(orig_name); in Convert()
/external/selinux/libsepol/cil/src/
Dandroid.c18 char *orig_name; member
96 datum->orig_name = DATUM(node->data)->name; in __extract_attributees_helper()
97 key = datum->orig_name; in __extract_attributees_helper()
/external/python/cpython3/Lib/
Dtyping.py660 orig_name = origin.__name__
661 name = _normalize_alias.get(orig_name, orig_name)
/external/tcpdump/
Dtcpdump.c667 MakeFilename(char *buffer, char *orig_name, int cnt, int max_chars) in MakeFilename() argument
685 strftime(filename, PATH_MAX, orig_name, local_tm); in MakeFilename()
687 strncpy(filename, orig_name, PATH_MAX); in MakeFilename()
/external/wpa_supplicant_8/wpa_supplicant/
Dconfig_file.c1628 const char *orig_name = name; in wpa_config_write() local
1696 if (chmod_ret != 0 || rename(tmp_name, orig_name) != 0) in wpa_config_write()
1703 orig_name, ret ? "un" : ""); in wpa_config_write()
/external/python/cpython2/Lib/test/support/
D__init__.py149 for orig_name, module in orig_modules.items():
150 sys.modules[orig_name] = module
/external/python/cpython3/Lib/test/support/
D__init__.py293 for orig_name, module in orig_modules.items():
294 sys.modules[orig_name] = module