/third_party/node/deps/v8/include/ |
H A D | v8-extension.h | 28 const char** deps = nullptr, int source_length = -1);
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-extension.h | 28 const char** deps = nullptr, int source_length = -1);
|
/kernel/linux/linux-5.10/drivers/firmware/efi/libstub/ |
H A D | Makefile | 70 libfdt-deps := fdt_rw.c fdt_ro.c fdt_wip.c fdt.c \ 74 $(patsubst %.c,lib-%.o,$(libfdt-deps))
|
/kernel/linux/linux-6.6/drivers/firmware/efi/libstub/ |
H A D | Makefile | 76 libfdt-deps := fdt_rw.c fdt_ro.c fdt_wip.c fdt.c \ 80 $(patsubst %.c,lib-%.o,$(libfdt-deps))
|
/third_party/skia/third_party/externals/tint/src/transform/ |
H A D | transform.cc | 65 std::initializer_list<const ::tint::TypeInfo*> deps) { in Requires() 66 for (auto* dep : deps) { in Requires() 64 Requires(CloneContext& ctx, std::initializer_list<const ::tint::TypeInfo*> deps) Requires() argument
|
/third_party/skia/third_party/externals/abseil-cpp/absl/ |
H A D | abseil.podspec.gen.py | 51 "Rule", "type name package srcs hdrs textual_hdrs deps visibility testonly") 84 deps=get_elem_value(elem, "deps") or [], 187 for dep in sorted(rule.deps):
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassTests.cpp | 5778 const vector<SubpassDependency> deps; 5780 const RenderPass renderPass (attachments, subpasses, deps); 5872 const vector<SubpassDependency> deps; 5875 const RenderPass renderPass (attachments, subpass, deps); 6125 vector<SubpassDependency> deps; 6183 for (SubpassDependency& dependency : deps) 6196 deps.push_back(newDependency); 6232 for (SubpassDependency& dependency : deps) 6247 deps.push_back(newDependency); 6288 for (SubpassDependency& dependency : deps) [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassTests.cpp | 5753 const vector<SubpassDependency> deps; 5755 const RenderPass renderPass (attachments, subpasses, deps); 5847 const vector<SubpassDependency> deps; 5850 const RenderPass renderPass (attachments, subpass, deps); 6088 vector<SubpassDependency> deps; 6146 for (SubpassDependency& dependency : deps) 6159 deps.push_back(newDependency); 6195 for (SubpassDependency& dependency : deps) 6210 deps.push_back(newDependency); 6251 for (SubpassDependency& dependency : deps) [all...] |
/third_party/mesa3d/.gitlab-ci/container/ |
H A D | build-skqp.sh | 73 python tools/git-sync-deps
|
/third_party/node/tools/dep_updaters/ |
H A D | update-nghttp2.sh | 6 DEPS_DIR="$BASE_DIR/deps" 22 CURRENT_VERSION=$(grep "#define NGHTTP2_VERSION" ./deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h | sed -n "s/^.*VERSION \"\(.*\)\"/\1/p") 83 echo "$ git add -A deps/nghttp2" 84 echo "$ git commit -m \"deps: update nghttp2 to $NEW_VERSION\""
|
H A D | update-base64.sh | 6 DEPS_DIR="$BASE_DIR/deps" 22 CURRENT_VERSION=$(grep "base64 LANGUAGES C VERSION" ./deps/base64/base64/CMakeLists.txt | sed -n "s/^.*VERSION \(.*\))/\1/p") 58 # Build configuration is handled by `deps/base64/base64.gyp`, but since `config.h` has to be present for the build 70 echo "$ git add -A deps/base64/base64 src/base64_version.h" 71 echo "$ git commit -m \"deps: update base64 to $NEW_VERSION\""
|
H A D | update-c-ares.sh | 6 DEPS_DIR="$BASE_DIR/deps" 22 CURRENT_VERSION=$(grep "#define ARES_VERSION_STR" ./deps/cares/include/ares_version.h | sed -n "s/^.*VERSION_STR \"\(.*\)\"/\1/p") 71 echo "$ git add -A deps/cares" 72 echo "$ git commit -m \"deps: update c-ares to $NEW_VERSION\""
|
H A D | update-brotli.sh | 6 DEPS_DIR="$BASE_DIR/deps" 22 VERSION_HEX=$(grep "#define BROTLI_VERSION" ./deps/brotli/c/common/version.h | sed 's/.* //') 73 echo "$ git add -A deps/brotli" 74 echo "$ git commit -m \"deps: update brotli to $NEW_VERSION\""
|
/third_party/rust/crates/clap/ |
H A D | Makefile | 43 cargo doc --workspace --all-features --no-deps --document-private-items
|
/third_party/selinux/libsepol/tests/ |
H A D | libsepol-tests.c | 25 #include "test-deps.h" 73 DECLARE_SUITE(deps); in do_tests()
|
/third_party/gn/src/gn/ |
H A D | builder.cc | 278 // Make sure all deps of this config are scheduled to be loaded. For other in ConfigDefined() 283 // relevant and means extra book keeping. Just force load any deps of this in ConfigDefined() 295 if (!AddDeps(record, toolchain->deps(), err)) in ToolchainDefined() 341 "in the deps section of a target (or vice-versa)."; in GetOrCreateRecordOfType() 514 if (!ResolveDeps(&toolchain->deps(), err)) in ResolveItem() 540 bool Builder::ResolveDeps(LabelTargetVector* deps, Err* err) { in ResolveDeps() argument 541 for (LabelTargetPair& cur : *deps) { in ResolveDeps()
|
H A D | json_project_writer.cc | 43 void AddTargetDependencies(const Target* target, TargetSet* deps) { in AddTargetDependencies() argument 45 if (deps->add(pair.ptr)) { in AddTargetDependencies() 46 AddTargetDependencies(pair.ptr, deps); in AddTargetDependencies()
|
H A D | rust_project_writer.cc | 35 // "deps": [ 88 // Get the Rust deps for a target, recursively expanding OutputType::GROUPS 90 // deps from the groups, but will not expand a Rust lib dependency to find any 100 // Inspect (recursively) any group to see if it contains Rust deps. in GetRustDeps() 106 TargetsVector deps; in GetRustDeps() local 107 GetRustDeps(target, &deps); in GetRustDeps() 108 return deps; in GetRustDeps() 321 rust_project << " \"deps\": ["; in WriteCrates()
|
/third_party/ninja/src/ |
H A D | ninja.cc | 146 /// Open the deps log: load it, then open for writing.
175 // and in the deps log, it will have a Node object in state_. (It will also
in IsPathDead() 176 // have an in edge if one of its inputs is another output that's in the deps
in IsPathDead() 177 // log, but having a deps edge product an output that's input to another deps
in IsPathDead() 179 // the deps log, and then a second recompaction will clear the build log,
in IsPathDead() 210 /// Run after loading the build/deps logs.
566 DepsLog::Deps* deps = deps_log_.GetDeps(*it);
in ToolDeps() local 567 if (!deps) {
in ToolDeps() 568 printf("%s: deps no in ToolDeps() [all...] |
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/ |
H A D | build-ideal-tree.js | 31 const addRmPkgDeps = require('../add-rm-pkg-deps.js') 52 // Sorts physically shallower deps up to the front of the queue, because 57 #deps = [] 67 if (!this.#deps[item.depth]) { 69 this.#deps[item.depth] = { sorted: true, items: [item] } 74 if (!this.#deps[item.depth].items.includes(item)) { 76 this.#deps[item.depth].sorted = false 77 this.#deps[item.depth].items.push(item) 87 depth = this.#deps[this.#minDepth] 191 // from there, we start adding nodes to it to satisfy the deps requeste [all...] |
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | ninja.py | 1367 # a few static_library deps, so the link step also needs to depend 2406 deps = "msvc" if flavor == "win" else "gcc" 2417 deps=deps, 2435 deps=deps, 2460 deps=deps, 2468 deps=deps, [all...] |
H A D | analyzer.py | 220 deps: set of Targets this Target depends upon. This is not recursive, only the 239 self.deps = set() 411 # Add dependencies to visit as well as updating back pointers for deps. 421 target.deps.add(dep_target) 458 for dep in target.deps:
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | ninja.py | 1367 # a few static_library deps, so the link step also needs to depend 2403 deps = "msvc" if flavor == "win" else "gcc" 2414 deps=deps, 2432 deps=deps, 2457 deps=deps, 2465 deps=deps, [all...] |
H A D | analyzer.py | 220 deps: set of Targets this Target depends upon. This is not recursive, only the 239 self.deps = set() 411 # Add dependencies to visit as well as updating back pointers for deps. 421 target.deps.add(dep_target) 458 for dep in target.deps:
|
/third_party/node/deps/npm/test/lib/commands/ |
H A D | view.js | 191 const deps = {} 193 deps[i] = '1.0.0' 196 return deps 302 t.test('package with more than 25 deps', async t => {
|