/third_party/vk-gl-cts/ |
H A D | AndroidGen.mk | 65 external/vulkancts/modules/vulkan/amber/vktAmberDepthTests.cpp \ 66 external/vulkancts/modules/vulkan/amber/vktAmberGlslTests.cpp \ 67 external/vulkancts/modules/vulkan/amber/vktAmberGraphicsFuzzTests.cpp \ 68 external/vulkancts/modules/vulkan/amber/vktAmberHelper.cpp \ 69 external/vulkancts/modules/vulkan/amber/vktAmberTestCase.cpp \ 70 external/vulkancts/modules/vulkan/amber/vktAmberTestCaseUtil.cpp \ 71 external/vulkancts/modules/vulkan/api/vktApiBufferAndImageAllocationUtil.cpp \ 72 external/vulkancts/modules/vulkan/api/vktApiBufferComputeInstance.cpp \ 73 external/vulkancts/modules/vulkan/api/vktApiBufferMarkerTests.cpp \ 74 external/vulkancts/modules/vulka [all...] |
/third_party/python/Lib/test/support/ |
H A D | import_helper.py | 32 del sys.modules[name] 40 This removes the module from sys.modules and deletes any PEP 3147/488 or 88 for modname in list(sys.modules): 90 orig_modules[modname] = sys.modules.pop(modname) 96 """Force frozen modules to be used (or not). 98 This only applies to modules that haven't been imported yet. 99 Also, some essential modules will always be imported frozen. 112 """Import and return a module, deliberately bypassing sys.modules. 115 by removing the named module from sys.modules before doing the import. 120 from the sys.modules cach [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/antora/ |
H A D | Makefile | 14 JSPAGEMAP = antora/modules/ROOT/partials/gen/pageMap.cjs 40 -component $(shell realpath antora/modules/ROOT) \ 56 -component $(shell realpath antora/modules/proposals) \ 63 antora/modules/ROOT/images \ 64 antora/modules/ROOT/pages/appendices \ 65 antora/modules/ROOT/pages/chapters \ 66 antora/modules/ROOT/pages/gen \ 67 antora/modules/ROOT/partials \ 68 antora/modules/proposals/pages/proposals \ 69 antora/modules/proposal [all...] |
/third_party/node/deps/npm/node_modules/qrcode-terminal/vendor/QRCode/ |
H A D | index.js | 28 this.modules = null; 46 return this.modules[row][col]; 83 this.modules = new Array(this.moduleCount); 87 this.modules[row] = new Array(this.moduleCount); 90 this.modules[row][col] = null;//(col + row) % 3; 125 this.modules[row + r][col + c] = true; 127 this.modules[row + r][col + c] = false; 160 for (var row = 0; row < this.modules.length; row++) { 164 for (var col = 0; col < this.modules[row].length; col++) { 167 var dark = this.modules[ro [all...] |
/third_party/python/Lib/test/libregrtest/ |
H A D | utils.py | 117 for mod in sys.modules.values(): 130 distutils_dir_util = sys.modules['distutils.dir_util'] 137 re = sys.modules['re'] 144 _strptime = sys.modules['_strptime'] 151 urllib_parse = sys.modules['urllib.parse'] 158 urllib_request = sys.modules['urllib.request'] 165 linecache = sys.modules['linecache'] 172 mimetypes = sys.modules['mimetypes'] 179 filecmp = sys.modules['filecmp'] 186 struct = sys.modules['struc [all...] |
/third_party/python/Lib/test/test_zoneinfo/ |
H A D | _support.py | 45 """Make sure sys.modules["zoneinfo"] refers to `module`. 53 old_zoneinfo = sys.modules.get("zoneinfo", NOT_PRESENT) 54 sys.modules["zoneinfo"] = module 57 sys.modules["zoneinfo"] = old_zoneinfo 59 sys.modules.pop("zoneinfo") 72 for modname in list(sys.modules): 76 tzdata_modules[modname] = sys.modules.pop(modname) 83 # clear the sys.modules cache of all its contents — setting the 88 sys.modules["tzdata"] = None 96 sys.modules [all...] |
/third_party/protobuf/python/docs/ |
H A D | generate_docs.py | 32 """Script to generate a list of all modules to use in autosummary. 76 # Packages to ignore, including all modules (unless in INCLUDED_MODULES): 132 modules = [] 153 modules.append(package_name) 155 modules.append(module_name) 157 return modules 171 def replace_toc(modules): 172 toctree = [module.replace(".", "/") for module in modules] 184 modules = list(sorted(find_modules())) 185 for module in modules [all...] |
/third_party/vk-gl-cts/scripts/ |
H A D | build_caselists.py | 46 Module("dEQP-VK", "../external/vulkancts/modules/vulkan", "deqp-vk"), 47 Module("dEQP-VKSC", "../external/vulkancts/modules/vulkan", "deqp-vksc"), 68 return os.path.join(buildCfg.getBuildDir(), "modules") 71 modules = [] 77 modules.append(module) 79 return modules 136 "--modules", 137 dest="modules", 138 help="Comma-separated list of modules to update") 148 modules variable 151 modules = [] global() variable 159 modules = getBuiltModules(buildCfg) global() variable [all...] |
/third_party/python/Lib/test/ |
H A D | test_bdb.py | 459 def run_test(modules, set_list, skip=None): 462 'modules': A dictionary mapping module names to their source code as a 491 modules = { 'test_module': code } 492 run_test(modules, set_list) 529 with create_modules(modules): 534 def create_modules(modules): 538 for m in modules: 541 f.write(textwrap.dedent(modules[m])) 546 for m in modules: 628 modules [all...] |
H A D | test_datetime.py | 19 sys.modules.pop(modname, None) 24 # not believe this, but in spite of all the sys.modules trickery running a _Pure 42 cls_._save_sys_modules = sys.modules.copy() 43 sys.modules[TESTS] = module 44 sys.modules['datetime'] = module.datetime_module 45 sys.modules['_strptime'] = module._strptime 48 sys.modules.clear() 49 sys.modules.update(cls_._save_sys_modules)
|
H A D | test_pkgutil.py | 58 del sys.modules[pkg] 93 del sys.modules[pkg] 127 sys.modules.pop(pkg, None) 130 expected_msg = "path must be None or list of paths to look for modules in" 183 del sys.modules[pkg] 218 del sys.modules[pkg] 352 del sys.modules['foo'] 362 del sys.modules['foo'] 406 del sys.modules['foo'] 407 del sys.modules['fo [all...] |
/third_party/python/Lib/test/test_importlib/import_/ |
H A D | test_packages.py | 10 """Importing a submodule should import the parent modules.""" 16 self.assertIn('pkg', sys.modules) 35 self.assertNotIn('pkg', sys.modules) 36 self.assertIn('pkg.module', sys.modules) 39 self.assertNotIn('pkg', sys.modules) 40 self.assertIn('pkg.module', sys.modules) 54 self.assertNotIn('pkg', sys.modules) 57 self.assertNotIn('pkg', sys.modules) 59 #self.assertIn('pkg.module', sys.modules) 74 self.assertNotIn('pkg.subpkg', sys.modules) [all...] |
/third_party/selinux/libsepol/tests/ |
H A D | test-linker.c | 56 static policydb_t *modules[NUM_MODS]; variable 71 modules[i] = calloc(1, sizeof(*modules[i])); in linker_test_init() 72 if (!modules[i]) { in linker_test_init() 77 if (test_load_policy(modules[i], POLICY_MOD, mls, "test-linker", policies[i])) in linker_test_init() 82 if (link_modules(NULL, &linkedbase, modules, NUM_MODS, 0)) { in linker_test_init() 83 fprintf(stderr, "link modules failed\n"); in linker_test_init() 88 fprintf(stderr, "link modules failed\n"); in linker_test_init() 103 policydb_destroy(modules[i]); in linker_test_cleanup() 104 free(modules[ in linker_test_cleanup() [all...] |
/third_party/rust/crates/cxx/gen/src/ |
H A D | file.rs | 8 pub modules: Vec<Module>, 13 let mut modules = Vec::new(); in parse() variables 15 parse(input, &mut modules)?; in parse() 16 Ok(File { modules }) in parse() 20 fn parse(input: ParseStream, modules: &mut Vec<Module>) -> Result<()> { in parse() 50 modules.push(module); in parse() 59 parse(&content, modules)?; in parse()
|
/third_party/rust/crates/cxx/gen/cmd/src/gen/ |
H A D | file.rs | 8 pub modules: Vec<Module>, 13 let mut modules = Vec::new(); in parse() variables 15 parse(input, &mut modules)?; in parse() 16 Ok(File { modules }) in parse() 20 fn parse(input: ParseStream, modules: &mut Vec<Module>) -> Result<()> { in parse() 50 modules.push(module); in parse() 59 parse(&content, modules)?; in parse()
|
/third_party/rust/crates/cxx/gen/build/src/gen/ |
H A D | file.rs | 8 pub modules: Vec<Module>, 13 let mut modules = Vec::new(); in parse() variables 15 parse(input, &mut modules)?; in parse() 16 Ok(File { modules }) in parse() 20 fn parse(input: ParseStream, modules: &mut Vec<Module>) -> Result<()> { in parse() 50 modules.push(module); in parse() 59 parse(&content, modules)?; in parse()
|
/third_party/rust/crates/cxx/gen/lib/src/gen/ |
H A D | file.rs | 8 pub modules: Vec<Module>, 13 let mut modules = Vec::new(); in parse() variables 15 parse(input, &mut modules)?; in parse() 16 Ok(File { modules }) in parse() 20 fn parse(input: ParseStream, modules: &mut Vec<Module>) -> Result<()> { in parse() 50 modules.push(module); in parse() 59 parse(&content, modules)?; in parse()
|
/third_party/python/Lib/test/test_importlib/ |
H A D | util.py | 59 # That would clean up the test modules a bit more. 127 """Uncache a module from sys.modules. 129 A basic sanity check is performed to prevent uncaching modules that either 138 del sys.modules[name] 146 del sys.modules[name] 153 conflicts = [n for n in sys.modules if n.partition('.')[0] == name] 180 The 'modules' attribute is not supported as the interpreter state stores a 182 reassigning to sys.modules does not have the desired effect. 211 self.modules = {} 231 self.modules[import_nam [all...] |
/third_party/python/Lib/importlib/ |
H A D | util.py | 45 First, sys.modules is checked to see if the module was already imported. If 46 so, then sys.modules[name].__spec__ is returned. If that happens to be 48 sys.modules, then sys.meta_path is searched for a suitable spec with the 57 if name not in sys.modules: 60 module = sys.modules[name] 76 First, sys.modules is checked to see if the module was already imported. If 77 so, then sys.modules[name].__spec__ is returned. If that happens to be 79 sys.modules, then sys.meta_path is searched for a suitable spec with the 91 if fullname not in sys.modules: 105 module = sys.modules[fullnam [all...] |
H A D | _bootstrap.py | 5 such it requires the injection of specific modules and attributes in order to 276 """Load the specified module into sys.modules and return it. 285 if fullname in sys.modules: 286 module = sys.modules[fullname] 288 return sys.modules[fullname] 332 not. On modules this is reflected by the `__path__` attribute. 348 Packages are simply modules that (may) have submodules. If a spec 350 system will consider modules loaded from the spec as packages. 516 # built-in modules, and the code below will avoid setting it if 604 if sys.modules [all...] |
/third_party/python/Lib/distutils/command/ |
H A D | build_py.py | 17 description = "\"build\" pure Python modules (copy to build directory)" 48 # options -- list of packages and list of modules. 84 # Two options control which modules will be installed: 'packages' 86 # specifying individual modules at all; the latter is for 87 # specifying modules one-at-a-time. 220 modules = [] 227 modules.append((package, module, f)) 230 return modules 233 """Finds individually-specified Python modules, ie. those listed by 250 modules [all...] |
/third_party/python/Tools/scripts/ |
H A D | pdeps.py | 5 # Find dependencies between a bunch of Python modules. 12 # 1) Direct dependencies, listing which module imports which other modules 19 # - option to automatically scan the Python library for referenced modules 20 # - option to limit output to particular modules 94 modules = list(table.keys()) 99 for mod in modules: 107 for mod in modules: 109 if mo in modules: 146 modules = sorted(table.keys()) 148 for mod in modules [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | module.c | 89 pathname = pa_sprintf_malloc("%s" PA_PATH_SEP "src" PA_PATH_SEP "modules" PA_PATH_SEP "%s" PA_SOEXT, p, n); in pa_module_exists() 176 PA_IDXSET_FOREACH(i, c->modules, idx) { in pa_module_load() 205 pa_assert_se(pa_idxset_put(c->modules, m, &m->index) >= 0); in pa_module_load() 246 pa_idxset_remove_by_index(c->modules, m->index); in pa_module_load() 319 if (!(m = pa_idxset_remove_by_data(m->core->modules, m, NULL))) in pa_module_unload() 333 if (!(m = pa_idxset_remove_by_index(c->modules, idx))) in pa_module_unload_by_index() 346 pa_assert(c->modules); in pa_module_unload_all() 348 if (pa_idxset_isempty(c->modules)) in pa_module_unload_all() 351 /* Unload modules in reverse order by default */ in pa_module_unload_all() 352 indices = pa_xnew(uint32_t, pa_idxset_size(c->modules)); in pa_module_unload_all() [all...] |
/third_party/ltp/testcases/kernel/device-drivers/v4l/kernel_space/ |
H A D | Makefile | 8 KDIR := /lib/modules/$(shell uname -r)/build 11 modules: 12 $(MAKE) -C $(KDIR) M=$(PWD) modules 16 rm -f modules.order
|
/third_party/ltp/testcases/kernel/device-drivers/misc_modules/per_cpu_allocator_module/ |
H A D | Makefile | 8 KDIR := /lib/modules/$(shell uname -r)/build 11 modules: 12 $(MAKE) -C $(KDIR) M=$(PWD) modules 16 rm -f modules.order
|