Home
last modified time | relevance | path

Searched refs:child_path (Results 1 – 4 of 4) sorted by relevance

/external/chromium/chrome/browser/resources/file_manager/bin/
Dsquashdir.py44 for child_path in glob.glob(abs_src + '/*'):
45 scan_path(dest, src, child_path[len(src) + 1:])
/external/chromium/chrome/browser/ui/gtk/
Dtask_manager_gtk.cc946 GtkTreePath* child_path = gtk_tree_path_new_from_indices(iter->first + i, in OnSelectionChanged() local
949 GTK_TREE_MODEL_SORT(process_list_sort_), child_path); in OnSelectionChanged()
951 gtk_tree_path_free(child_path); in OnSelectionChanged()
964 GtkTreePath* child_path = gtk_tree_model_sort_convert_path_to_child_path( in OnRowActivated() local
966 int row = gtk_tree::GetRowNumForPath(child_path); in OnRowActivated()
967 gtk_tree_path_free(child_path); in OnRowActivated()
Dgtk_tree.cc34 GtkTreePath *child_path = gtk_tree_model_sort_convert_path_to_child_path( in GetTreeSortChildRowNumForPath() local
36 int row = GetRowNumForPath(child_path); in GetTreeSortChildRowNumForPath()
37 gtk_tree_path_free(child_path); in GetTreeSortChildRowNumForPath()
/external/chromium/chrome/browser/resources/file_manager/js/
Dfile_manager.js174 function isParentPath(parent_path, child_path) { argument
176 !child_path || child_path.length == 0)
182 if (child_path[child_path.length -1] != '/')
183 child_path += '/';
185 return child_path.indexOf(parent_path) == 0;