Home
last modified time | relevance | path

Searched refs:traversal (Results 1 – 25 of 124) sorted by relevance

12345

/third_party/gn/src/gn/
Dcommand_clean.cc80 base::FileEnumerator traversal( in CleanOneDir() local
83 for (base::FilePath current = traversal.Next(); !current.empty(); in CleanOneDir()
84 current = traversal.Next()) { in CleanOneDir()
/third_party/typescript/src/harness/
DvfsUtil.ts265 public scanSync(path: string, axis: Axis, traversal: Traversal) {
268 … this._scan(path, this._stat(this._walk(path)), axis, traversal, /*noFollow*/ false, results);
278 public lscanSync(path: string, axis: Axis, traversal: Traversal) {
281 …this._scan(path, this._stat(this._walk(path, /*noFollow*/ true)), axis, traversal, /*noFollow*/ tr…
285 …private _scan(path: string, stats: Stats, axis: Axis, traversal: Traversal, noFollow: boolean, res…
287 if (!traversal.accept || traversal.accept(path, stats)) {
296 if (!traversal.traverse || traversal.traverse(dirname, stats)) {
297 … this._scan(dirname, stats, "ancestors-or-self", traversal, noFollow, results);
304 … if (stats.isDirectory() && (!traversal.traverse || traversal.traverse(path, stats))) {
309 … this._scan(childpath, stats, "descendants-or-self", traversal, noFollow, results);
/third_party/rust/crates/bindgen/bindgen/ir/
Dmod.rs22 pub mod traversal; module
Ddot.rs4 use super::traversal::Trace;
Dcontext.rs20 use super::traversal::{self, Edge, ItemTraversal};
486 traversal: ItemTraversal<'ctx, ItemSet, Vec<ItemId>>, field
494 let id = self.traversal.next()?; in next()
517 traversal: ItemTraversal::new(ctx, roots, predicate), in new()
1204 ) -> traversal::AssertNoDanglingItemsTraversal { in assert_no_dangling_item_traversal()
1209 traversal::AssertNoDanglingItemsTraversal::new( in assert_no_dangling_item_traversal()
1212 traversal::all_edges, in assert_no_dangling_item_traversal()
2427 traversal::all_edges in compute_allowlisted_and_codegen_items()
2433 traversal::only_inner_type_edges in compute_allowlisted_and_codegen_items()
2447 traversal::codegen_edges, in compute_allowlisted_and_codegen_items()
Dtemplate.rs32 use super::traversal::{EdgeKind, Trace, Tracer};
Dobjc.rs6 use super::traversal::{Trace, Tracer};
/third_party/gn/src/base/files/
Dfile_util_win.cc59 FileEnumerator traversal(path, false, in DeleteFileRecursive() local
63 for (FilePath current = traversal.Next(); !current.empty(); in DeleteFileRecursive()
64 current = traversal.Next()) { in DeleteFileRecursive()
66 FileEnumerator::FileInfo info = traversal.GetInfo(); in DeleteFileRecursive()
Dfile_util_posix.cc188 FileEnumerator traversal(path, true, in DeleteFile() local
191 for (FilePath current = traversal.Next(); !current.empty(); in DeleteFile()
192 current = traversal.Next()) { in DeleteFile()
193 if (traversal.GetInfo().IsDirectory()) in DeleteFile()
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/
Draytraversal.txt5 [[ray-traversal]]
8 The ray traversal process identifies and handles intersections between a ray
11 Ray traversal cannot be started by a Vulkan API command directly - a shader
33 instance to continue traversal within that instance; therefore the transform
212 [[ray-traversal-watertight]]
246 [[ray-traversal-culling-primitive]]
259 in the pipeline, traversal with code:OpTraceRayKHR calls will all behave as
267 the pipeline, traversal with code:OpTraceRayKHR calls will all behave as if
282 [[ray-traversal-culling-face]]
286 of ray traversal is to determine if a triangle primitive is back- or
[all …]
/third_party/rust/crates/syn/examples/
DREADME.md18 An attribute procedural macro that uses a syntax tree traversal to transform
/third_party/skia/third_party/externals/angle2/doc/
DWritingShaderASTTransformations.md22 … updateTree() is called after the traversal is complete - this way the replacement doesn't affect …
/third_party/node/deps/npm/node_modules/libnpmfund/
DREADME.md72 - `countOnly`: Uses the tree-traversal logic from **npm fund** but skips over
99 - `countOnly`: Uses the tree-traversal logic from **npm fund** but skips over
/third_party/ltp/tools/sparse/sparse-src/Documentation/
Ddev-options.rst58 Dump the reverse postorder traversal of the CFG.
/third_party/rust/crates/bindgen/bindgen/ir/analysis/
Dhas_destructor.rs6 use crate::ir::traversal::EdgeKind;
Dhas_type_param_in_array.rs7 use crate::ir::traversal::EdgeKind;
Dhas_vtable.rs5 use crate::ir::traversal::EdgeKind;
Dhas_float.rs7 use crate::ir::traversal::EdgeKind;
Dsizedness.rs8 use crate::ir::traversal::EdgeKind;
/third_party/expat/
D14-backport-Fix-build_model-regression.patch7 correctly. A preorder traversal is not required and turned out to be the
45 - * during pre-order (node first) depth-first traversal.
/third_party/openssl/doc/man3/
DBIO_find_type.pod5 BIO_find_type, BIO_next, BIO_method_type - BIO chain traversal
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_KHR_ray_tracing_pipeline.txt84 * Ray tracing commands which initiate the ray pipeline traversal and
86 traversal conditions are met
149 * added <<ray-traversal-watertight, watertightness guarantees>>
/third_party/node/deps/v8/tools/
Dconsarray.mjs30 * Constructs a ConsArray object. It is used mainly for tree traversal.
/third_party/vk-gl-cts/external/vulkan-docs/src/
Dvkspec.txt136 // Ray traversal
/third_party/skia/third_party/externals/microhttpd/doc/chapters/
Dsessions.inc61 Note that the example uses a simple, $O(n)$ linked list traversal to

12345