/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
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...] |
/system/core/gatekeeperd/ |
gatekeeperd.cpp | 53 int ret = hw_get_module_by_class(GATEKEEPER_HARDWARE_MODULE_ID, NULL, &module); 60 ret = gatekeeper_open(module, &device); 321 const hw_module_t *module; member in class:android::GateKeeperProxy
|
/toolchain/binutils/binutils-2.25/bfd/ |
liboasys.h | 68 oasys_module_info_type *module; member in struct:_oasys_ar_data
|
/toolchain/binutils/binutils-2.25/binutils/ |
sysdump.c | 52 static void module (void); 608 module (void) function 613 tab (1, _("MODULE***\n")); 716 module ();
|
/toolchain/binutils/binutils-2.25/ld/ |
deffile.h | 51 def_file_module *module; /* always set */ member in struct:def_file_import 85 /* Used by imports for module names. */
|
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/ |
CompatibilityTest.java | 81 private static final String MODULE_OPTION = "module"; 83 private static final String MODULE_ARG_OPTION = "module-arg"; 103 description = "the include module filters to apply.", 108 description = "the exclude module filters to apply.", 114 description = "the test module to run.", 125 description = "the arguments to pass to a module. The expected format is" 126 + "\"<module-name>:<arg-name>:<arg-value>\"", 155 + "suites/{suite-name}/modules/{module}/version/{version}?key=" + API_KEY; 194 @Option(name = "reboot-per-module", 195 description = "Reboot the device before every module run." 340 IModuleDef module = modules.get(i); local 348 IModuleDef module = modules.get(i); local 582 String module = modules.get(0); local [all...] |
/development/tools/idegen/src/com/android/idegen/ |
Module.java | 36 * Module constructed from a make file. 40 * framework module includes sources from: 48 public class Module { 50 private static final Logger logger = Logger.getLogger(Module.class.getName()); 54 private static final String IML_TEMPLATE_FILE_NAME = "module-template.iml"; 78 // Module dependencies come from LOCAL_STATIC_JAVA_LIBRARIES or LOCAL_JAVA_LIBRARIES 80 // Implicit module dependencies come from src files that fall outside the module root directory. 82 // that is an implicit module dependency. It's not a module dependency from the buil 260 Module module = moduleCache.getAndCacheByDir(new File(dependency)); local [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/ |
win_platform_backend.py | 32 from win32com.shell import shell # pylint: disable=no-name-in-module namespace 33 from win32com.shell import shellcon # pylint: disable=no-name-in-module namespace
|
/external/chromium-trace/catapult/third_party/typ/typ/tests/ |
main_test.py | 344 rout=('Failed to load "foo.py": No module named ' 361 self.assertIn('Failed to import test module: syn_test', out) namespace
|
/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/google-breakpad/src/client/linux/minidump_writer/ |
linux_dumper.cc | 328 // Merge adjacent mappings with the same name into one module, 331 MappingInfo* module = mappings_.back(); local 332 if ((start_addr == module->start_addr + module->size) && 333 (my_strlen(name) == my_strlen(module->name)) && 334 (my_strncmp(name, module->name, my_strlen(name)) == 0)) { 335 module->size = end_addr - module->start_addr; 345 MappingInfo* module = mappings_.back(); local 346 if ((start_addr == module->start_addr + module->size) & 357 MappingInfo* const module = new(allocator_) MappingInfo; local [all...] |
/external/google-breakpad/src/client/solaris/handler/ |
solaris_lwp.cc | 83 // Callback invoked for each mapped module. 84 // It uses the module's adderss range to validate the address. 321 * larger than the actual module count 347 ModuleInfo module; local 350 memset(&module, 0, sizeof (module)); 351 module.start_addr = _maps->pr_vaddr; 352 module.size = _maps->pr_size; 360 print_message1(2, "can't open module file\n"); 367 print_message1(2, "can't read module file\n") [all...] |
/external/libcxx/test/libcxx/test/ |
config.py | 10 import lit.Test # pylint: disable=import-error,no-name-in-module namespace 11 import lit.util # pylint: disable=import-error,no-name-in-module namespace [all...] |
/external/libxml2/ |
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/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));
|
/external/opencv3/3rdparty/libtiff/ |
tif_dir.c | 158 static const char module[] = "_TIFFVSetField"; local 215 * previous module so that it can cleanup any state it's 399 TIFFErrorExt(tif->tif_clientdata, module, 453 TIFFErrorExt(tif->tif_clientdata, module, 487 TIFFErrorExt(tif->tif_clientdata, module, 508 TIFFErrorExt(tif->tif_clientdata, module, 550 TIFFErrorExt(tif->tif_clientdata, module, 679 TIFFErrorExt(tif->tif_clientdata, module, 689 TIFFErrorExt(tif->tif_clientdata, module, 1333 static const char module[] = "TIFFAdvanceDirectory"; local 1560 static const char module[] = "TIFFUnlinkDirectory"; local [all...] |
/external/pdfium/third_party/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" )); 604 /* we need the `PSNames' module for CFF and CEF formats * [all...] |
/external/pdfium/third_party/libtiff/ |
tif_dir.c | 158 static const char module[] = "_TIFFVSetField"; local 217 * previous module so that it can cleanup any state it's 407 TIFFErrorExt(tif->tif_clientdata, module, 461 TIFFErrorExt(tif->tif_clientdata, module, 495 TIFFErrorExt(tif->tif_clientdata, module, 516 TIFFErrorExt(tif->tif_clientdata, module, 558 TIFFErrorExt(tif->tif_clientdata, module, 687 TIFFErrorExt(tif->tif_clientdata, module, 697 TIFFErrorExt(tif->tif_clientdata, module, 707 TIFFErrorExt(tif->tif_clientdata, module, 1365 static const char module[] = "TIFFAdvanceDirectory"; local 1507 static const char module[] = "TIFFNumberOfDirectories"; local 1606 static const char module[] = "TIFFUnlinkDirectory"; local [all...] |
/external/selinux/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 770 fprintf(out_fp, "Reading module...\n"); 777 if (module.policy_type != POLICY_MOD) { 778 fprintf(stderr, "This file is not a loadable policy module.\n"); 781 if (policydb_index_classes(&module) || 782 policydb_index_others(NULL, &module, 0)) { 783 fprintf(stderr, "Could not index module.\n") [all...] |
/external/selinux/policycoreutils/semanage/ |
seobject.py | 314 raise ValueError(_("Could not get module name")) 318 raise ValueError(_("Could not get module enabled")) 322 raise ValueError(_("Could not get module priority")) 326 raise ValueError(_("Could not get module lang_ext")) 347 print "\n%-25s %-9s %s\n" % (_("Module Name"), _("Priority"), _("Language")) 359 raise ValueError(_("Module does not exists %s ") % file) 369 def set_enabled(self, module, enable): 370 for m in module.split(): 373 raise ValueError(_("Could not create module key")) 377 raise ValueError(_("Could not set module key name") 464 import sepolgen.module as module namespace [all...] |
/external/skia/src/utils/win/ |
SkWGL_win.cpp | 177 HMODULE module = GetModuleHandle(nullptr); local 191 wc.hInstance = module; 215 module, 217 UnregisterClass(DUMMY_CLASS, module); 227 HMODULE module = GetModuleHandle(nullptr); local 228 UnregisterClass(DUMMY_CLASS, module);
|
/external/toybox/toys/pending/ |
modprobe.c | 14 usage: modprobe [-alrqvsDb] MODULE [symbol=value][...] 19 -l List (MODULE is a pattern) 20 -r Remove MODULE (stacks) or do autoclean 25 -b Apply blacklist to module names too 64 // Converts path name FILE to module name. 143 * if add - create module entry, add it to data base and return the same mod. 350 // Remove a module from the Linux Kernel. if !modules does auto remove. 365 // Insert module same as insmod implementation. 386 // Add module in probes list, if not loaded. 403 // Parse cmdline options suplied for module 490 struct module_s *module; local [all...] |
/external/v8/src/runtime/ |
runtime-scopes.cc | 878 // Module already initialized. Find hosting context and retrieve context 892 Handle<JSModule> module = factory->NewJSModule(context, scope_info); local [all...] |