Searched defs:do_tree (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.cpp899 // do_tree() walks the nodes in the binary tree applying do_list()
907 virtual void do_tree(TreeList<Chunk>* tl) = 0;
914 void do_tree(TreeList<Chunk>* tl) { function in class:AscendTreeCensusClosure
916 do_tree(tl->left());
918 do_tree(tl->right());
927 void do_tree(TreeList<Chunk>* tl) { function in class:DescendTreeCensusClosure
929 do_tree(tl->right());
931 do_tree(tl->left());
972 virtual bool do_tree(TreeList<Chunk>* tl) = 0;
979 bool do_tree(TreeLis
994 bool do_tree(TreeList<Chunk>* tl) { function in class:DescendTreeSearchClosure
[all...]

Completed in 151 milliseconds