/third_party/skia/tests/ |
H A D | IncrTopoSortTest.cpp | 44 for (Node* dependent : fNodesThatDependOnMe) { in validate() 45 REPORTER_ASSERT(reporter, this->indexInSort() < dependent->indexInSort()); in validate() 55 Node* dependent(int index) const { in dependent() function in Node 72 void addDependent(Node* dependent) { in addDependent() argument 73 fNodesThatDependOnMe.push_back(dependent); in addDependent() 102 // 'dependedOn' must appear before 'dependent' in the sort 103 void addEdge(Node* dependedOn, Node* dependent) { in addEdge() argument 107 this->addEdges(&tmp, dependent); in addEdge() 110 // All the nodes in 'dependedOn' must appear before 'dependent' in the sort. 125 void addEdges(SkTDArray<Node*>* dependedOn, Node* dependent) { in addEdges() argument 230 Node* dependent = node->dependent(i); dfs() local [all...] |
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | input_test.py | 19 def _create_dependency(self, dependent, dependency): 20 dependent.dependencies.append(dependency) 21 dependency.dependents.append(dependent)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | input_test.py | 19 def _create_dependency(self, dependent, dependency): 20 dependent.dependencies.append(dependency) 21 dependency.dependents.append(dependent)
|
/third_party/skia/src/gpu/ |
H A D | GrRenderTask.cpp | 256 void GrRenderTask::addDependent(GrRenderTask* dependent) { in addDependent() argument 257 fDependents.push_back(dependent); in addDependent() 261 bool GrRenderTask::isDependent(const GrRenderTask* dependent) const { in isDependent() 263 if (fDependents[i] == dependent) { in isDependent()
|
H A D | GrRenderTask.h | 222 void addDependent(GrRenderTask* dependent); 223 SkDEBUGCODE(bool isDependent(const GrRenderTask* dependent) const;)
|
/third_party/skia/buildtools/checkdeps/ |
H A D | rules.py | 34 """Returns a tuple (allow, dependent dir, dependee dir) for this rule, 35 which is fully self-sufficient to answer the question whether the dependent 122 """Returns a list of tuples (allow, dependent dir, dependee dir) for the 127 (allow, dependent, dependee) = rule.AsDependencyTuple() 128 tup = (allow, dependent + extra_dependent_suffix, dependee)
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/loop_optimizations/ |
H A D | dependence_analysis.cpp | 2810 auto dependent = DistanceVector({directions_all, directions_all}); 2813 CheckDependenceAndDirection(load[0], store[0], false, dependent, &analysis); 2814 CheckDependenceAndDirection(load[1], store[1], false, dependent, &analysis); 2815 CheckDependenceAndDirection(load[2], store[2], false, dependent, &analysis); 2816 CheckDependenceAndDirection(load[3], store[3], false, dependent, &analysis); 2818 CheckDependenceAndDirection(load[5], store[5], false, dependent, &analysis); 2819 CheckDependenceAndDirection(load[6], store[6], false, dependent, &analysis); 2820 CheckDependenceAndDirection(load[7], store[7], false, dependent, &analysis); 2822 CheckDependenceAndDirection(load[9], store[9], false, dependent, &analysis); 2823 CheckDependenceAndDirection(load[10], store[10], false, dependent, [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/loop_optimizations/ |
H A D | dependence_analysis.cpp | 2810 auto dependent = DistanceVector({directions_all, directions_all}); 2813 CheckDependenceAndDirection(load[0], store[0], false, dependent, &analysis); 2814 CheckDependenceAndDirection(load[1], store[1], false, dependent, &analysis); 2815 CheckDependenceAndDirection(load[2], store[2], false, dependent, &analysis); 2816 CheckDependenceAndDirection(load[3], store[3], false, dependent, &analysis); 2818 CheckDependenceAndDirection(load[5], store[5], false, dependent, &analysis); 2819 CheckDependenceAndDirection(load[6], store[6], false, dependent, &analysis); 2820 CheckDependenceAndDirection(load[7], store[7], false, dependent, &analysis); 2822 CheckDependenceAndDirection(load[9], store[9], false, dependent, &analysis); 2823 CheckDependenceAndDirection(load[10], store[10], false, dependent, [all...] |
/third_party/spirv-tools/test/opt/loop_optimizations/ |
H A D | dependence_analysis.cpp | 2804 auto dependent = DistanceVector({directions_all, directions_all}); 2807 CheckDependenceAndDirection(load[0], store[0], false, dependent, &analysis); 2808 CheckDependenceAndDirection(load[1], store[1], false, dependent, &analysis); 2809 CheckDependenceAndDirection(load[2], store[2], false, dependent, &analysis); 2810 CheckDependenceAndDirection(load[3], store[3], false, dependent, &analysis); 2812 CheckDependenceAndDirection(load[5], store[5], false, dependent, &analysis); 2813 CheckDependenceAndDirection(load[6], store[6], false, dependent, &analysis); 2814 CheckDependenceAndDirection(load[7], store[7], false, dependent, &analysis); 2816 CheckDependenceAndDirection(load[9], store[9], false, dependent, &analysis); 2817 CheckDependenceAndDirection(load[10], store[10], false, dependent, [all...] |
/third_party/ninja/src/ |
H A D | build.h | 88 bool AddSubTarget(const Node* node, const Node* dependent, std::string* err,
|
H A D | build.cc | 97 bool Plan::AddSubTarget(const Node* node, const Node* dependent, string* err,
in AddSubTarget() argument 108 if (dependent)
in AddSubTarget() 109 referenced = ", needed by '" + dependent->path() + "',";
in AddSubTarget() 400 // Check if this dependent node is now dirty. Also checks for new cycles.
in RefreshDyndepDependents()
|
/third_party/musl/scripts/build_lite/ |
H A D | Makefile | 151 musl_install_for_liteos_a_user: LDFLAGS = $(shell $(CC) -print-file-name=libunwind.a) -Wl,--no-dependent-libraries 225 musl_install_for_linux_user: LDFLAGS = $(shell $(CC) -print-file-name=libunwind.a) -Wl,--no-dependent-libraries
|
/third_party/node/src/ |
H A D | module_wrap.cc | 520 ModuleWrap* dependent = GetFromModule(env, referrer); in ResolveModuleCallback() local 521 if (dependent == nullptr) { in ResolveModuleCallback() 527 if (dependent->resolve_cache_.count(specifier_std) != 1) { in ResolveModuleCallback() 534 dependent->resolve_cache_[specifier_std].Get(isolate); in ResolveModuleCallback()
|
/third_party/libunwind/libunwind/doc/ |
H A D | unw_set_reg.tex | 23 The register numbering is target-dependent and described in separate
|
H A D | unw_get_fpreg.tex | 23 The register numbering is target-dependent and described in separate
|
H A D | unw_get_reg.tex | 23 The register numbering is target-dependent and described in separate
|
H A D | unw_init_remote.tex | 32 of \Var{arg} is entirely dependent on the address-space in use;
|
H A D | unw_set_fpreg.tex | 23 The register numbering is target-dependent and described in separate
|
H A D | unw_resume.tex | 58 dependent on the target-platform and are regulated by the
|
/third_party/skia/third_party/externals/brotli/ |
H A D | configure-cmake | 123 --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
|
/third_party/protobuf/src/google/protobuf/compiler/php/ |
H A D | php_generator.cc | 1095 for (auto dependent : deps[file]) { in GenerateAddFilesToPool() 1096 if (dependency_count[dependent] == 1) { in GenerateAddFilesToPool() 1097 dependency_count.erase(dependent); in GenerateAddFilesToPool() 1098 nodes_without_dependency.insert(dependent); in GenerateAddFilesToPool() 1100 dependency_count[dependent] -= 1; in GenerateAddFilesToPool()
|
/third_party/ffmpeg/ffbuild/ |
H A D | common.mak | 43 # Use PREPEND here so that later (target-dependent) additions to CPPFLAGS
|
/third_party/gn/src/gn/ |
H A D | function_toolchain.cc | 117 When true, configs (public and all-dependent) will cross the boundary out 863 dependent targets be re-linked. If the shared library is changed but no 864 imports or exports are different, dependent code needn't be relinked, which
|
H A D | variables.cc | 546 arflags in a config and set that as a public or "all dependent" config, but 548 libraries dependent on each other, this can cause the flags to propagate up 952 not handle dependent static libraries properly. This makes it easier to write 1181 propagated up the dependency tree and linked to dependent targets, but do not 1243 A list of label patterns (see "gn help label_pattern") that allow dependent 1273 "public_api.h", # Normal public API for dependent targets. 1430 static libraries will be a no-op. If you want to apply ldflags to dependent 1884 variable is defined on a target, dependent targets may only include files on 1924 # This allows starting compilation in dependent targets earlier. 1946 These dependent target [all...] |
H A D | command_desc.cc | 565 configs pushed onto this target via public or "all dependent" configs.
|