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

1 2

  /art/compiler/sea_ir/ir/
visitor.h 65 virtual void Traverse(SeaGraph* graph);
66 virtual void Traverse(Region* region);
68 // because the parameter classes have no children to traverse.
69 virtual void Traverse(InstructionNode* region) { }
70 virtual void Traverse(ConstInstructionNode* instruction) { }
71 virtual void Traverse(ReturnInstructionNode* instruction) { }
72 virtual void Traverse(IfNeInstructionNode* instruction) { }
73 virtual void Traverse(AddIntLit8InstructionNode* instruction) { }
74 virtual void Traverse(MoveResultInstructionNode* instruction) { }
75 virtual void Traverse(InvokeStaticInstructionNode* instruction) {
    [all...]
instruction_nodes.h 84 v->Traverse(this);
116 v->Traverse(this);
131 v->Traverse(this);
151 v->Traverse(this);
162 v->Traverse(this);
178 v->Traverse(this);
195 v->Traverse(this);
207 v->Traverse(this);
224 v->Traverse(this);
233 v->Traverse(this)
    [all...]
sea.h 71 v->Traverse(this);
128 v->Traverse(this);
218 v->Traverse(this);
287 visitor->Traverse(this);
sea.cc 32 void IRVisitor::Traverse(Region* region) {
45 void IRVisitor::Traverse(SeaGraph* graph) {
  /external/chromium_org/tools/telemetry/telemetry/util/
bootstrap.py 71 def Traverse(self, src_path, dst_path):
93 self.Traverse(os.path.join(src_path, subdir),
157 dav_client.Traverse(parsed_url.path, full_dst_path)
  /external/chromium_org/sandbox/linux/seccomp-bpf/
codegen.h 83 // Traverse the graph of instructions and visit each instruction once.
89 void Traverse(Instruction*, void (*fnc)(Instruction*, void* aux), void* aux);
sandbox_bpf.cc 135 // Function that can be passed as a callback function to CodeGen::Traverse().
163 // Function that can be passed as a callback function to CodeGen::Traverse().
602 gen->Traverse(jumptable, CheckForUnsafeErrorCodes, &has_unsafe_traps);
650 gen->Traverse(jumptable, RedirectToUserspace, this);
    [all...]
codegen.cc 12 // Helper function for Traverse().
227 void CodeGen::Traverse(Instruction* instruction,
260 // We haven't seen the "true" branch yet. Traverse it now. We have
262 // traverse it later.
557 // basic block. But we only traverse recursively the very first time we
  /external/chromium_org/tools/idl_parser/
idl_node.py 128 def Traverse(self, search, filter_nodes):
135 child.Traverse(search, filter_nodes)
163 self.Traverse(search, filter_nodes)
  /external/clang/include/clang/AST/
DataRecursiveASTVisitor.h 80 /// 1. traverse the AST (i.e. go to each node);
102 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
103 /// Visit*). A method (e.g. Traverse*) may call methods from the same
104 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
122 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
126 /// users may override Traverse* and WalkUpFrom* to implement custom
154 /// dispatching to Traverse*() based on the argument's dynamic type.
161 /// Traverse*Type() based on the argument's getTypeClass() property.
168 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property.
175 /// Traverse*Attr() based on the argument's dynamic type
    [all...]
RecursiveASTVisitor.h 76 /// 1. traverse the AST (i.e. go to each node);
98 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
99 /// Visit*). A method (e.g. Traverse*) may call methods from the same
100 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
115 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
119 /// users may override Traverse* and WalkUpFrom* to implement custom
158 /// dispatching to Traverse*() based on the argument's dynamic type.
165 /// Traverse*Type() based on the argument's getTypeClass() property.
172 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property.
179 /// Traverse*Attr() based on the argument's dynamic type
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CTableCombo.java 134 SWT.Traverse,
144 SWT.Traverse,
218 case SWT.Traverse : {
233 notifyListeners(SWT.Traverse, e);
470 case SWT.Traverse : {
490 notifyListeners(SWT.Traverse, e);
CCombo3.java 67 SWT.Traverse,
  /external/chromium_org/third_party/tcmalloc/chromium/src/
malloc_hook.cc 257 int HookList<T>::Traverse(T* output_array, int n) const {
509 int num_hooks = hook_list.Traverse(hooks, kHookListMaxValues); \
519 int num_hooks = hook_list.Traverse(hooks, kHookListMaxValues); \
malloc_hook-inl.h 123 int Traverse(T* output_array, int n) const;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
malloc_hook.cc 257 int HookList<T>::Traverse(T* output_array, int n) const {
509 int num_hooks = hook_list.Traverse(hooks, kHookListMaxValues); \
519 int num_hooks = hook_list.Traverse(hooks, kHookListMaxValues); \
malloc_hook-inl.h 123 int Traverse(T* output_array, int n) const;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/bookmarks/basic/
popup.js 12 // Traverse the bookmark tree, and print the folder and nodes.
  /external/chromium_org/v8/test/cctest/
test-strings.cc 28 // Check that we can traverse very deep stacks of ConsStrings using
529 static void Traverse(Handle<String> s1, Handle<String> s2) {
561 TEST(Traverse) {
572 Traverse(flat, symmetric);
574 Traverse(flat, left_asymmetric);
576 Traverse(flat, right_asymmetric);
589 Traverse(flat, left_asymmetric);
593 Traverse(flat, right_asymmetric);
597 Traverse(flat, symmetric);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
malloc_hook_test.cc 102 int result = list.Traverse(values_as_hooks, min(n, kHookListMaxValues));
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
malloc_hook_test.cc 102 int result = list.Traverse(values_as_hooks, min(n, kHookListMaxValues));
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 652 /// \brief Interface that allows matchers to traverse the AST.
675 /// Will traverse any child nodes.
677 /// Will not traverse implicit casts and parentheses.
711 TraversalKind Traverse,
721 Matcher, Builder, Traverse, Bind);
759 TraversalKind Traverse,
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
directory_tree.js 326 // Traverse the entire subtree to find the changed element.
  /external/chromium_org/chrome/browser/chromeos/file_manager/
file_manager_browsertest.cc     [all...]
  /external/chromium_org/third_party/lcov/bin/
geninfo 567 Traverse DIRECTORY and create a .info file for each data file found. Note
634 # Traverse DIRECTORY and create a .info file for each data file found.
1058 # Traverse the list of generated .gcov files and combine them into a
    [all...]

Completed in 1271 milliseconds

1 2