HomeSort by relevance Sort by last modified time
    Searched refs:child_path (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/content/common/
child_process_host_impl.cc 89 base::FilePath child_path; local
91 child_path = CommandLine::ForCurrentProcess()->GetSwitchValuePath(
100 if (child_path.empty() && flags & CHILD_ALLOW_SELF && !RunningOnValgrind())
101 child_path = base::FilePath(base::kProcSelfExe);
106 if (child_path.empty())
107 PathService::Get(CHILD_PROCESS_EXE, &child_path);
117 child_path = TransformPathForFeature(child_path, "NP");
124 child_path = TransformPathForFeature(child_path, "EH")
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
mock_file_system.py 68 for child_path in child_versions.iterkeys():
69 child_versions[child_path] = self._UpdateStat(
70 child_versions[child_path],
71 '%s%s' % (path, child_path))
82 [int(self._StatImpl('%s%s' % (path, child_path)).version)
83 for child_path in child_paths]))
  /external/chromium/chrome/browser/resources/file_manager/bin/
squashdir.py 44 for child_path in glob.glob(abs_src + '/*'):
45 scan_path(dest, src, child_path[len(src) + 1:])
  /external/chromium_org/chrome/browser/resources/file_manager/js/
path_util.js 262 * @param {string} child_path The child path.
263 * @return {boolean} True if |parent_path| is parent file path of |child_path|.
265 PathUtil.isParentPath = function(parent_path, child_path) {
267 !child_path || child_path.length == 0)
273 if (child_path[child_path.length - 1] != '/')
274 child_path += '/';
276 return child_path.indexOf(parent_path) == 0;
  /system/core/sdcard/
sdcard.c 816 char child_path[PATH_MAX]; local
827 child_path, sizeof(child_path), 1))) {
834 return fuse_reply_entry(fuse, hdr->unique, parent_node, name, actual_name, child_path);
947 char child_path[PATH_MAX]; local
959 child_path, sizeof(child_path), 1))) {
966 if (mknod(child_path, mode, req->rdev) < 0) {
969 return fuse_reply_entry(fuse, hdr->unique, parent_node, name, actual_name, child_path);
978 char child_path[PATH_MAX] local
1028 char child_path[PATH_MAX]; local
1057 char child_path[PATH_MAX]; local
    [all...]
  /external/chromium_org/chrome/browser/mac/
relauncher.cc 84 base::FilePath child_path; local
85 if (!PathService::Get(content::CHILD_PROCESS_EXE, &child_path)) {
91 return RelaunchAppWithHelper(child_path.value(), relauncher_args, args);
  /external/chromium/chrome/browser/ui/gtk/
gtk_tree.cc 34 GtkTreePath *child_path = gtk_tree_model_sort_convert_path_to_child_path( local
36 int row = GetRowNumForPath(child_path);
37 gtk_tree_path_free(child_path);
task_manager_gtk.cc 946 GtkTreePath* child_path = gtk_tree_path_new_from_indices(iter->first + i, local
964 GtkTreePath* child_path = gtk_tree_model_sort_convert_path_to_child_path( local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_tree.cc 36 GtkTreePath *child_path = gtk_tree_model_sort_convert_path_to_child_path( local
38 int row = GetRowNumForPath(child_path);
39 gtk_tree_path_free(child_path);
task_manager_gtk.cc 895 GtkTreePath* child_path = gtk_tree_path_new_from_indices(iter->first + i, local
913 GtkTreePath* child_path = gtk_tree_model_sort_convert_path_to_child_path( local
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
xcodeproj_file.py     [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js 169 * Checks if |parent_path| is parent file path of |child_path|.
172 * @param {string} child_path The child path.
174 function isParentPath(parent_path, child_path) {
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;
    [all...]

Completed in 283 milliseconds