/external/chromium-trace/trace-viewer/build/ |
fixjsstyle | 5 src_dir = os.path.join(os.path.dirname(__file__), '..') variable 7 sys.path.append(os.path.join(src_dir, 'third_party/python_gflags')) 8 sys.path.append(os.path.join(src_dir, 'third_party/closure_linter')) 13 os.chdir(src_dir)
|
gjslint | 5 src_dir = os.path.join(os.path.dirname(__file__), '..') variable 7 sys.path.append(os.path.join(src_dir, 'third_party/python_gflags')) 8 sys.path.append(os.path.join(src_dir, 'third_party/closure_linter')) 13 os.chdir(src_dir)
|
/packages/apps/Launcher3/ |
update_system_wallpaper_cropper.py | 8 src_dir = "WallpaperPicker/src/" variable 52 file_path = src_dir + file_path 55 dir = dir.replace(src_dir, "src/")
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
zip.h | 13 // Zip the contents of src_dir into dest_file. src_path must be a directory. 15 // of src_dir will be at the root level of the created zip. For each file in 16 // src_dir, include it only if the callback |filter_cb| returns true. Otherwise 19 bool ZipWithFilterCallback(const base::FilePath& src_dir, 26 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file, 32 // to the |src_dir| and will be used as the file names in the created zip file. 33 // All source paths must be under |src_dir| in the file system hierarchy. 34 bool ZipFiles(const base::FilePath& src_dir,
|
zip.cc | 27 bool AddFileToZip(zipFile zip_file, const base::FilePath& src_dir) { 30 if (stream.OpenSync(src_dir, flags) != 0) { 32 << src_dir.value(); 43 << src_dir.value(); 127 bool ZipWithFilterCallback(const base::FilePath& src_dir, 130 DCHECK(base::DirectoryExists(src_dir)); 141 base::FileEnumerator file_enumerator(src_dir, true /* recursive */, 149 if (!AddEntryToZip(zip_file, path, src_dir)) { 163 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file, 167 src_dir, dest_file, base::Bind(&ExcludeNoFilesFilter)) [all...] |
/external/chromium_org/third_party/zlib/google/ |
zip.h | 13 // Zip the contents of src_dir into dest_file. src_path must be a directory. 15 // of src_dir will be at the root level of the created zip. For each file in 16 // src_dir, include it only if the callback |filter_cb| returns true. Otherwise 19 bool ZipWithFilterCallback(const base::FilePath& src_dir, 26 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file, 32 // to the |src_dir| and will be used as the file names in the created zip file. 33 // All source paths must be under |src_dir| in the file system hierarchy. 34 bool ZipFiles(const base::FilePath& src_dir,
|
zip.cc | 27 bool AddFileToZip(zipFile zip_file, const base::FilePath& src_dir) { 30 if (stream.OpenSync(src_dir, flags) != 0) { 32 << src_dir.value(); 43 << src_dir.value(); 147 bool ZipWithFilterCallback(const base::FilePath& src_dir, 150 DCHECK(base::DirectoryExists(src_dir)); 161 base::FileEnumerator file_enumerator(src_dir, true /* recursive */, 169 if (!AddEntryToZip(zip_file, path, src_dir)) { 183 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file, 187 src_dir, dest_file, base::Bind(&ExcludeNoFilesFilter)) [all...] |
zip_unittest.cc | 152 base::FilePath src_dir; local 153 ASSERT_TRUE(GetTestDataDirectory(&src_dir)); 154 src_dir = src_dir.AppendASCII("test"); 160 EXPECT_TRUE(zip::Zip(src_dir, zip_file, true)); 165 base::FilePath src_dir; local 166 ASSERT_TRUE(GetTestDataDirectory(&src_dir)); 167 src_dir = src_dir.AppendASCII("test"); 173 EXPECT_TRUE(zip::Zip(src_dir, zip_file, false)) 178 base::FilePath src_dir; local 197 base::FilePath src_dir; local [all...] |
/external/chromium/chrome/common/ |
zip.h | 11 // Zip the contents of src_dir into dest_file. src_path must be a directory. 13 // of src_dir will be at the root level of the created zip. 16 bool Zip(const FilePath& src_dir, const FilePath& dest_file,
|
zip_unittest.cc | 120 FilePath src_dir; local 121 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &src_dir)); 122 src_dir = src_dir.AppendASCII("zip").AppendASCII("test"); 128 EXPECT_TRUE(Zip(src_dir, zip_file, true)); 133 FilePath src_dir; local 134 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &src_dir)); 135 src_dir = src_dir.AppendASCII("zip").AppendASCII("test"); 141 EXPECT_TRUE(Zip(src_dir, zip_file, false)) [all...] |
zip.cc | 204 static bool AddFileToZip(zipFile zip_file, const FilePath& src_dir) { 207 if (stream.Open(src_dir, flags) != 0) { 209 << src_dir.value(); 220 << src_dir.value(); 265 bool Zip(const FilePath& src_dir, const FilePath& dest_file, 267 DCHECK(file_util::DirectoryExists(src_dir)); 277 std::string src_dir_str = src_dir.value(); 293 src_dir, true, // recursive 302 if (!AddEntryToZip(zip_file, path, src_dir)) {
|
/external/chromium_org/webkit/tools/layout_tests/ |
run_webkit_tests.py | 13 src_dir = os.path.abspath(os.path.join(sys.path[0], '..', '..', '..')) 14 script_dir=os.path.join(src_dir, "third_party", "WebKit", "Tools",
|
run_http_server.py | 14 src_dir=os.path.join(os.path.dirname(os.path.dirname(os.path.dirname( 16 script_dir=os.path.join(src_dir, "third_party", "WebKit", "Tools",
|
/external/chromium_org/chrome/test/pyautolib/ |
pyauto_paths.py | 32 src_dir = GetSourceDir() 35 build_dirs += [os.path.join(src_dir, dir, 'Debug')] 36 build_dirs += [os.path.join(src_dir, dir, 'Release')]
|
/external/chromium_org/chrome/tools/ |
check_grd_for_unused_strings.py | 81 for src_dir in src_dirs: 82 for root, dirs, files in os.walk(src_dir): 116 src_dir = os.path.dirname(os.path.dirname(chrome_tools_dir)) 129 ash_base_dir = os.path.join(src_dir, 'ash') 130 chrome_dir = os.path.join(src_dir, 'chrome') 133 device_base_dir = os.path.join(src_dir, 'device') 134 ui_base_dir = os.path.join(src_dir, 'ui', 'base',) 154 os.path.join(src_dir, 'ui', 'resources', 'ui_resources.grd'), 155 os.path.join(src_dir, 'ui', 'webui', 'resources', 'webui_resources.grd'), 163 os.path.join(src_dir, 'app') [all...] |
/external/chromium_org/chrome/test/nacl_test_injection/ |
find_chrome.py | 16 def FindChrome(src_dir, configs, verbose=False): 46 chrome_filename = os.path.join(src_dir, chrome) 92 src_dir = args[0] 93 chrome_path = FindChrome(src_dir, options.config, options.verbose)
|
/external/zlib/ |
update_zlib.sh | 24 src_dir=$base_dir/src 25 rm -rf $src_dir
|
/external/ceres-solver/scripts/ |
make_docs.py | 46 src_dir = sys.argv[1] + "/docs/source" variable 60 os.system("%s -b html -d %s %s %s" %(sphinx_exe, cache_dir, src_dir, html_dir))
|
/external/chromium_org/build/android/pylib/host_driven/ |
test_server.py | 82 src_dir = constants.DIR_SOURCE_ROOT 84 abs_dirs = [os.path.join(src_dir, d) for d in _PYTHONPATH_DIRS] 86 abs_dirs.extend([os.path.join(src_dir, constants.GetOutDirectory(), d) 97 cmd = ['python', os.path.join(src_dir, test_server_path),
|
/external/chromium/chrome/browser/extensions/ |
extension_startup_browsertest.cc | 50 FilePath src_dir; local 51 PathService::Get(chrome::DIR_TEST_DATA, &src_dir); 52 src_dir = src_dir.AppendASCII("extensions").AppendASCII("good"); 54 file_util::CopyFile(src_dir.AppendASCII("Preferences"), 56 file_util::CopyDirectory(src_dir.AppendASCII("Extensions"),
|
extensions_startup.cc | 55 FilePath src_dir = cmd_line.GetSwitchValuePath(switches::kPackExtension); 62 pack_job_ = new PackExtensionJob(this, src_dir, private_key_path);
|
/external/chromium_org/build/android/gyp/ |
process_resources.py | 63 src_dir = os.path.join(res_root, src_dir_name) 64 if not os.path.isdir(src_dir): 71 for src_file_name in os.listdir(src_dir): 74 src_file = os.path.join(src_dir, src_file_name)
|
/external/chromium/testing/gmock/scripts/ |
gmock-config.in | 214 src_dir=`cd ${this_bindir}/@top_srcdir@; pwd -P` 226 gmock_cppflags="-I${build_dir}/include -I${src_dir}/include"
|
/external/chromium/testing/gtest/scripts/ |
gtest-config.in | 212 src_dir=`cd ${this_bindir}/@top_srcdir@; pwd -P` 224 gtest_cppflags="-I${build_dir}/include -I${src_dir}/include"
|
/external/chromium_org/build/ |
download_nacl_toolchains.py | 17 src_dir = os.path.dirname(script_dir) 18 nacl_dir = os.path.join(src_dir, 'native_client')
|