Home
last modified time | relevance | path

Searched refs:RecursiveDelete (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/gpu/
DGrRedBlackTree.h157 static void RecursiveDelete(Node* x);
234 RecursiveDelete(fRoot); in ~GrRedBlackTree()
333 RecursiveDelete(fRoot); in reset()
838 void GrRedBlackTree<T,C>::RecursiveDelete(Node* x) { in RecursiveDelete() function
840 RecursiveDelete(x->fChildren[kLeft_Child]); in RecursiveDelete()
841 RecursiveDelete(x->fChildren[kRight_Child]); in RecursiveDelete()
/external/chromium/base/
Dfile_util_proxy.h145 static bool RecursiveDelete(
Dfile_util_proxy.cc834 bool FileUtilProxy::RecursiveDelete( in RecursiveDelete() function in base::FileUtilProxy