Home
last modified time | relevance | path

Searched +full:parent +full:- +full:module (Results 1 – 25 of 1136) sorted by relevance

12345678910>>...46

/external/guice/core/src/com/google/inject/spi/
DModuleSource.java8 * 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 …]
/external/python/cpython3/Lib/
Dpyclbr.py1 """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 …]
/external/python/cpython2/Doc/library/
Dimputil.rst2 :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 …]
/external/python/cpython2/Lib/
Dimputil.py13 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 …]
Dihooks.py3 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 …]
/external/cronet/build/android/gyp/
Dallot_native_libraries.py4 # Use of this source code is governed by a BSD-style license that can be
9 All libraries that are depended on by a single module will be allotted to this
10 module. All other libraries will be allotted to the closest ancestor.
13 Given the module dependency structure
34 --libraries 'a,["1.so"]' \
35 --libraries 'e,["2.so", "1.so"]' \
36 --dep c:b \
37 --dep b:a \
38 --dep c:d \
39 --dep d:e \
[all …]
/external/google-cloud-java/generation/
Dset_parent_pom.sh3 set -ef
5 # For each library module in current working directory, this script
6 # sets the parent to the root pom.xml
8 # Run this script at the root of google-cloud-java repository
12 # First, read the values from the parent pom.xml
13 parent_version=$(perl -nle 'print $1 if m|<version>(.+)</version>|' "$parent_pom"|head -1)
14 parent_group_id=$(perl -nle 'print $1 if m|<groupId>(.+)</groupId>|' "$parent_pom" |head -1)
15 …parent_artifact_id=$(perl -nle 'print $1 if m|<artifactId>(.+)</artifactId>|' "$parent_pom"|head -
18 …# Search for <parent> tag in module pom and replace the next three lines -- groupId, artifcatId, a…
19parent>.*?<\/parent>/\n\n <parent>\n <groupId>${parent_group_id}<\/groupId>\n <artifactId>$…
[all …]
/external/googleapis/google/cloud/securitycentermanagement/v1/
Dsecurity_center_management.proto7 // 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 …]
/external/clang/lib/Basic/
DModule.cpp1 //===--- Module.cpp - Describe a module -----------------------------------===//
8 //===----------------------------------------------------------------------===//
10 // This file defines the Module class, which describes a module in the source
13 //===----------------------------------------------------------------------===//
15 #include "clang/Basic/Module.h"
27 Module::Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent, in Module() argument
29 : Name(Name), DefinitionLoc(DefinitionLoc), Parent(Parent), Directory(), in Module()
37 if (Parent) { in Module()
38 if (!Parent->isAvailable()) in Module()
40 if (Parent->IsSystem) in Module()
[all …]
/external/python/cpython3/Lib/importlib/
D_bootstrap.py3 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 …]
/external/python/google-api-python-client/docs/dyn/
Dsecuritycenter_v1beta2.projects.html8 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 …]
Dsecuritycenter_v1beta2.folders.html8 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 …]
Dsecuritycenter_v1beta2.organizations.html8 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 …]
/external/python/cpython3/Doc/library/
Dpyclbr.rst1 :mod:`pyclbr` --- Python module browser support
4 .. module:: pyclbr
5 :synopsis: Supports information extraction for a Python module browser.
11 --------------
13 The :mod:`pyclbr` module provides limited information about the
14 functions, classes, and methods defined in a Python-coded module. The
15 information is sufficient to implement a module browser. The
17 importing the module, so this module is safe to use with untrusted code.
18 This restriction makes it impossible to use this module with modules not
23 .. function:: readmodule(module, path=None)
[all …]
/external/dagger2/javatests/dagger/internal/codegen/
DModuleFactoryGeneratorTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
46 .hasError("@Provides methods can only be present within a @Module or @ProducerModule"); in providesMethodNotInModule()
123 "import dagger.Module;", in modulesWithTypeParamsMustBeAbstract()
125 "@Module", in modulesWithTypeParamsMustBeAbstract()
129 subject -> { in modulesWithTypeParamsMustBeAbstract()
138 Source parent = in provideOverriddenByNoProvide() local
140 "test.Parent", in provideOverriddenByNoProvide()
143 "import dagger.Module;", in provideOverriddenByNoProvide()
146 "@Module", in provideOverriddenByNoProvide()
147 "class Parent {", in provideOverriddenByNoProvide()
[all …]
DMissingBindingValidationTest.java8 * 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 …]
/external/truth/extensions/
Dpom.xml1 <?xml version="1.0" encoding="UTF-8"?>
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
7 <parent>
9 <artifactId>truth-parent</artifactId>
10 <version>HEAD-SNAPSHOT</version>
11 </parent>
13 <artifactId>truth-extensions-parent</artifactId>
15 <name>Truth Extensions (Parent)</name>
17 Parent metdata for a collection of Truth extensions, Subjects, utilities for
[all …]
/external/python/cpython3/Doc/reference/
Dimport.rst10 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 …]
/external/google-cloud-java/java-tpu/
Dpom.xml1 <?xml version='1.0' encoding='UTF-8'?>
2 …//www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:/…
5 <artifactId>google-cloud-tpu-parent</artifactId>
7 <version>2.18.0</version><!-- {x-version-update:google-cloud-tpu:current} -->
8 <name>Google Cloud TPU Parent</name>
13 <parent>
15 <artifactId>google-cloud-jar-parent</artifactId>
16 <version>1.11.0</version><!-- {x-version-update:google-cloud-java:current} -->
17 <relativePath>../google-cloud-jar-parent/pom.xml</relativePath>
18 </parent>
[all …]
/external/google-cloud-java/java-tasks/
Dpom.xml1 <?xml version='1.0' encoding='UTF-8'?>
2 …//www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:/…
5 <artifactId>google-cloud-tasks-parent</artifactId>
7 <version>2.17.0</version><!-- {x-version-update:google-cloud-tasks:current} -->
8 <name>Google Cloud Tasks Parent</name>
13 <parent>
15 <artifactId>google-cloud-jar-parent</artifactId>
16 <version>1.11.0</version><!-- {x-version-update:google-cloud-java:current} -->
17 <relativePath>../google-cloud-jar-parent/pom.xml</relativePath>
18 </parent>
[all …]
/external/google-cloud-java/java-securitycenter/
Dpom.xml1 <?xml version='1.0' encoding='UTF-8'?>
2 …//www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:/…
5 <artifactId>google-cloud-securitycenter-parent</artifactId>
7 <version>2.25.0</version><!-- {x-version-update:google-cloud-securitycenter:current} -->
8 <name>Google Cloud Security Command Center Parent</name>
13 <parent>
15 <artifactId>google-cloud-jar-parent</artifactId>
16 <version>1.11.0</version><!-- {x-version-update:google-cloud-java:current} -->
17 <relativePath>../google-cloud-jar-parent/pom.xml</relativePath>
18 </parent>
[all …]
/external/google-cloud-java/java-alloydb/
Dpom.xml1 <?xml version='1.0' encoding='UTF-8'?>
2 …//www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:/…
5 <artifactId>google-cloud-alloydb-parent</artifactId>
7 <version>0.6.0</version><!-- {x-version-update:google-cloud-alloydb:current} -->
8 <name>Google AlloyDB Parent</name>
13 <parent>
15 <artifactId>google-cloud-jar-parent</artifactId>
16 <version>1.11.0</version><!-- {x-version-update:google-cloud-java:current} -->
17 <relativePath>../google-cloud-jar-parent/pom.xml</relativePath>
18 </parent>
[all …]
/external/google-cloud-java/java-websecurityscanner/
Dpom.xml1 <?xml version='1.0' encoding='UTF-8'?>
2 …//www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:/…
5 <artifactId>google-cloud-websecurityscanner-parent</artifactId>
7 <version>2.17.0</version><!-- {x-version-update:google-cloud-websecurityscanner:current} -->
8 <name>Google Cloud Web Security Scanner Parent</name>
13 <parent>
15 <artifactId>google-cloud-jar-parent</artifactId>
16 <version>1.11.0</version><!-- {x-version-update:google-cloud-java:current} -->
17 <relativePath>../google-cloud-jar-parent/pom.xml</relativePath>
18 </parent>
[all …]
/external/google-cloud-java/java-retail/
Dpom.xml1 <?xml version='1.0' encoding='UTF-8'?>
2 …//www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:/…
5 <artifactId>google-cloud-retail-parent</artifactId>
7 <version>2.19.0</version><!-- {x-version-update:google-cloud-retail:current} -->
8 <name>Google Cloud Retail Parent</name>
13 <parent>
15 <artifactId>google-cloud-jar-parent</artifactId>
16 <version>1.11.0</version><!-- {x-version-update:google-cloud-java:current} -->
17 <relativePath>../google-cloud-jar-parent/pom.xml</relativePath>
18 </parent>
[all …]
/external/google-cloud-java/java-domains/
Dpom.xml1 <?xml version='1.0' encoding='UTF-8'?>
2 …//www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:/…
5 <artifactId>google-cloud-domains-parent</artifactId>
7 <version>1.14.0</version><!-- {x-version-update:google-cloud-domains:current} -->
8 <name>Google Cloud Domains Parent</name>
13 <parent>
15 <artifactId>google-cloud-jar-parent</artifactId>
16 <version>1.11.0</version><!-- {x-version-update:google-cloud-java:current} -->
17 <relativePath>../google-cloud-jar-parent/pom.xml</relativePath>
18 </parent>
[all …]

12345678910>>...46