Searched defs:paths (Results 1 - 25 of 113) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileList.cpp44 Vector<String> FileList::paths() const function in class:WebCore::FileList
46 Vector<String> paths; local
48 paths.append(m_files[i]->path());
50 return paths;
/external/chromium_org/media/base/
H A Dmedia_posix.cc49 StubPathMap paths; local
53 paths[kModuleFfmpegsumo].push_back(module_dir.Append(kSumoLib).value());
56 paths[kModuleFfmpegsumo].push_back(module_dir.Append(
58 paths[kModuleFfmpegsumo].push_back(module_dir.Append(
60 paths[kModuleFfmpegsumo].push_back(module_dir.Append(
63 return InitializeStubs(paths);
/external/chromium_org/chrome/installer/util/
H A Dhelper.cc47 std::vector<base::FilePath>* paths) {
56 paths->clear();
58 paths->resize(has_metro_data ? 2 : 1);
59 (*paths)[0] = data_dir;
61 (*paths)[1] = data_dir.DirName().Append(
65 DCHECK(!paths->empty());
46 GetChromeUserDataPaths(BrowserDistribution* dist, std::vector<base::FilePath>* paths) argument
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
H A Dmain.py37 def change_directory(filesystem, checkout_root, paths):
40 If every path in the paths parameter is below the checkout root (or if
41 the paths parameter is empty or None), this method changes the current
42 working directory to the checkout root and converts the paths parameter
44 This allows the paths being checked to be displayed relative to the
50 paths: A copy of the paths parameter -- possibly converted, as follows.
52 checkout root, then the list is the paths parameter converted to
53 normalized paths relative to the checkout root.
56 paths
95 paths = rel_paths variable
[all...]
/external/chromium_org/tools/cr/cr/base/
H A Dlinux.py43 def paths(self): member in class:LinuxPlatform
H A Dplatform.py52 def paths(self): member in class:Platform
59 paths = []
60 for entry in Platform.GetActivePlugin(context).paths:
62 if entry not in paths:
63 paths.append(entry)
67 elif entry not in paths:
68 paths.append(entry)
69 value = os.path.pathsep.join(paths)
H A Dandroid.py115 def paths(self): member in class:AndroidPlatform
/external/jsilver/src/org/clearsilver/jni/
H A DJNI.java135 public static void setLibrarySearchPaths(String... paths) { argument
136 JNI.librarySearchPaths = paths;
/external/skia/tools/skpdiff/
H A Dskpdiff_util.cpp118 // dirent only gives relative paths, we need to join them to the base path to check if they
174 // Note these paths are in sorted order by default according to http://linux.die.net/man/3/glob
176 char** paths = globBuffer.gl_pathv; local
177 while(NULL != *paths) {
178 entries->push_back(SkString(*paths));
179 paths++;
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_util_unittest.cc27 std::vector<std::string> hosts, paths; local
31 safe_browsing_util::GeneratePathsToCheck(url, &paths);
33 EXPECT_EQ(paths.size(), static_cast<size_t>(4));
37 EXPECT_TRUE(VectorContains(paths, "/1/2.html?param=1"));
38 EXPECT_TRUE(VectorContains(paths, "/1/2.html"));
39 EXPECT_TRUE(VectorContains(paths, "/1/"));
40 EXPECT_TRUE(VectorContains(paths, "/"));
44 safe_browsing_util::GeneratePathsToCheck(url, &paths);
46 EXPECT_EQ(paths.size(), static_cast<size_t>(2));
52 EXPECT_TRUE(VectorContains(paths, "/
[all...]
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dzip_file_creator_browsertest.cc66 std::vector<base::FilePath> paths; local
67 paths.push_back(base::FilePath(FILE_PATH_LITERAL("not.exist")));
69 &observer, zip_base_dir(), paths, zip_archive_path()));
91 std::vector<base::FilePath> paths; local
92 paths.push_back(kDir1);
93 paths.push_back(kFile1);
94 paths.push_back(kFile2);
96 &observer, zip_base_dir(), paths, zip_archive_path()));
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_util_unittest.cc27 std::vector<std::string> hosts, paths; local
31 safe_browsing_util::GeneratePathsToCheck(url, &paths);
33 EXPECT_EQ(paths.size(), static_cast<size_t>(4));
37 EXPECT_TRUE(VectorContains(paths, "/1/2.html?param=1"));
38 EXPECT_TRUE(VectorContains(paths, "/1/2.html"));
39 EXPECT_TRUE(VectorContains(paths, "/1/"));
40 EXPECT_TRUE(VectorContains(paths, "/"));
44 safe_browsing_util::GeneratePathsToCheck(url, &paths);
46 EXPECT_EQ(paths.size(), static_cast<size_t>(2));
52 EXPECT_TRUE(VectorContains(paths, "/
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DFileChooser.cpp92 Vector<String> paths; local
94 paths.append(files[i].path);
95 if (m_settings.selectedFiles == paths)
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dtemporary_http_server.py14 def __init__(self, browser_backend, paths):
19 for path in paths:
21 self._paths = set(map(os.path.realpath, paths))
53 def paths(self): member in class:TemporaryHTTPServer
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_task_executor.cc42 std::vector<base::FilePath> paths; local
49 paths.push_back(path);
60 current_index_ = paths.size();
62 for (size_t i = 0; i < paths.size(); ++i) {
64 paths[i],
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dadvanced_options_utils_linux.cc80 std::vector<std::string> paths; local
81 Tokenize(path, ":", &paths);
83 for (size_t i = 0; i < paths.size(); ++i) {
84 base::FilePath file(paths[i]);
/external/chromium_org/sandbox/win/src/
H A Dnamed_pipe_dispatcher.cc50 std::vector<base::string16> paths; local
52 base::SplitString(*name, '/', &paths);
54 for (std::vector<base::string16>::const_iterator iter = paths.begin();
55 iter != paths.end(); ++iter) {
/external/chromium_org/skia/ext/
H A Dplatform_device_win.cc90 CubicPaths paths; local
91 if (!SkPathToCubicPaths(&paths, path))
95 for (CubicPaths::const_iterator path(paths.begin()); path != paths.end();
143 bool PlatformDevice::SkPathToCubicPaths(CubicPaths* paths, argument
145 paths->clear();
157 paths->push_back(CubicPath());
158 current_path = &paths->back();
184 paths->push_back(CubicPath());
185 current_path = &paths
[all...]
/external/oprofile/libpp/
H A Dlocate_images.cpp33 void extra_images::populate(vector<string> const & paths, argument
36 vector<string>::const_iterator cit = paths.begin();
37 vector<string>::const_iterator end = paths.end();
52 void extra_images::populate(vector<string> const & paths, argument
65 populate(paths, "");
67 populate(paths, archive_path);
69 populate(paths, root_path);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DTestUtil.java80 public static File getSystemResourceDir(String... paths) throws Exception { argument
93 return file(new File(sdkDir, "platforms/android-10/data/res/"), paths);
/external/skia/gm/
H A Dfatpathfill.cpp35 const SkPath paths[], int count) {
40 surface->getCanvas()->drawPath(paths[i], paint);
48 canvas->drawPath(paths[j], paint);
34 draw_fatpath(SkCanvas* canvas, SkSurface* surface, const SkPath paths[], int count) argument
/external/skia/tools/lua/
H A Dlua_pictures.cpp125 SkTArray<SkString> paths; local
132 sk_tools::make_filepath(&paths.push_back(), directory, filename);
136 paths.push_back() = FLAGS_skpPath[i];
139 for (int i = 0; i < paths.count(); i++) {
146 const char* path = paths[i].c_str();
/external/chromium_org/chrome/browser/extensions/
H A Dextension_startup_browsertest.cc52 base::FilePath::StringType paths = JoinString(load_extensions_, ','); variable
54 paths);
/external/chromium_org/chrome/browser/
H A Dshell_integration_linux_unittest.cc143 // Test that $XDG_DATA_DIRS falls back to the two default paths.
410 std::vector<base::FilePath> paths = local
414 std::sort(paths.begin(), paths.end());
415 EXPECT_THAT(paths,
/external/chromium_org/media/audio/openbsd/
H A Daudio_manager_openbsd.cc71 StubPathMap paths; local
74 paths[kModulePulse].push_back(kPulseLib);
75 if (!InitializeStubs(paths)) {

Completed in 2390 milliseconds

12345