Home
last modified time | relevance | path

Searched refs:dependencies (Results 1 - 25 of 217) sorted by relevance

123456789

/third_party/node/deps/npm/test/lib/commands/
H A Dls.js24 dependencies: {
51 dependencies: {
61 dependencies: {
139 dependencies: {
150 'should output tree representation of dependencies structure'
178 dependencies: {
215 dependencies: {
236 dependencies: {
248 dependencies: {
280 dependencies
[all...]
H A Dsbom.js43 dependencies: {
98 dependencies: {
121 dependencies: {
144 dependencies: {
169 dependencies: {
194 dependencies: {
216 dependencies: {
243 dependencies: {
267 dependencies: {
291 dependencies
[all...]
H A Dfund.js16 dependencies: {
27 dependencies: {
55 dependencies: {
67 dependencies: {
107 dependencies: {
140 dependencies: {
168 dependencies: {
239 dependencies: {
247 dependencies: {
267 t.matchSnapshot(joinedOutput(), 'should omit dependencies wit
[all...]
H A Doutdated.js18 dependencies: {
90 dependencies: {
110 dependencies: {
148 dependencies: {
160 dependencies: {
189 dependencies: {
206 dependencies: {
217 dependencies: {
226 dependencies: {
413 dependencies
[all...]
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/
H A Dscript_mutator.js68 _addMjsunitIfNeeded(dependencies, input) {
69 if (dependencies.has('mjsunit')) {
86 dependencies.set('mjsunit', sourceHelpers.loadDependencyAbs(
94 _addSpiderMonkeyShellIfNeeded(dependencies, input) {
111 // Add shell.js dependencies in reverse to add ones that are higher up in
114 if (!dependencies.has(shellJsPaths[i])) {
117 dependencies.set(shellJsPaths[i], dependency);
122 _addJSTestStubsIfNeeded(dependencies, input) {
123 if (dependencies.has('jstest_stubs') ||
127 dependencies
[all...]
H A Ddifferential_script_mutator.js73 function hasMjsunit(dependencies) {
74 return dependencies.some(dep => dep.relPath.endsWith('mjsunit.js'));
77 function hasJSTests(dependencies) {
78 return dependencies.some(dep => dep.relPath.endsWith('jstest_stubs.js'));
135 * Adds extra dependencies for differential fuzzing.
138 const dependencies = super.resolveDependencies(inputs);
142 dependencies.push(
145 dependencies.push(
148 dependencies.push(
151 if (hasMjsunit(dependencies)) {
[all...]
H A Ddb.js213 dependencies, needsSuper) {
218 this.dependencies = dependencies;
224 if (!expression.dependencies) {
229 for (let dependency of expression.dependencies) {
251 const dependencies = {};
252 if (expression.dependencies) {
253 for (const dependency of expression.dependencies) {
254 dependencies[dependency] = babelTypes.identifier('__v_0');
259 expressionTemplate(dependencies);
[all...]
/third_party/node/lib/internal/policy/
H A Dmanifest.js87 #dependencies;
110 * @param {DependencyMap | undefined} dependencies
116 dependencies,
120 if (dependencies === kFallThrough ||
121 dependencies === undefined ||
122 dependencies === null) {
123 this.#dependencies = dependencies;
127 const keys = ObjectKeys(dependencies);
149 this.#dependencies
[all...]
/third_party/node/tools/gyp/pylib/gyp/
H A Dinput.py33 dependency_sections = ["dependencies", "export_dependent_settings"]
91 "dependencies",
119 "dependencies",
463 # Look for dependencies. This means that dependency resolution occurs
465 # in other words, you can't put a "dependencies" section inside a "post"
468 dependencies = []
471 if "dependencies" not in target_dict:
473 for dependency in target_dict["dependencies"]:
474 dependencies.append(
479 for dependency in dependencies
[all...]
H A DMSVSNew.py122 dependencies=None,
135 dependencies: List of other Project objects this project is dependent
152 self.dependencies = list(dependencies or [])
163 def set_dependencies(self, dependencies):
164 self.dependencies = list(dependencies or [])
296 if e.dependencies:
298 for d in e.dependencies:
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dinput.py33 dependency_sections = ["dependencies", "export_dependent_settings"]
91 "dependencies",
119 "dependencies",
463 # Look for dependencies. This means that dependency resolution occurs
465 # in other words, you can't put a "dependencies" section inside a "post"
468 dependencies = []
471 if "dependencies" not in target_dict:
473 for dependency in target_dict["dependencies"]:
474 dependencies.append(
479 for dependency in dependencies
[all...]
H A DMSVSNew.py122 dependencies=None,
135 dependencies: List of other Project objects this project is dependent
152 self.dependencies = list(dependencies or [])
163 def set_dependencies(self, dependencies):
164 self.dependencies = list(dependencies or [])
294 if isinstance(e, MSVSProject) and e.dependencies:
296 for d in e.dependencies:
/third_party/node/deps/npm/node_modules/libnpmfund/lib/
H A Dindex.js66 function retrieveDependencies (dependencies) {
67 const trailing = dependencies[_trailingDependencies]
72 dependencies,
77 return dependencies
80 function hasDependencies (dependencies) {
81 return dependencies && (
82 Object.keys(dependencies).length ||
83 dependencies[_trailingDependencies]
155 fundingItem.dependencies =
161 } else if (hasDependencies(fundingItem.dependencies)) {
[all...]
/third_party/pulseaudio/src/
H A Ddepmod.py47 dependencies = {} variable
51 dependencies[fn] = []
55 if exported_symbols[sym] not in dependencies[fn]:
56 dependencies[fn].append(exported_symbols[sym])
66 k = dependencies.keys()
69 dependencies[fn].sort()
70 print "%s: %s" % (fn, string.join(dependencies[fn], " "))
/third_party/mbedtls/tests/scripts/
H A Dtest_generate_test_code.py36 Test that gen_dep() correctly creates dependencies for given
40 dependencies = ['DEP1', 'DEP2']
41 dep_start, dep_end = gen_dependencies(dependencies)
55 Test that gen_dep() correctly creates dependencies for given
59 dependencies = ['!DEP1', '!DEP2']
60 dep_start, dep_end = gen_dependencies(dependencies)
74 Test that gen_dep() correctly creates dependencies for given
78 dependencies = ['!DEP1', 'DEP2']
79 dep_start, dep_end = gen_dependencies(dependencies)
93 Test that gen_dep() correctly creates dependencies fo
[all...]
H A Dgenerate_test_code.py28 optional build macro dependencies
32 Test dependencies are build macros that can be specified to indicate
54 format patterns to specify test suite dependencies, start and end
55 of functions and function dependencies. Check any existing functions
75 Build dependencies and integer expressions (in the test parameters)
79 for dependencies and integer expressions.
124 for the build dependencies specified
137 build dependencies and generate
195 DEPENDENCY_REGEX = r'depends_on:(?P<dependencies>.*)'
281 def gen_dependencies(dependencies)
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DFileDescriptor.cs83 private FileDescriptor(ByteString descriptorData, FileDescriptorProto proto, IEnumerable<FileDescriptor> dependencies, DescriptorPool pool, bool allowUnknownDependencies, GeneratedClrTypeInfo generatedCodeInfo) in FileDescriptor() argument
88 Dependencies = new ReadOnlyCollection<FileDescriptor>(dependencies.ToList()); in FileDescriptor()
90 PublicDependencies = DeterminePublicDependencies(this, proto, dependencies, allowUnknownDependencies); in FileDescriptor()
215 /// Extracts public dependencies from direct dependencies. This is a static method despite its
218 private static IList<FileDescriptor> DeterminePublicDependencies(FileDescriptor @this, FileDescriptorProto proto, IEnumerable<FileDescriptor> dependencies, bool allowUnknownDependencies)
220 var nameToFileMap = dependencies.ToDictionary(file => file.Name);
237 // Ignore unknown dependencies.
292 /// Unmodifiable list of this file's dependencies (imports).
297 /// Unmodifiable list of this file's public dependencies (publi
363 BuildFrom(ByteString descriptorData, FileDescriptorProto proto, FileDescriptor[] dependencies, bool allowUnknownDependencies, GeneratedClrTypeInfo generatedCodeInfo) BuildFrom() argument
419 FromGeneratedCode( byte[] descriptorData, FileDescriptor[] dependencies, GeneratedClrTypeInfo generatedCodeInfo) FromGeneratedCode() argument
449 GetAllExtensions(FileDescriptor[] dependencies, GeneratedClrTypeInfo generatedInfo) GetAllExtensions() argument
[all...]
/third_party/icu/icu4c/source/test/depstest/
H A Ddepstest.py35 import dependencies namespace
106 # TODO: Move this data to dependencies.txt?
119 item = dependencies.items[name]
165 if neededFile in dependencies.file_to_item:
166 neededItem = "but %s does not depend on %s (for %s)" % (name, dependencies.file_to_item[neededFile], neededFile)
176 """Loads dependencies.txt, reads the libraries' .o files, and processes them.
178 Modifies dependencies.items: Recursively builds each item's system_symbols and exports.
182 dependencies.Load()
183 for name_and_item in iteritems(dependencies.items):
190 for library_name in dependencies
[all...]
/third_party/mbedtls/scripts/mbedtls_dev/
H A Dtest_case.py42 self.dependencies = [] #type: List[str]
52 def set_dependencies(self, dependencies: List[str]) -> None:
53 self.dependencies = dependencies
82 if self.dependencies:
83 out.write('depends_on:' + ':'.join(self.dependencies) + '\n')
H A Decp.py26 dependencies = ["MBEDTLS_ECP_DP_SECP192R1_ENABLED", variable in EcpP192R1Raw
103 dependencies = ["MBEDTLS_ECP_DP_SECP224R1_ENABLED", variable in EcpP224R1Raw
182 dependencies = ["MBEDTLS_ECP_DP_SECP256R1_ENABLED", variable in EcpP256R1Raw
266 dependencies = ["MBEDTLS_ECP_DP_SECP384R1_ENABLED", variable in EcpP384R1Raw
389 dependencies = ["MBEDTLS_ECP_DP_SECP521R1_ENABLED", variable in EcpP521R1Raw
496 dependencies = ["MBEDTLS_ECP_DP_SECP192K1_ENABLED"] variable in EcpP192K1Raw
568 dependencies = ["MBEDTLS_ECP_DP_SECP224K1_ENABLED"] variable in EcpP224K1Raw
642 dependencies = ["MBEDTLS_ECP_DP_SECP256K1_ENABLED"] variable in EcpP256K1Raw
718 dependencies = ["MBEDTLS_ECP_DP_CURVE25519_ENABLED"] variable in EcpP255Raw
787 dependencies variable in EcpP448Raw
[all...]
/third_party/node/tools/gyp/tools/
H A Dpretty_sln.py10 dependencies.
25 # if all dependencies are done, we can build it, otherwise we try to build the
39 # A list of dependencies associated with a project.
40 dependencies = dict()
72 dependencies[current_project] = []
92 dependencies[current_project].append(results.group(1))
95 # Change all dependencies clsid to name instead.
96 for project in dependencies:
97 # For each dependencies in this project
99 for dep in dependencies[projec
[all...]
/third_party/skia/tools/
H A Dgit-sync-deps8 """Parse a DEPS file and git checkout all of the dependencies.
65 'Usage: run to grab dependencies, with optional platform support:\n')
189 """Grab dependencies, with optional platform support.
205 dependencies = deps_file['deps'].copy()
209 dependencies.update(value)
212 # Add OS-specific dependencies
214 dependencies.update(os_specific_dependencies[os_name])
215 for directory in dependencies:
216 for other_dir in dependencies:
220 for directory in sorted(dependencies)
[all...]
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/
H A Dcrossover_mutator.js42 const dependencies = {};
44 if (randomExpression.dependencies) {
49 for (const dependency of randomExpression.dependencies) {
50 dependencies[dependency] = random.single(variables);
55 toInsert = toInsert(dependencies);
/third_party/node/deps/v8/src/compiler/
H A Dmap-inference.cc7 #include "src/compiler/compilation-dependencies.h"
114 CompilationDependencies* dependencies) { in RelyOnMapsViaStability()
116 return RelyOnMapsHelper(dependencies, nullptr, nullptr, Control{nullptr}, {}); in RelyOnMapsViaStability()
120 CompilationDependencies* dependencies, JSGraph* jsgraph, Effect* effect, in RelyOnMapsPreferStability()
124 if (RelyOnMapsViaStability(dependencies)) return true; in RelyOnMapsPreferStability()
129 bool MapInference::RelyOnMapsHelper(CompilationDependencies* dependencies, in RelyOnMapsHelper() argument
136 if (dependencies != nullptr && in RelyOnMapsHelper()
139 dependencies->DependOnStableMap(map); in RelyOnMapsHelper()
113 RelyOnMapsViaStability( CompilationDependencies* dependencies) RelyOnMapsViaStability() argument
119 RelyOnMapsPreferStability( CompilationDependencies* dependencies, JSGraph* jsgraph, Effect* effect, Control control, const FeedbackSource& feedback) RelyOnMapsPreferStability() argument
/third_party/node/deps/npm/test/lib/utils/completion/
H A Dinstalled-deep.js9 dependencies: {
26 dependencies: {
41 dependencies: {
68 dependencies: {
78 dependencies: {
114 dependencies: {

Completed in 10 milliseconds

123456789