HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 276 - 300 of 435) sorted by null

<<1112131415161718

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_compile.py 475 import __package__.module namespace
503 self.assertTrue(type(ast) == _ast.Module)
517 ast = _ast.Module()
test_cpickle.py 50 module = cPickle variable in class:cPickleTests
test_site.py 285 print>>FILE, "#import @bad module name" namespace
328 for module in (sys, os, __builtin__):
330 self.assertTrue(os.path.isabs(module.__file__), repr(module))
test_xpickle.py 2 # test_cpickle does the same, but via the cPickle module.
3 # This test covers the other two cases, making pickles with one module and
22 # "provides" a pickletester module for older versions of Python that may be
76 module = None variable in class:AbstractCompatTests
82 self.assertTrue(self.module)
104 data = self.module.dumps((proto, obj), proto)
118 return self.module.loads(input)
185 module = cPickle variable in class:.CPicklePython24Compat
190 # nontrivially monkeypatching the pickletester module in the worker.
199 module = pickl variable in class:PicklePython24Compat
210 module = cPickle variable in class:.CPicklePython25Compat
216 module = pickle variable in class:PicklePython25Compat
227 module = cPickle variable in class:.CPicklePython26Compat
233 module = pickle variable in class:PicklePython26Compat
    [all...]
  /prebuilts/python/linux-x86/2.7.5/bin/
smtpd.py 542 'Cannot import module "pwd"; try running with -n option.' namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtpd.py 542 'Cannot import module "pwd"; try running with -n option.' namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bisect.py 7 # and the Python implementation of the module.
15 # Now we can import the module and get the pure Python implementation.
22 # This is now the module with the C implementation.
49 module = None variable in class:TestBisect
53 (self.module.bisect_right, [], 1, 0),
54 (self.module.bisect_right, [1], 0, 0),
55 (self.module.bisect_right, [1], 1, 1),
56 (self.module.bisect_right, [1], 2, 1),
57 (self.module.bisect_right, [1, 1], 0, 0),
58 (self.module.bisect_right, [1, 1], 1, 2)
225 module = py_bisect variable in class:TestBisectPython
228 module = c_bisect variable in class:TestBisectC
233 module = None variable in class:TestInsort
262 module = py_bisect variable in class:TestInsortPython
265 module = c_bisect variable in class:TestInsortC
286 module = None variable in class:TestErrorHandling
315 module = py_bisect variable in class:TestErrorHandlingPython
318 module = c_bisect variable in class:TestErrorHandlingC
    [all...]
test_compile.py 475 import __package__.module namespace
503 self.assertTrue(type(ast) == _ast.Module)
517 ast = _ast.Module()
test_cpickle.py 50 module = cPickle variable in class:cPickleTests
test_site.py 285 print>>FILE, "#import @bad module name" namespace
328 for module in (sys, os, __builtin__):
330 self.assertTrue(os.path.isabs(module.__file__), repr(module))
test_xpickle.py 2 # test_cpickle does the same, but via the cPickle module.
3 # This test covers the other two cases, making pickles with one module and
22 # "provides" a pickletester module for older versions of Python that may be
76 module = None variable in class:AbstractCompatTests
82 self.assertTrue(self.module)
104 data = self.module.dumps((proto, obj), proto)
118 return self.module.loads(input)
185 module = cPickle variable in class:.CPicklePython24Compat
190 # nontrivially monkeypatching the pickletester module in the worker.
199 module = pickl variable in class:PicklePython24Compat
210 module = cPickle variable in class:.CPicklePython25Compat
216 module = pickle variable in class:PicklePython25Compat
227 module = cPickle variable in class:.CPicklePython26Compat
233 module = pickle variable in class:PicklePython26Compat
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
CameraActivity.java     [all...]
  /build/tools/releasetools/
common.py 542 Path to the python module containing device-specific
566 flags. docstring is the calling module's docstring, to be displayed
735 module = None variable in class:DeviceSpecificParams
739 module."""
744 if self.module is None:
756 self.module = imp.load_module("device_specific", *info)
758 print "unable to load device-specific module; assuming none"
761 """Call the named function in the device-specific module, passing
763 the DeviceSpecific object itself. If there is no module, or the
764 module does not define the function, return the value of th
    [all...]
  /external/checkpolicy/test/
