Searched refs:src_dir (Results 1 - 16 of 16) sorted by relevance

/external/webkit/Tools/iExploder/iexploder-1.7.2/tools/
H A Dupdate_html_tags_from_sources.sh10 src_dir=$1
15 if [ -z "$src_dir" ]; then
25 if [ -d "$src_dir/WebKit" ]; then
28 grep -v "^#" $src_dir/Source/WebCore/css/CSSPropertyNames.in > ${tmp_prefix}.css-properties
29 grep -v "^#" $src_dir/Source/WebCore/css/CSSValueKeywords.in > ${tmp_prefix}.css-values
30 grep -v "^#" $src_dir/Source/WebCore/html/HTMLAttributeNames.in | cut -d" " -f1 | \
32 grep -v "^#" $src_dir/Source/WebCore/html/HTMLTagNames.in | cut -d" " -f1 | \
34 egrep "equalIgnoringCase" $src_dir/Source/WebCore/html/HTML*.cpp | \
36 grep -r "protocolIs" $src_dir/Source/WebCore/* | ruby -e '$stdin.readlines.join("").scan(/\"([\w-]+)"/) { |tag| puts "#{tag}:" }' > ${tmp_prefix}.protocols
37 grep "map->add" $src_dir/Sourc
[all...]
/external/chromium/chrome/common/
H A Dzip.h11 // 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,
H A Dzip_unittest.cc120 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_fil
[all...]
H A Dzip.cc204 static bool AddFileToZip(zipFile zip_file, const FilePath& src_dir) { argument
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, argument
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/zlib/
H A Dupdate_zlib.sh24 src_dir=$base_dir/src
25 rm -rf $src_dir
/external/chromium/chrome/browser/extensions/
H A Dextension_startup_browsertest.cc50 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"),
H A Dextensions_startup.cc55 FilePath src_dir = cmd_line.GetSwitchValuePath(switches::kPackExtension);
62 pack_job_ = new PackExtensionJob(this, src_dir, private_key_path);
/external/chromium-trace/trace-viewer/
H A DPRESUBMIT.py32 src_dir = os.path.join(input_api.change.RepositoryRoot(), "src")
34 input_api.os_path.join(src_dir, "about_tracing.js"),
35 input_api.os_path.join(src_dir, "deps.js"),
/external/chromium/testing/gmock/scripts/
H A Dgmock-config.in214 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/
H A Dgtest-config.in212 src_dir=`cd ${this_bindir}/@top_srcdir@; pwd -P`
224 gtest_cppflags="-I${build_dir}/include -I${src_dir}/include"
/external/gtest/scripts/
H A Dgtest-config.in212 src_dir=`cd ${this_bindir}/@top_srcdir@; pwd -P`
224 gtest_cppflags="-I${build_dir}/include -I${src_dir}/include"
/external/protobuf/gtest/scripts/
H A Dgtest-config.in212 src_dir=`cd ${this_bindir}/@top_srcdir@; pwd -P`
224 gtest_cppflags="-I${build_dir}/include -I${src_dir}/include"
/external/chromium/chrome/common/extensions/docs/build/
H A Dbuild.py121 src_dir = os.path.normpath(chrome_dir + "/../")
133 search_locations.append(src_dir + "/sconsbuild/Release/DumpRenderTree")
134 search_locations.append(src_dir + "/out/Release/DumpRenderTree")
135 search_locations.append(src_dir + "/sconsbuild/Debug/DumpRenderTree")
136 search_locations.append(src_dir + "/out/Debug/DumpRenderTree")
141 search_locations.append(src_dir +
143 search_locations.append(src_dir +
/external/chromium-trace/
H A Dsystrace.py133 src_dir = os.path.join(script_dir, options.asset_dir, 'src')
136 js_files, js_flattenizer, css_files = get_assets(src_dir, build_dir)
138 css = '\n'.join(linked_css_tag % (os.path.join(src_dir, f)) for f in css_files)
140 js += '\n'.join(linked_js_tag % (os.path.join(src_dir, f)) for f in js_files)
207 def get_assets(src_dir, build_dir):
219 js_files.append(os.path.relpath(module.filename, src_dir))
222 css_files.append(os.path.relpath(style_sheet.filename, src_dir))
/external/webkit/Source/JavaScriptCore/tests/mozilla/
H A Druntests.pl218 $src_dir = $moz_src . '/mozilla/js/src/';
239 chdir $src_dir;
259 opendir ( SRC_DIR_FILES, $src_dir );
272 die( "Couldn't find an object directory in $src_dir.\n" );
281 $shell_command = $src_dir . $object_dir .'/'. $js_exe;
/external/chromium/net/test/
H A Dtest_server.cc268 FilePath src_dir; local
269 PathService::Get(base::DIR_SOURCE_ROOT, &src_dir);
271 document_root_ = src_dir.Append(document_root);
273 certificates_dir_ = src_dir.Append(FILE_PATH_LITERAL("net"))

Completed in 781 milliseconds