HomeSort by relevance Sort by last modified time
    Searched refs:dependencies (Results 126 - 150 of 1314) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/go/darwin-x86/src/testing/internal/testdeps/
deps.go 5 // Package testdeps provides access to dependencies needed by test execution.
9 // without making those packages direct dependencies of package testing.
10 // Direct dependencies of package testing are harder to write tests for.
  /prebuilts/go/linux-x86/src/testing/internal/testdeps/
deps.go 5 // Package testdeps provides access to dependencies needed by test execution.
9 // without making those packages direct dependencies of package testing.
10 // Direct dependencies of package testing are harder to write tests for.
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
base_config.py 24 "dependencies": {
50 Required fields: "dependencies" and "config_type".
85 "dependencies": dependencies_dict }
88 dependencies: A dictionary with the information needed to
90 dependencies.
103 self._WriteConfigToFile(self._config_path, dependencies=self._config_data)
114 self._config_data = config_data.get('dependencies', {})
121 ValueError: If any of the dependencies contain partial information for
294 curr_config_data = curr_config_data.get('dependencies', {})
368 def _WriteConfigToFile(cls, file_path, dependencies=None)
    [all...]
  /external/llvm/utils/llvm-build/llvmbuild/
componentinfo.py 30 kwargs['dependencies'] = items.get_list('dependencies')
33 def __init__(self, subpath, name, dependencies, parent):
38 self.dependencies = list(dependencies)
68 for r in self.dependencies:
130 def __init__(self, subpath, name, dependencies, parent, library_name,
132 ComponentInfo.__init__(self, subpath, name, dependencies, parent)
206 def __init__(self, subpath, name, dependencies, parent, library_name,
208 LibraryComponentInfo.__init__(self, subpath, name, dependencies, parent
    [all...]
  /external/libdrm/amdgpu/
amdgpu_cs.c 152 struct drm_amdgpu_cs_chunk_dep *dependencies = NULL; local
216 dependencies = malloc(sizeof(struct drm_amdgpu_cs_chunk_dep) *
218 if (!dependencies) {
224 struct amdgpu_cs_fence *info = &ibs_request->dependencies[i];
225 struct drm_amdgpu_cs_chunk_dep *dep = &dependencies[i];
235 /* dependencies chunk */
240 chunks[i].chunk_data = (uint64_t)(uintptr_t)dependencies;
251 free(dependencies);
  /external/v8/src/compiler/
js-global-object-specialization.cc 7 #include "src/compilation-dependencies.h"
30 CompilationDependencies* dependencies)
34 dependencies_(dependencies),
106 dependencies()->AssumePropertyCell(property_cell);
183 dependencies()->AssumePropertyCell(property_cell);
193 dependencies()->AssumePropertyCell(property_cell);
202 dependencies()->AssumeMapStable(property_cell_value_map);
234 dependencies()->AssumePropertyCell(property_cell);
js-typed-lowering.h 41 JSTypedLowering(Editor* editor, CompilationDependencies* dependencies,
92 CompilationDependencies* dependencies() const;
  /external/v8/tools/
isolate_driver.py 76 build_target, dependencies = line[6:].split(': ', 1)
83 build_steps[i] = dependencies
141 dependencies.
150 """Recursively adds all the interesting dependencies for |target|
161 dependencies = raw_build_to_deps(build_steps[target])
165 logging.debug('collect_deps(%s) -> %s', target, dependencies)
166 for dependency in dependencies:
171 def post_process_deps(build_dir, dependencies):
202 return filter(is_exe, map(filter_item, dependencies))
242 'Binary dependencies:%s', ''.join('\n ' + i for i in binary_deps)
    [all...]
  /system/tpm/tpm_manager/server/
tpm_manager_service.cc 143 google::protobuf::RepeatedPtrField<std::string>* dependencies = local
145 for (int i = 0; i < dependencies->size(); i++) {
146 if (dependencies->Get(i) == owner_dependency) {
147 dependencies->SwapElements(i, (dependencies->size() - 1));
148 dependencies->RemoveLast();
152 if (dependencies->empty()) {
  /prebuilts/tools/common/m2/repository/org/anarres/jarjar/jarjar-core/1.0.0/
jarjar-core-1.0.0.jar 
  /art/test/
Android.run-test.mk 20 # Dependencies for actually running a run-test.
144 define core-image-dependencies
171 # Add core image dependencies required for given target - HOST or TARGET,
177 $(call core-image-dependencies,$(target),$(image),$(compiler),$(address_size)))))))
179 test-art-host-run-test-dependencies : $(host_prereq_rules)
180 test-art-target-run-test-dependencies : $(target_prereq_rules)
181 test-art-run-test-dependencies : test-art-host-run-test-dependencies test-art-target-run-test-dependencies
190 $$(build_target) : test-art-$(1)-run-test-dependencies
    [all...]
  /external/autotest/client/site_tests/graphics_dEQP/
generate_controlfiles.py 102 return "DEPENDENCIES = 'cleanup-reboot'\n"
138 dependencies = get_dependencies(test)
145 testname, attributes, time, dependencies, test.filter, subset,
154 testname, attributes, time, dependencies, test.filter, subset,
163 dependencies = get_dependencies(test)
168 dependencies, test.filter, subset,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/
VersionInfo.java 17 import com.android.systemui.plugins.annotations.Dependencies;
67 Dependencies dependencies = cls.getDeclaredAnnotation(Dependencies.class); local
68 if (dependencies != null) {
69 for (DependsOn d : dependencies.value()) {
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
MethodBaseExpr.java 130 final List<Dependency> dependencies = constructDynamicChildrenDependencies(); local
131 for (Dependency dependency : dependencies) {
136 return dependencies;
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
SourceFiles.java 82 Types types, Iterable<? extends DependencyRequest> dependencies) {
86 for (DependencyRequest dependency : dependencies) {
107 Iterable<? extends DependencyRequest> dependencies) {
111 for (DependencyRequest dependency : dependencies) {
131 Iterable<? extends DependencyRequest> dependencies) {
133 indexDependenciesByKey(dependencies);
  /prebuilts/tools/common/m2/repository/org/twdata/maven/mojo-executor/2.2.0/
mojo-executor-2.2.0.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
InstallDependencyPage.java 66 setTitle("Install Dependencies");
181 public static boolean isInstalled(List<Pair<String, Integer>> dependencies) {
182 for (Pair<String, Integer> dependency : dependencies) {
240 List<Pair<String, Integer>> dependencies = mTemplate.getDependencies(); local
241 if (dependencies.size() > 1 || dependencies.size() == 1
242 && !dependencies.get(0).getFirst().equals(SUPPORT_LIBRARY_NAME)) {
  /external/mockito/
Android.mk 42 # dependencies. Most projects should use mockito-target instead, which includes
60 # Main target for dependent projects. Bundles all the run-time dependencies
88 # dependencies.
100 # Host prebuilt dependencies.
  /external/smali/dexlib2/
build.gradle 48 dependencies {
  /frameworks/base/core/java/android/content/pm/split/
SplitAssetDependencyLoader.java 33 * Loads AssetManagers for splits and their dependencies. This SplitAssetLoader implementation
47 SparseArray<int[]> dependencies, int flags) {
48 super(dependencies);
  /packages/apps/PackageInstaller/
Android.mk 32 # Comment for now unitl all private API dependencies are removed
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
MultibindingComponent.java 32 dependencies = MultibindingDependency.class
  /external/smali/smali/
build.gradle 39 dependencies {
75 dependencies {
90 // Build a separate jar that contains all dependencies
  /external/smali/smalidea/
build.gradle 38 dependencies {
90 // so that idea classes aren't included as project dependencies, since they will already exist
115 dependencies {
203 dependencies {
  /prebuilts/go/darwin-x86/src/runtime/
fastlog2.go 11 // sampling, without introducing dependencies into package math. This
32 // Taken from math.Float64bits to avoid dependencies into package math.

Completed in 635 milliseconds

1 2 3 4 56 7 8 91011>>