HomeSort by relevance Sort by last modified time
    Searched refs:Walk (Results 1 - 25 of 151) sorted by null

1 2 3 4 5 6 7

  /prebuilts/go/darwin-x86/src/go/ast/
walk.go 9 // A Visitor's Visit method is invoked for each node encountered by Walk.
10 // If the result visitor w is not nil, Walk visits each of the children
20 Walk(v, x)
26 Walk(v, x)
32 Walk(v, x)
38 Walk(v, x)
42 // TODO(gri): Investigate if providing a closure to Walk leads to
45 // Walk traverses an AST in depth-first order: It starts by calling
47 // v.Visit(node) is not nil, Walk is invoked recursively with visitor
51 func Walk(v Visitor, node Node)
    [all...]
  /prebuilts/go/linux-x86/src/go/ast/
walk.go 9 // A Visitor's Visit method is invoked for each node encountered by Walk.
10 // If the result visitor w is not nil, Walk visits each of the children
20 Walk(v, x)
26 Walk(v, x)
32 Walk(v, x)
38 Walk(v, x)
42 // TODO(gri): Investigate if providing a closure to Walk leads to
45 // Walk traverses an AST in depth-first order: It starts by calling
47 // v.Visit(node) is not nil, Walk is invoked recursively with visitor
51 func Walk(v Visitor, node Node)
    [all...]
  /external/regex-re2/re2/testing/
