/third_party/python/Lib/test/test_importlib/extension/ |
H A D | test_loader.py | 23 if util.EXTENSIONS.name in sys.builtin_module_names: 25 f"{util.EXTENSIONS.name} is a builtin module" 27 self.loader = self.machinery.ExtensionFileLoader(util.EXTENSIONS.name, 28 util.EXTENSIONS.file_path) 45 other = self.machinery.ExtensionFileLoader(util.EXTENSIONS.name, 46 util.EXTENSIONS.file_path) 50 other = self.machinery.ExtensionFileLoader('_' + util.EXTENSIONS.name, 51 util.EXTENSIONS.file_path) 55 with util.uncache(util.EXTENSIONS.name): 56 module = self.load_module(util.EXTENSIONS [all...] |
H A D | test_finder.py | 16 if util.EXTENSIONS.name in sys.builtin_module_names: 18 f"{util.EXTENSIONS.name} is a builtin module" 22 importer = self.machinery.FileFinder(util.EXTENSIONS.path, 29 self.assertTrue(self.find_spec(util.EXTENSIONS.name))
|
H A D | test_case_sensitivity.py | 11 @unittest.skipIf(util.EXTENSIONS.filename is None, '_testcapi not available') 16 good_name = util.EXTENSIONS.name 19 finder = self.machinery.FileFinder(util.EXTENSIONS.path,
|
H A D | test_path_hook.py | 22 self.assertTrue(hasattr(self.hook(util.EXTENSIONS.path), 'find_module'))
|
/third_party/python/Lib/test/test_importlib/ |
H A D | util.py | 25 EXTENSIONS = types.SimpleNamespace() variable 26 EXTENSIONS.path = None 27 EXTENSIONS.ext = None 28 EXTENSIONS.filename = None 29 EXTENSIONS.file_path = None 30 EXTENSIONS.name = '_testcapi' 33 global EXTENSIONS 36 filename = EXTENSIONS.name + ext 39 EXTENSIONS.path = path 40 EXTENSIONS [all...] |
/third_party/skia/third_party/externals/brotli/python/ |
H A D | Makefile | 28 EXTENSIONS=$(EXT_SOURCES:%.cc=%$(EXT_SUFFIX)) macro 33 build: $(EXTENSIONS) 35 $(EXTENSIONS): $(EXT_SOURCES)
|
/third_party/jerryscript/tools/ |
H A D | check-license.py | 58 EXTENSIONS = [ variable 79 if any(fname.endswith(ext) for ext in EXTENSIONS):
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_instance.py | 37 EXTENSIONS = [ variable 52 # - conditions: See documentation of EXTENSIONS. 356 extensions = EXTENSIONS
|
H A D | zink_device_info.py | 61 EXTENSIONS = [ variable 661 extensions = EXTENSIONS
|
/third_party/skia/buildtools/checkdeps/ |
H A D | cpp_checker.py | 19 EXTENSIONS = [ variable in CppChecker 122 return os.path.splitext(file_path)[1] in CppChecker.EXTENSIONS
|
H A D | proto_checker.py | 19 EXTENSIONS = [ variable in ProtoChecker 116 return os.path.splitext(file_path)[1] in ProtoChecker.EXTENSIONS
|
H A D | java_checker.py | 36 EXTENSIONS = ['.java'] variable in JavaChecker 186 return os.path.splitext(filepath)[1] in JavaChecker.EXTENSIONS
|
H A D | checkdeps.py | 92 for checker in [java, cpp, proto] for extension in checker.EXTENSIONS)
|
/third_party/vk-gl-cts/scripts/egl/ |
H A D | common.py | 48 EXTENSIONS = [ variable 97 return getInterface(getEGLRegistry(), 'egl', VERSION, extensionNames = EXTENSIONS, protects = PROTECTS)
|
H A D | gtf_wrapper.py | 95 extOnlyIface = getExtOnlyIface(registry, 'egl', EXTENSIONS)
|
H A D | library.py | 92 extOnlyIface = getExtOnlyIface(registry, 'egl', EXTENSIONS)
|
/third_party/vk-gl-cts/scripts/opengl/ |
H A D | src_util.py | 44 EXTENSIONS = [ variable 171 for extName in EXTENSIONS:
|
H A D | gen_ext_init.py | 46 for extName in EXTENSIONS:
|
/third_party/glfw/tests/ |
H A D | glfwinfo.c | 388 EXTENSIONS, LAYERS, in main() enumerator 403 { "list-extensions", 0, NULL, EXTENSIONS }, in main() 506 case EXTENSIONS: in main()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/ |
H A D | Makefile | 16 # extensions included, set the $(EXTENSIONS) variable on the make 18 # $(EXTENSIONS) is converted into generator script 38 EXTS := $(sort $(EXTENSIONS) $(DIFFEXTENSIONS)) 660 # targets, and is set above based on $(EXTENSIONS).
|
/third_party/mesa3d/src/gallium/frontends/glx/xlib/ |
H A D | glx_api.c | 68 #define EXTENSIONS \ macro 1706 return EXTENSIONS; in get_extensions()
|