Home
last modified time | relevance | path

Searched refs:walk_fn (Results 1 – 25 of 31) sorted by relevance

12

/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/clippy_lints/src/
H A Dunused_async.rs2 use rustc_hir::intravisit::{walk_expr, walk_fn, FnKind, NestedVisitorMap, Visitor};
72 walk_fn(&mut visitor, fn_kind, fn_decl, body.id(), span, hir_id); in check_fn()
H A Dderive.rs7 use rustc_hir::intravisit::{walk_expr, walk_fn, walk_item, FnKind, NestedVisitorMap, Visitor};
402 walk_fn(self, kind, decl, body_id, span, id); in visit_fn()
H A Dunwrap.rs7 use rustc_hir::intravisit::{walk_expr, walk_fn, FnKind, NestedVisitorMap, Visitor};
324 walk_fn(&mut v, kind, decl, body.id(), span, fn_id); in check_fn()
/dports/cad/nvc/nvc-r1.5.3/test/
H A Dtest_heap.c27 static void walk_fn(uint64_t key, void *user, void *context) in walk_fn() function
62 heap_walk(h, walk_fn, &last); in START_TEST()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Native/gc/
H A Dgcinterface.h232 typedef BOOL (* walk_fn)(Object*, void*); typedef
514 virtual void DiagWalkObject(Object* obj, walk_fn fn, void* context) = 0;
517 …virtual void DiagWalkHeap(walk_fn fn, void* context, int gen_number, BOOL walk_large_object_heap_p…
H A Dgcimpl.h201 void DiagWalkObject (Object* obj, walk_fn fn, void* context);
286 …virtual void DiagWalkHeap(walk_fn fn, void* context, int gen_number, BOOL walk_large_object_heap_p…
H A Dgcpriv.h1286 void walk_heap (walk_fn fn, void* context, int gen_number, BOOL walk_large_object_heap_p);
1289 …void walk_heap_per_heap (walk_fn fn, void* context, int gen_number, BOOL walk_large_object_heap_p);
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_ast_passes/src/
H A Dnode_count.rs69 walk_fn(self, fk, s) in visit_fn()
H A Dfeature_gate.rs622 visit::walk_fn(self, fn_kind, span) in visit_fn()
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/xfs/libxfs/
H A Dxfs_alloc.h240 struct xfs_buf *agflbp, xfs_agfl_walk_fn walk_fn, void *priv);
H A Dxfs_alloc.c3470 xfs_agfl_walk_fn walk_fn, in xfs_agfl_walk() argument
3486 error = walk_fn(mp, be32_to_cpu(agfl_bno[i]), priv); in xfs_agfl_walk()
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/xfs/libxfs/
H A Dxfs_alloc.h240 struct xfs_buf *agflbp, xfs_agfl_walk_fn walk_fn, void *priv);
/dports/multimedia/libv4l/linux-5.13-rc2/fs/xfs/libxfs/
H A Dxfs_alloc.h240 struct xfs_buf *agflbp, xfs_agfl_walk_fn walk_fn, void *priv);
H A Dxfs_alloc.c3470 xfs_agfl_walk_fn walk_fn, in xfs_agfl_walk() argument
3486 error = walk_fn(mp, be32_to_cpu(agfl_bno[i]), priv); in xfs_agfl_walk()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_passes/src/
H A Dhir_stats.rs183 hir_visit::walk_fn(self, fk, fd, b, s, id) in visit_fn()
299 ast_visit::walk_fn(self, fk, s) in visit_fn()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_ast_lowering/src/
H A Dindex.rs276 intravisit::walk_fn(self, fk, fd, b, s, id); in visit_fn()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_resolve/src/
H A Ddef_collector.rs161 visit::walk_fn(self, fn_kind, span); in visit_fn()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_lint/src/
H A Dearly.rs152 ast_visit::walk_fn(self, fk, span); in visit_fn()
H A Dlate.rs203 hir_visit::walk_fn(self, fk, decl, body_id, span, id); in visit_fn()
/dports/devel/racer/racer-2.1.48/cargo-crates/rustc-ap-rustc_ast-718.0.0/src/
H A Dvisit.rs137 walk_fn(self, fk, s) in visit_fn()
630 pub fn walk_fn<'a, V: Visitor<'a>>(visitor: &mut V, kind: FnKind<'a>, _span: Span) { in walk_fn() function
/dports/devel/racer/racer-2.1.48/cargo-crates/rustc-ap-rustc_ast-722.0.0/src/
H A Dvisit.rs134 walk_fn(self, fk, s) in visit_fn()
626 pub fn walk_fn<'a, V: Visitor<'a>>(visitor: &mut V, kind: FnKind<'a>, _span: Span) { in walk_fn() function
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_ast/src/
H A Dvisit.rs134 walk_fn(self, fk, s) in visit_fn()
638 pub fn walk_fn<'a, V: Visitor<'a>>(visitor: &mut V, kind: FnKind<'a>, _span: Span) { in walk_fn() function
/dports/lang/rust/rustc-1.58.1-src/vendor/rustc-ap-rustc_ast/src/
H A Dvisit.rs134 walk_fn(self, fk, s) in visit_fn()
626 pub fn walk_fn<'a, V: Visitor<'a>>(visitor: &mut V, kind: FnKind<'a>, _span: Span) { in walk_fn() function
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_hir/src/
H A Dintravisit.rs411 walk_fn(self, fk, fd, b, s, id) in visit_fn()
986 pub fn walk_fn<'v, V: Visitor<'v>>( in walk_fn() function
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Native/Runtime/
H A Dgcrhenv.cpp637 …GCHeapUtilities::GetGCHeap()->DiagWalkObject((Object*)pObject, (walk_fn)pfnScanCallback, pContext); in ScanObject()

12