/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/ |
D | pyclbr.py | 1 """Parse a Python module and describe its classes and functions. 7 readmodule_ex(module, path=None) 8 where module is the name of a Python module, and path is an optional 9 list of directories where the module is to be searched. If present, 12 classes and functions defined in the module (including classes that are 20 module -- name of the module; 21 name -- name of the object; 22 file -- file in which the object is defined; 23 lineno -- line in the file where the object's definition starts; 24 end_lineno -- line in the file where the object's definition ends; [all …]
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/ |
H A D | pyclbr.py | 1 """Parse a Python module and describe its classes and functions. 7 readmodule_ex(module, path=None) 8 where module is the name of a Python module, and path is an optional 9 list of directories where the module is to be searched. If present, 12 classes and functions defined in the module (including classes that are 20 module -- name of the module; 21 name -- name of the object; 22 file -- file in which the object is defined; 23 lineno -- line in the file where the object's definition starts; 24 end_lineno -- line in the file where the object's definition ends; [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/ |
D | pyclbr.py | 1 """Parse a Python module and describe its classes and functions. 7 readmodule_ex(module, path=None) 8 where module is the name of a Python module, and path is an optional 9 list of directories where the module is to be searched. If present, 12 classes and functions defined in the module (including classes that are 20 module -- name of the module; 21 name -- name of the object; 22 file -- file in which the object is defined; 23 lineno -- line in the file where the object's definition starts; 24 end_lineno -- line in the file where the object's definition ends; [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/ |
D | pyclbr.py | 1 """Parse a Python module and describe its classes and functions. 7 readmodule_ex(module, path=None) 8 where module is the name of a Python module, and path is an optional 9 list of directories where the module is to be searched. If present, 12 classes and functions defined in the module (including classes that are 20 module -- name of the module; 21 name -- name of the object; 22 file -- file in which the object is defined; 23 lineno -- line in the file where the object's definition starts; 24 end_lineno -- line in the file where the object's definition ends; [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/ |
D | pyclbr.py | 1 """Parse a Python module and describe its classes and functions. 7 readmodule_ex(module, path=None) 8 where module is the name of a Python module, and path is an optional 9 list of directories where the module is to be searched. If present, 12 classes and functions defined in the module (including classes that are 20 module -- name of the module; 21 name -- name of the object; 22 file -- file in which the object is defined; 23 lineno -- line in the file where the object's definition starts; 24 end_lineno -- line in the file where the object's definition ends; [all …]
|
/aosp_15_r20/external/python/cpython3/Lib/ |
D | pyclbr.py | 1 """Parse a Python module and describe its classes and functions. 7 readmodule_ex(module, path=None) 8 where module is the name of a Python module, and path is an optional 9 list of directories where the module is to be searched. If present, 12 classes and functions defined in the module (including classes that are 20 module -- name of the module; 21 name -- name of the object; 22 file -- file in which the object is defined; 23 lineno -- line in the file where the object's definition starts; 24 end_lineno -- line in the file where the object's definition ends; [all …]
|
/aosp_15_r20/external/googleapis/google/cloud/securitycentermanagement/v1/ |
H A D | security_center_management.proto | 7 // http://www.apache.org/licenses/LICENSE-2.0 51 "https://www.googleapis.com/auth/cloud-platform"; 54 // given parent. This includes resident modules defined at the scope of the 55 // parent, and inherited modules, inherited from CRM ancestors (no 61 get: "/v1/{parent=projects/*/locations/*}/effectiveSecurityHealthAnalyticsCustomModules" 63 get: "/v1/{parent=folders/*/locations/*}/effectiveSecurityHealthAnalyticsCustomModules" 66 … get: "/v1/{parent=organizations/*/locations/*}/effectiveSecurityHealthAnalyticsCustomModules" 69 option (google.api.method_signature) = "parent"; 89 // parent. This includes resident modules defined at the scope of the parent, 95 get: "/v1/{parent=projects/*/locations/*}/securityHealthAnalyticsCustomModules" [all …]
|
/aosp_15_r20/external/python/cpython2/Lib/ |
D | imputil.py | 13 warnpy3k("the imputil module has been removed in Python 3.0", stacklevel=2) 16 # note: avoid importing non-builtin modules 66 # so let's just load the OS-related facilities. 78 # The default will import dynamic-load modules first, followed by 87 """Python calls this hook to locate and import a module.""" 92 parent = self._determine_import_context(globals) 94 # if there is a parent, then its importer should manage this import 95 if parent: 96 module = parent.__importer__._do_import(parent, parts, fromlist) 97 if module: [all …]
|
D | ihooks.py | 3 Consistent use of this module will make it possible to change the 6 While the built-in module imp exports interfaces to the built-in 7 module searching and loading algorithm, and it is possible to replace 8 the built-in function __import__ in order to change the semantics of 13 This module defines three new concepts: 21 2) A "module loader" class provides an interface to search for a 22 module in a search path and to load it. It defines a method which 23 searches for a module in a single directory; by overriding this method 25 built-in and frozen modules are searched instead. 27 Two module loader class are defined, both implementing the search [all …]
|
/aosp_15_r20/external/python/cpython2/Doc/library/ |
D | imputil.rst | 2 :mod:`imputil` --- Import utilities 5 .. module:: imputil 10 The :mod:`imputil` module has been removed in Python 3. 15 This module provides a very handy and useful mechanism for custom 16 :keyword:`import` hooks. Compared to the older :mod:`ihooks` module, 17 :mod:`imputil` takes a dramatically simpler and more straight-forward 44 Import a top-level module. 46 .. method:: Importer.get_code(parent, modname, fqname) 48 Find and retrieve the code for the given module. 50 *parent* specifies a parent module to define a context for importing. [all …]
|
/aosp_15_r20/external/guice/core/src/com/google/inject/spi/ |
H A D | ModuleSource.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 21 import com.google.inject.Module; 27 * Associated to a {@link Module module}, provides the module class name, the parent module {@link 28 * ModuleSource source}, and the call stack that ends just before the module {@link 29 * Module#configure(Binder) configure(Binder)} method invocation. 33 /** The class name of module that this {@link ModuleSource} associated to. */ 36 /** The parent {@link ModuleSource module source}. */ 37 private final ModuleSource parent; field in ModuleSource 40 * The chunk of call stack that starts from the parent module {@link Module#configure(Binder) 41 * configure(Binder)} call and ends just before the module {@link Module#configure(Binder) [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/testdata/script/ |
D | mod_outside.txt | 4 # This script tests commands in module mode outside of any module. 6 # First, ensure that we really are in module mode, and that we really don't have 13 # which is not in a module. 15 stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modu… 16 go list -m 17 stdout '^command-line-arguments$' 19 # main' present: without a main module, we do not know its package path. 21 stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modu… 23 # 'go list all' lists the transitive import graph of the main module, 24 # which is empty if there is no main module. [all …]
|
/aosp_15_r20/external/dagger2/javatests/dagger/internal/codegen/ |
H A D | MissingBindingValidationTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 80 subject -> { in dependOnInterface() 83 "Bar cannot be provided without an @Provides-annotated method.") in dependOnInterface() 109 subject -> { in entryPointDependsOnInterface() 113 + "without an @Provides-annotated method.") in entryPointDependsOnInterface() 141 subject -> { in entryPointDependsOnQualifiedInterface() 145 + "provided without an @Provides-annotated method.") in entryPointDependsOnQualifiedInterface() 157 "import dagger.Module;", in constructorInjectionWithoutAnnotation() 175 subject -> { in constructorInjectionWithoutAnnotation() 179 + "@Provides-annotated method.") in constructorInjectionWithoutAnnotation() [all …]
|
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/ |
D | securitycenter_v1beta2.folders.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
D | securitycenter_v1beta2.projects.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
D | securitycenter_v1beta2.organizations.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
/aosp_15_r20/external/pytorch/torch/export/ |
H A D | unflatten.py | 1 # mypy: allow-untyped-defs 58 to_module: torch.nn.Module, argument 68 t = torch.nn.Module() 92 class InterpreterModule(torch.nn.Module): 93 """A module that uses torch.fx.Interpreter to execute instead of the usual 115 # so attribute accesses, etc. are on this module instead. 185 ) -> List[Any]: 190 class UnflattenedModule(torch.nn.Module): 218 # in strict-mode export, dynamo export will deduplicate aliased tensors, 223 # mismatching the relevant placeholder node in the unflattened module. [all …]
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/importlib/ |
H A D | _bootstrap.py | 3 This module is NOT meant to be directly imported! It has been designed such 6 work. One should use importlib as the public-facing version of this module. 10 # IMPORTANT: Whenever making changes to this module, be sure to run a top-level 11 # `make regen-importlib` followed by `make` in order to get the frozen version 12 # of the module updated. Not doing so will result in the Makefile to fail for 13 # all others who don't have a ./python around to freeze the module 29 # Bootstrap-related code ###################################################### 52 # Module-level locking ######################################################## 54 # A dict mapping module names to weakrefs of _ModuleLock instances 102 Acquire the module lock. If a potential deadlock is detected, [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/importlib/ |
D | _bootstrap.py | 3 This module is NOT meant to be directly imported! It has been designed such 6 work. One should use importlib as the public-facing version of this module. 10 # IMPORTANT: Whenever making changes to this module, be sure to run a top-level 11 # `make regen-importlib` followed by `make` in order to get the frozen version 12 # of the module updated. Not doing so will result in the Makefile to fail for 13 # all others who don't have a ./python around to freeze the module 29 # Bootstrap-related code ###################################################### 52 # Module-level locking ######################################################## 54 # A dict mapping module names to weakrefs of _ModuleLock instances 102 Acquire the module lock. If a potential deadlock is detected, [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/importlib/ |
D | _bootstrap.py | 3 This module is NOT meant to be directly imported! It has been designed such 6 work. One should use importlib as the public-facing version of this module. 10 # IMPORTANT: Whenever making changes to this module, be sure to run a top-level 11 # `make regen-importlib` followed by `make` in order to get the frozen version 12 # of the module updated. Not doing so will result in the Makefile to fail for 13 # all others who don't have a ./python around to freeze the module 29 # Bootstrap-related code ###################################################### 52 # Module-level locking ######################################################## 54 # A dict mapping module names to weakrefs of _ModuleLock instances 102 Acquire the module lock. If a potential deadlock is detected, [all …]
|
/aosp_15_r20/external/python/cpython3/Lib/importlib/ |
D | _bootstrap.py | 3 This module is NOT meant to be directly imported! It has been designed such 6 work. One should use importlib as the public-facing version of this module. 10 # IMPORTANT: Whenever making changes to this module, be sure to run a top-level 11 # `make regen-importlib` followed by `make` in order to get the frozen version 12 # of the module updated. Not doing so will result in the Makefile to fail for 13 # all others who don't have a ./python around to freeze the module 29 # Bootstrap-related code ###################################################### 52 # Module-level locking ######################################################## 54 # A dict mapping module names to weakrefs of _ModuleLock instances 102 Acquire the module lock. If a potential deadlock is detected, [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/importlib/ |
D | _bootstrap.py | 3 This module is NOT meant to be directly imported! It has been designed such 6 work. One should use importlib as the public-facing version of this module. 10 # IMPORTANT: Whenever making changes to this module, be sure to run a top-level 11 # `make regen-importlib` followed by `make` in order to get the frozen version 12 # of the module updated. Not doing so will result in the Makefile to fail for 13 # all others who don't have a ./python around to freeze the module 29 # Bootstrap-related code ###################################################### 52 # Module-level locking ######################################################## 54 # A dict mapping module names to weakrefs of _ModuleLock instances 102 Acquire the module lock. If a potential deadlock is detected, [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/importlib/ |
D | _bootstrap.py | 3 This module is NOT meant to be directly imported! It has been designed such 6 work. One should use importlib as the public-facing version of this module. 10 # IMPORTANT: Whenever making changes to this module, be sure to run a top-level 11 # `make regen-importlib` followed by `make` in order to get the frozen version 12 # of the module updated. Not doing so will result in the Makefile to fail for 13 # all others who don't have a ./python around to freeze the module 29 # Bootstrap-related code ###################################################### 52 # Module-level locking ######################################################## 54 # A dict mapping module names to weakrefs of _ModuleLock instances 102 Acquire the module lock. If a potential deadlock is detected, [all …]
|
/aosp_15_r20/external/pytorch/torch/package/ |
H A D | package_importer.py | 1 # mypy: allow-untyped-defs 56 # FX GraphModule might depend on builtins module and users usually 81 The importer for packages ensures that code in the module can only be loaded from 85 a locally-installed package, but then fails when the package is copied to another machine. 103 …file_or_buffer: a file-like object (has to implement :meth:`read`, :meth:`readline`, :meth:`tell`,… 105 …le_allowed (Callable[[str], bool], optional): A method to determine if a externally provided module 110 ImportError: If the package will use a disallowed module. 143 f"package '{file_or_buffer}' needs the external module '{extern_module}' " 144 f"but that module has been disallowed" 166 """Load a module from the package if it hasn't already been loaded, and then return [all …]
|
/aosp_15_r20/external/python/cpython3/Doc/reference/ |
D | import.rst | 10 Python code in one :term:`module` gains access to the code in another module 13 way. Functions such as :func:`importlib.import_module` and built-in 17 named module, then it binds the results of that search to a name in the local 25 A direct call to :func:`__import__` performs only the module search and, if 26 found, the module creation operation. While certain side-effects may occur, 27 such as the importing of parent packages, and the updating of various caches 36 When a module is first imported, Python searches for the module and if found, 37 it creates a module object [#fnmo]_, initializing it. If the named module 39 strategies to search for the named module when the import machinery is 45 of :pep:`302`. There is no longer any implicit import machinery - the full [all …]
|