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

/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dpath_test.cc125 StringArray_t path_components; local
128 path_components = p1.Split();
129 EXPECT_EQ("/", path_components[0]);
132 EXPECT_EQ("simple", path_components[1]);
135 EXPECT_EQ("splitter",path_components[2]);
138 EXPECT_EQ("test", path_components[3]);
142 path_components = p2.Split();
143 EXPECT_EQ(4, static_cast<int>(path_components.size()));
145 EXPECT_EQ("/", path_components[0]);
146 EXPECT_EQ("simple", path_components[
[all...]
/external/chromium_org/components/metrics/
H A Dmachine_id_provider_win.cc39 std::vector<base::FilePath::StringType> path_components; local
40 executable_path.GetComponents(&path_components);
41 if (path_components.empty()) {
45 base::FilePath::StringType drive_name = L"\\\\.\\" + path_components[0];
/external/chromium_org/chrome/common/importer/
H A Dfirefox_importer_utils.cc107 ComponentVector path_components; local
108 path.GetComponents(&path_components);
109 if (path_components.empty())
114 *output = base::FilePath(path_components[0]);
117 for (size_t i = 1; i < path_components.size(); ++i) {
118 *output = output->Append(path_components[i]);
119 if (EndsWith(path_components[i], ".app", true)) {
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_downloader.cc195 std::vector<std::string> path_components; local
198 &path_components);
200 if (path_components.size() < kProfileImageURLPathComponentsCount)
203 const std::string& photo_id = path_components[kPhotoIdPathComponentIndex];
205 path_components[kPhotoVersionPathComponentIndex];
/external/chromium_org/base/files/
H A Dfile_util_posix.cc750 std::vector<FilePath::StringType> path_components; local
753 path.GetComponents(&path_components);
756 for (ib = base_components.begin(), ip = path_components.begin();
761 DCHECK(ip != path_components.end());
769 for (; ip != path_components.end(); ++ip) {

Completed in 139 milliseconds