dismod.c 35 #include <sepol/policydb/module.h>
306 * they can never be required by a module, use this
751 policydb_t module, *mods = &module; local
765 fprintf(out_fp, "Reading module...\n");
772 if (module.policy_type != POLICY_MOD) {
773 fprintf(stderr, "This file is not a loadable policy module.\n");
776 if (policydb_index_classes(&module) ||
777 policydb_index_others(NULL, &module, 0)) {
778 fprintf(stderr, "Could not index module.\n")
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
module_system.cc 146 // Clear the module system properties from the global context. It's polite,
198 // The module system might have been deleted. This can happen if a different
240 // Libraries that we magically expose to every module.
291 v8::Local<v8::Value> module; local
294 module = v8::Local<v8::Value>::New(
298 if (module.IsEmpty() || !module->IsObject()) {
300 "Failed to get module " + module_name + " to call " + method_name);
305 v8::Handle<v8::Object>::Cast(module)->Get(
372 Warn("Module system has been deleted, does extension view exist?")
398 v8::Handle<v8::Object> module = v8::Handle<v8::Object>::Cast(module_value); local
    [all...]
  /external/chromium_org/content/common/
sandbox_win.cc 157 // Compares the loaded |module| file name matches |module_name|.
158 bool IsExpandedModuleName(HMODULE module, const wchar_t* module_name) {
160 DWORD sz = ::GetModuleFileNameW(module, path, arraysize(path));
177 HMODULE module = check_in_browser ? ::GetModuleHandleW(module_name) : NULL; local
178 if (!module) {
179 // The module could have been loaded with a 8.3 short name. We check
193 module = ::GetModuleHandleW(alt_name.c_str());
194 if (!module)
198 if (!IsExpandedModuleName(module, module_name))
211 // Eviction of injected DLLs is done by the sandbox so that the injected module
535 HMODULE module = NULL; local
    [all...]
  /external/chromium_org/content/renderer/pepper/
plugin_module.cc 383 PluginModule* module,
395 module, perms);
425 // In the past there have been crashes reentering the plugin module
430 // When the module is being deleted, there should be no more instances still
456 // Don't add stuff here, the two notifications that the module object has
501 // Create a new module, but don't set the lifetime delegate. This isn't a
514 // module, and one or more instances are added later. In this case, the
685 // See if a module has already been loaded for this plugin.
687 scoped_refptr<PluginModule> module = local
689 if (module.get())
    [all...]
  /external/chromium_org/third_party/freetype/src/cff/
cffobjs.c 60 FT_Module module; local
63 module = FT_Get_Module( size->root.face->driver->root.library,
65 return ( module && pshinter && pshinter->get_globals_funcs )
66 ? pshinter->get_globals_funcs( module )
355 FT_Module module; local
358 module = FT_Get_Module( slot->face->driver->root.library,
360 if ( module )
365 funcs = pshinter->get_t2_funcs( module );
599 /* we need the `PSNames' module for CFF and CEF formats */
606 " without the `PSNames' module\n" ))
    [all...]
  /external/chromium_org/third_party/libxml/src/
gentest.py 29 # defines for each module
307 def add_missing_functions(name, module):
312 list = missing_functions[module]
315 missing_functions[module] = [name]
321 def type_convert(str, name, info, module, function, pos):
342 if module == 'nanoftp' and name == 'ctx':
348 if module == 'nanohttp' and name == 'ctx':
392 if res == 'FILE_ptr' and module == 'debugXML':
395 if module == 'parser' or module == 'xmlreader'
540 module = enum.xpathEval('string(@file)') variable
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_blend.c 159 LLVMModuleRef module = gallivm->module; local
177 func = LLVMAddFunction(module, "test", LLVMFunctionType(LLVMVoidTypeInContext(context), args, 4, 0));
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
arch.h 64 const struct yasm_arch_module *module; member in struct:yasm_arch_base
82 /** YASM architecture module interface.
103 * Module-level implementation of yasm_arch_create().
109 /** Module-level implementation of yasm_arch_destroy().
114 /** Module-level implementation of yasm_arch_get_machine().
119 /** Module-level implementation of yasm_arch_get_address_size().
124 /** Module-level implementation of yasm_arch_set_var().
129 /** Module-level implementation of yasm_arch_parse_check_insnprefix().
136 /** Module-level implementation of yasm_arch_parse_check_regtmod().
143 /** Module-level implementation of yasm_arch_get_fill()
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_libcdep.cc 23 InternalFree(module);
270 LoadedModule *module = FindModuleForAddress(addr);
271 if (module == 0)
273 const char *module_name = module->full_name();
274 uptr module_offset = addr - module->base_address();
278 // about module name and offset.
328 LoadedModule *module = FindModuleForAddress(addr); local
329 if (module == 0)
331 const char *module_name = module->full_name();
332 uptr module_offset = addr - module->base_address()
    [all...]
  /external/freetype/src/cff/
cffobjs.c 64 FT_Module module; local
67 module = FT_Get_Module( size->root.face->driver->root.library,
69 return ( module && pshinter && pshinter->get_globals_funcs )
70 ? pshinter->get_globals_funcs( module )
359 FT_Module module; local
362 module = FT_Get_Module( slot->face->driver->root.library,
364 if ( module )
369 funcs = pshinter->get_t2_funcs( module );
502 FT_ERROR(( "cff_face_init: cannot access `sfnt' module\n" ));
599 /* we need the `PSNames' module for CFF and CEF formats *
    [all...]
  /external/kernel-headers/original/linux/mtd/
map.h 171 At which point, you fill in the mtd->module with your own module
228 struct module *module; member in struct:mtd_chip_driver
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_blend.c 159 LLVMModuleRef module = gallivm->module; local
177 func = LLVMAddFunction(module, "test", LLVMFunctionType(LLVMVoidTypeInContext(context), args, 4, 0));

Completed in 1917 milliseconds

<<1112131415161718