HomeSort by relevance Sort by last modified time
    Searched refs:module_name (Results 26 - 50 of 179) sorted by null

12 3 4 5 6 7 8

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
cobject.h 72 PyAPI_FUNC(void *) PyCObject_Import(char *module_name, char *cobject_name);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
cobject.h 72 PyAPI_FUNC(void *) PyCObject_Import(char *module_name, char *cobject_name);
  /external/chromium_org/build/android/pylib/host_driven/
tests_annotations.py 24 module_name = os.path.splitext(os.path.basename(
26 qualified_function_name = '.'.join([module_name, function.func_name])
test_info_collection.py 28 Many filters and lists presuppose a format of module_name.testMethodName.
40 module_name = os.path.splitext(
42 return '.'.join([module_name, runnable_name])
  /external/chromium_org/tools/telemetry/telemetry/core/
discover.py 35 module_name = re.sub(r'[/\\]', '.', os.path.splitext(module_rel_path)[0])
38 module = __import__(module_name, fromlist=[True])
59 dict of {module_name: class} or {underscored_class_name: class}
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 282 char* module_name; local
314 module_name = strrchr(module_path,'/');
315 if (module_name == NULL)
316 module_name = module_path;
318 module_name += 1;
319 if (*module_name == '\0') {
322 module_name = module_path;
327 snprintf(sym_file, sizeof(sym_file), "%s/%s", parser->sym_root, module_name);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
__init__.py 77 def __init__(self, module_name):
78 self.__name__ = 'email.' + module_name
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
__init__.py 77 def __init__(self, module_name):
78 self.__name__ = 'email.' + module_name
  /frameworks/compile/libbcc/lib/Renderscript/
RSInfoExtractor.cpp 132 const char *module_name = module.getModuleIdentifier().c_str(); local
186 ALOGE("Out of memory when create RSInfo object for %s!", module_name);
193 module_name);
216 module_name);
234 module_name);
251 module_name);
286 export_foreach_signature->getNumOperands(), module_name);
308 signature_string.str().c_str(), name.str().c_str(), module_name);
319 " are both NULL in %s! (skip)", i, module_name);
324 "#rs_export_foreach"), module_name);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_py3kwarn.py 12 def check_deprecated_module(module_name):
17 def check_deprecated_module(module_name):
21 return any(module_name in msg and ' removed' in msg
351 def check_removal(self, module_name, optional=False):
354 with CleanImport(module_name), warnings.catch_warnings():
360 __import__(module_name, level=0)
362 self.assertIn(module_name, exc.args[0],
364 % module_name)
368 "ImportError.".format(module_name))
372 if not check_deprecated_module(module_name)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_py3kwarn.py 12 def check_deprecated_module(module_name):
17 def check_deprecated_module(module_name):
21 return any(module_name in msg and ' removed' in msg
351 def check_removal(self, module_name, optional=False):
354 with CleanImport(module_name), warnings.catch_warnings():
360 __import__(module_name, level=0)
362 self.assertIn(module_name, exc.args[0],
364 % module_name)
368 "ImportError.".format(module_name))
372 if not check_deprecated_module(module_name)
    [all...]
  /external/chromium/chrome/browser/ui/
crypto_module_password_dialog.h 43 void ShowCryptoModulePasswordDialog(const std::string& module_name,
  /external/chromium_org/chrome/browser/ui/
crypto_module_password_dialog.h 43 const std::string& module_name,
  /external/chromium_org/chrome/test/base/
module_system_test.h 48 // |module_name|.
49 void RegisterTestFile(const std::string& module_name,
  /external/chromium_org/third_party/freetype/include/freetype/
ftmodapi.h 144 /* module_name :: The name of the module. */
163 const FT_String* module_name; member in struct:FT_Module_Class_
213 /* module_name :: The module's name (as an ASCII string). */
224 const char* module_name );
  /external/compiler-rt/lib/asan/
asan_interface_internal.h 29 // v1=>v2: added 'module_name' to __asan_global
42 const char *module_name; // Module name as a C string. This pointer is a member in struct:__asan_global
56 void __asan_before_dynamic_init(const char *module_name)
asan_globals.cc 68 g.module_name, g.has_dynamic_init);
169 void __asan_before_dynamic_init(const char *module_name) {
175 CHECK(module_name);
179 Printf("DynInitPoison module: %s\n", module_name);
185 if (g->module_name != module_name)
  /external/chromium/base/win/
pe_image.cc 347 LPCSTR module_name = reinterpret_cast<LPCSTR>(RVAToAddr(import->Name)); local
353 if (!callback(*this, module_name, name_table, iat, cookie))
361 LPCSTR module_name,
382 if (!callback(*this, module_name, ordinal, name, hint, iat, cookie))
409 LPCSTR module_name; local
416 module_name = reinterpret_cast<LPCSTR>(
430 module_name = reinterpret_cast<LPCSTR>(delay_descriptor->rvaDLLName);
441 if (!callback(*this, delay_descriptor, module_name, name_table, iat,
451 LPCSTR module_name,
487 if (!callback(*this, module_name, ordinal, name, hint, iat, cookie)
    [all...]
  /external/elfutils/libdwfl/
linux-proc-maps.c 293 const char *module_name, Dwarf_Addr base,
296 if (module_name[0] == '/')
298 int fd = open64 (module_name, O_RDONLY);
301 *file_name = strdup (module_name);
312 if (sscanf (module_name, "[vdso: %d]", &pid) == 1)
offline.c 212 char *module_name = NULL; local
215 else if (unlikely (asprintf (&module_name, "%s:%s", name, h->ar_name) < 0))
221 name = module_name;
230 free (module_name);
245 free (module_name);
  /external/oprofile/daemon/liblegacy/
opd_kernel.c 446 char const * module_name = 0; local
448 module_name = module->image->name;
449 if (!module_name) {
452 module_name = module->name;
454 image = opd_get_kernel_image(module_name, app_name, proc->tid, proc->tgid);
  /external/oprofile/daemon/
opd_kernel.c 135 * module_name 16480 1 dependencies Live 0xe091e000
147 char module_name[256+1]; local
179 module_name, &module_size, ref_count,
187 image = opd_create_module(module_name, start_address,
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
compile_frontend.py 413 module_name = sys.argv[1] variable
414 if module_name != "all":
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
factory.py 108 module_name, class_name = port_class.rsplit('.', 1)
109 module = __import__(module_name, globals(), locals(), [], -1)
  /external/chromium_org/ui/base/cursor/
cursor_loader_win.cc 168 void CursorLoaderWin::SetCursorResourceModule(const string16& module_name) {
169 g_cursor_resource_module_name.Get() = module_name;

Completed in 3509 milliseconds

12 3 4 5 6 7 8