Searched refs:child_path (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/content/common/
H A Dchild_process_host_impl.cc94 base::FilePath child_path; local
96 child_path = base::CommandLine::ForCurrentProcess()->GetSwitchValuePath(
105 if (child_path.empty() && flags & CHILD_ALLOW_SELF && !RunningOnValgrind())
106 child_path = base::FilePath(base::kProcSelfExe);
111 if (child_path.empty())
112 PathService::Get(CHILD_PROCESS_EXE, &child_path);
122 child_path = TransformPathForFeature(child_path, "NP");
129 child_path = TransformPathForFeature(child_path, "E
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dpatched_file_system.py74 child_path = f[len(path):]
75 if '/' in child_path:
76 child_name = child_path[0:child_path.find('/') + 1]
78 child_name = child_path
H A Dmock_file_system.py81 for child_path, child_version in stat.child_versions.iteritems():
82 stat.child_versions[child_path] = stradd(
83 stat.child_versions[child_path],
84 self._stat_tracker.GetVersion(posixpath.join(path, child_path)))
/external/chromium_org/chrome/browser/mac/
H A Drelauncher.cc85 base::FilePath child_path; local
86 if (!PathService::Get(content::CHILD_PROCESS_EXE, &child_path)) {
92 return RelaunchAppWithHelper(child_path.value(), relauncher_args, args);
/external/lldb/source/Host/common/
H A DFileSpec.cpp956 char child_path[PATH_MAX]; local
957 const int child_path_len = ::snprintf (child_path, sizeof(child_path), "%s/%s", dir_path, dp->d_name);
958 if (child_path_len < (int)(sizeof(child_path) - 1))
961 FileSpec child_path_spec (child_path, false);
974 if (FileSpec::EnumerateDirectory (child_path,
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dxcodeproj_file.py1143 child_path = child.PathFromSourceTreeAndPath()
1144 if child_path:
1145 if child_path in self._children_by_path:
1146 raise ValueError, 'Found multiple children with path ' + child_path
1147 self._children_by_path[child_path] = child
1151 key = (child_name, child_path)
1155 str(child_path)

Completed in 491 milliseconds