Home
last modified time | relevance | path

Searched refs:orig_name (Results 1 – 14 of 14) 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/llvm-project/compiler-rt/lib/sanitizer_common/scripts/
Dgen_dynamic_list.py108 orig_name = match.group(1)
109 if orig_name in function_set and (args.version_list or orig_name not in versioned_functions):
110 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_CallMethodIdNoArgs(orig_name, &PyId_upper); in module_register_converter()
/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/perfetto/src/trace_processor/metrics/chrome/
Drail_modes.sql462 orig_name TEXT UNIQUE, field
/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.c1551 const char *orig_name = name; in wpa_config_write() local
1619 if (chmod_ret != 0 || rename(tmp_name, orig_name) != 0) in wpa_config_write()
1626 orig_name, ret ? "un" : ""); in wpa_config_write()
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangExpressionParser.cpp1298 llvm::Module *module, const char *orig_name) { in FindFunctionInModule() argument
1301 if (name.find(orig_name) != StringRef::npos) { in FindFunctionInModule()
/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__.py286 for orig_name, module in orig_modules.items():
287 sys.modules[orig_name] = module