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

1 2 3

  /external/chromium_org/tools/
include_tracer.py 140 def Walk(seen, filename, parent, indent):
183 total_bytes += Walk(
187 total_bytes += Walk(
190 total_bytes += Walk(
196 bytes = Walk(set(), sys.argv[1], '', 0)
  /external/chromium_org/chrome/common/extensions/docs/server2/
file_system_util.py 11 for root, _, files in file_system.Walk(directory):
file_system_test.py 54 for root, dirs, files in file_system.Walk(''):
65 for root, dirs, files in file_system.Walk('', depth=0):
71 for root, dirs, files in file_system.Walk('', depth=1):
79 for root, dirs, files in file_system.Walk('', depth=2):
97 for root, dirs, files in file_system.Walk('templates/public/'):
api_categorizer.py 30 for root, _, files in self._file_system.Walk(base_dir):
template_data_source.py 39 for root, _, files in self._file_system.Walk(self._dir):
caching_file_system_test.py 271 for walkinfo in file_system.Walk(''):
277 for root, dirs, files in file_system.Walk(''):
289 for walkinfo in file_system.Walk('root/dir1/'):
owners_data_source.py 78 for base, dirs, _ in self._host_fs.Walk(root, depth=1):
redirector.py 109 for root, dirs, files in self._file_system.Walk(''):
caching_file_system.py 32 self._walk_cache = create_object_store('walk', start_empty=False)
150 def Walk(self, root, depth=-1):
151 '''Overrides FileSystem.Walk() to provide caching functionality.
170 return self._file_system.Walk(root, depth=depth, file_lister=file_lister)
path_canonicalizer.py 54 for base, dirs, files in self._file_system.Walk(''):
  /external/chromium_org/third_party/re2/re2/testing/
null_walker.cc 20 // Should never be called: we use Walk not WalkExponential.
41 w.Walk(this, false);
  /external/regex-re2/re2/testing/
null_walker.cc 20 // Should never be called: we use Walk not WalkExponential.
41 w.Walk(this, false);
  /external/chromium_org/v8/test/cctest/
test-profile-generator.cc 98 ProfileNode* Walk(CodeEntry* entry1,
126 CHECK_EQ(NULL, helper.Walk(&entry1));
127 CHECK_EQ(NULL, helper.Walk(&entry2));
128 CHECK_EQ(NULL, helper.Walk(&entry3));
133 CHECK_EQ(NULL, helper.Walk(&entry2));
134 CHECK_EQ(NULL, helper.Walk(&entry3));
135 ProfileNode* node1 = helper.Walk(&entry1);
138 CHECK_EQ(NULL, helper.Walk(&entry1, &entry1));
139 CHECK_EQ(NULL, helper.Walk(&entry1, &entry3));
140 ProfileNode* node2 = helper.Walk(&entry1, &entry2)
    [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 44 void Walk(ObjectCallback* callback, void* arg)
  /external/chromium_org/third_party/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...]
  /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...]
  /art/runtime/gc/space/
large_object_space.h 42 virtual void Walk(DlMallocSpace::WalkCallback, void* arg) = 0;
123 void Walk(DlMallocSpace::WalkCallback, void* arg) OVERRIDE LOCKS_EXCLUDED(lock_);
152 void Walk(DlMallocSpace::WalkCallback callback, void* arg) OVERRIDE LOCKS_EXCLUDED(lock_);
bump_pointer_space.h 143 void Walk(ObjectCallback* callback, void* arg)
177 // have a header, this lets us walk empty spaces which are mprotected.
dlmalloc_space.h 96 void Walk(WalkCallback callback, void* arg) OVERRIDE LOCKS_EXCLUDED(lock_);
malloc_space.h 83 virtual void Walk(WalkCallback callback, void* arg) = 0;
dlmalloc_space.cc 247 void DlMallocSpace::Walk(void(*callback)(void *start, void *end, size_t num_bytes, void* callback_arg),
319 // To allow the Walk/InspectAll() to exclusively-lock the mutator
324 Walk(MSpaceChunkCallback, &max_contiguous_allocation);
  /external/chromium_org/third_party/WebKit/ManualTests/inspector-wrappers/
inspector-wrappers-test-utils.js 3 // Walk up the caller chain and try to find a reference to the Inspector's window

Completed in 1020 milliseconds

1 2 3