null_walker.cc 20 // Should never be called: we use Walk not WalkExponential.
41 w.Walk(this, false);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/
BaseOrderedCollectionRedBlackTreeLib.c 308 RED_BLACK_TREE_NODE *Walk;
319 Walk = Node->Right;
320 if (Walk != NULL) {
321 while (Walk->Left != NULL) {
322 Walk = Walk->Left;
324 return Walk;
332 Walk = Child->Parent;
333 while (Walk != NULL && Child == Walk->Right) {
    [all...]
  /art/runtime/gc/accounting/
heap_bitmap.cc 74 void HeapBitmap::Walk(ObjectCallback* callback, void* arg) {
76 bitmap->Walk(callback, arg);
79 bitmap->Walk(callback, arg);
heap_bitmap.h 51 void Walk(ObjectCallback* callback, void* arg)
  /prebuilts/go/darwin-x86/doc/play/
tree.go 32 // Walk traverses a tree depth-first,
34 func Walk(t *Tree, ch chan int) {
38 Walk(t.Left, ch)
40 Walk(t.Right, ch)
43 // Walker launches Walk in a new goroutine,
48 Walk(t, ch)
  /prebuilts/go/linux-x86/doc/play/
tree.go 32 // Walk traverses a tree depth-first,
34 func Walk(t *Tree, ch chan int) {
38 Walk(t.Left, ch)
40 Walk(t.Right, ch)
43 // Walker launches Walk in a new goroutine,
48 Walk(t, ch)
  /external/regex-re2/re2/
mimics_pcre.cc 44 // Should never be called: we use Walk not WalkExponential.
103 return w.Walk(this, true);
121 // Should never be called: we use Walk not WalkExponential.
182 return w.Walk(re, true);
walker-inl.h 31 // At the top-most Regexp, parent_arg is arg passed to walk.
32 // If PreVisit sets *stop to true, the walk does not recurse
51 // when Walk notices that more than one child is the same re.
56 // has been used up and we're trying to abort the walk
67 T Walk(Regexp* re, T top_arg);
69 // Like Walk, but doesn't use Copy. This can lead to
73 // the walk will be cut off early.
74 // If the walk *is* cut off early, ShortVisit(re)
80 // Walk always enters and exits with an empty stack.
84 // Returns whether walk was cut off
    [all...]
  /prebuilts/go/darwin-x86/src/net/
dnsmsg.go 10 // Each message structure has a Walk method that is used by
74 // Walk iterates over fields of a structure and calls f
80 // Whenever f returns false, Walk must stop and return
82 Walk(f func(v interface{}, name, tag string) (ok bool)) (ok bool)
92 func (h *dnsHeader) Walk(f func(v interface{}, name, tag string) bool) bool {
117 func (q *dnsQuestion) Walk(f func(v interface{}, name, tag string) bool) bool {
138 func (h *dnsRR_Header) Walk(f func(v interface{}, name, tag string) bool) bool {
162 func (rr *dnsRR_CNAME) Walk(f func(v interface{}, name, tag string) bool) bool {
163 return rr.Hdr.Walk(f) && f(&rr.Cname, "Cname", "domain")
176 func (rr *dnsRR_MX) Walk(f func(v interface{}, name, tag string) bool) bool
    [all...]
  /prebuilts/go/linux-x86/src/net/
dnsmsg.go 10 // Each message structure has a Walk method that is used by
74 // Walk iterates over fields of a structure and calls f
80 // Whenever f returns false, Walk must stop and return
82 Walk(f func(v interface{}, name, tag string) (ok bool)) (ok bool)
92 func (h *dnsHeader) Walk(f func(v interface{}, name, tag string) bool) bool {
117 func (q *dnsQuestion) Walk(f func(v interface{}, name, tag string) bool) bool {
138 func (h *dnsRR_Header) Walk(f func(v interface{}, name, tag string) bool) bool {
162 func (rr *dnsRR_CNAME) Walk(f func(v interface{}, name, tag string) bool) bool {
163 return rr.Hdr.Walk(f) && f(&rr.Cname, "Cname", "domain")
176 func (rr *dnsRR_MX) Walk(f func(v interface{}, name, tag string) bool) bool
    [all...]
  /build/blueprint/
context_test.go 23 Walk() bool
50 func (f *fooModule) Walk() bool {
78 func (b *barModule) Walk() bool {
186 if dep.module.logicModule.(Walker).Walk() {
193 if dep.module.logicModule.(Walker).Walk() {
  /external/google-breakpad/src/processor/
microdump_processor.cc 80 if (!stackwalker->Walk(stack.get(),
stackwalker_arm_unittest.cc 149 // requires call frame information, the stack walk will end after
157 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
173 // requires call frame information, the stack walk will end after
180 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
200 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
253 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
324 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
390 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
454 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
470 // Provide a bunch of STACK CFI records; we'll walk to the calle
    [all...]
stackwalker_arm64_unittest.cc 147 // Since the context's frame pointer is garbage, the stack walk will end after
155 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
177 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
230 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
302 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
369 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
434 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
496 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
539 // Provide a bunch of STACK CFI records; we'll walk to the caller
622 // Walk the stack, using stack_section as the contents of the stac
    [all...]
stackwalker_mips_unittest.cc 160 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
187 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
210 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
266 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
341 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
412 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
485 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
576 // Walk the stack, using stack_section as the contents of the stack
590 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
672 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols
    [all...]
stackwalker_address_list_unittest.cc 135 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
169 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
stackwalker_amd64_unittest.cc 148 // There should be no references to the stack in this walk: we don't
161 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
175 // There should be no references to the stack in this walk: we don't
187 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
211 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
272 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
347 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
421 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
479 ASSERT_TRUE(walker.Walk(&call_stack, &modules_without_symbols,
508 // Provide a bunch of STACK CFI records; we'll walk to the calle
    [all...]
  /prebuilts/go/darwin-x86/misc/android/
cleaner.go 23 err := filepath.Walk(goroot, func(path string, info os.FileInfo, err error) error {
  /prebuilts/go/linux-x86/misc/android/
cleaner.go 23 err := filepath.Walk(goroot, func(path string, info os.FileInfo, err error) error {
  /external/google-breakpad/src/google_breakpad/processor/
stackwalker.h 80 bool Walk(CallStack* stack,
107 // for the stack to walk. modules, if non-NULL, is a CodeModules
184 // The stack memory to walk. Subclasses will require this region to
216 // The maximum number of frames Stackwalker will walk through.
  /art/runtime/gc/space/
large_object_space.h 48 virtual void Walk(DlMallocSpace::WalkCallback, void* arg) = 0;
142 void Walk(DlMallocSpace::WalkCallback, void* arg) OVERRIDE REQUIRES(!lock_);
178 void Walk(DlMallocSpace::WalkCallback callback, void* arg) OVERRIDE REQUIRES(!lock_);
  /external/boringssl/src/util/
diff_asm.go 66 err := filepath.Walk(*boringsslDir, func(path string, info os.FileInfo, err error) error {
  /prebuilts/go/darwin-x86/src/compress/gzip/
issue14937_test.go 29 err = filepath.Walk(goroot, func(path string, info os.FileInfo, err error) error {

Completed in 1737 milliseconds

1 2 3 4 5 6 7