Home
last modified time | relevance | path

Searched refs:source_dir (Results 1 – 25 of 33) sorted by relevance

12

/external/chromium/base/test/
Dtest_file_util_posix.cc29 bool CopyRecursiveDirNoCache(const FilePath& source_dir, in CopyRecursiveDirNoCache() argument
32 if (base::strlcpy(top_dir, source_dir.value().c_str(), in CopyRecursiveDirNoCache()
47 if (real_to_path.value().compare(0, source_dir.value().size(), in CopyRecursiveDirNoCache()
48 source_dir.value()) == 0) in CopyRecursiveDirNoCache()
55 FileEnumerator traversal(source_dir, true, traverse_type); in CopyRecursiveDirNoCache()
59 FilePath current = source_dir; in CopyRecursiveDirNoCache()
60 if (stat(source_dir.value().c_str(), &info.stat) < 0) { in CopyRecursiveDirNoCache()
62 << source_dir.value() << " errno = " << errno; in CopyRecursiveDirNoCache()
69 std::string suffix(&current.value().c_str()[source_dir.value().size()]); in CopyRecursiveDirNoCache()
Dtest_file_util_win.cc125 bool CopyRecursiveDirNoCache(const FilePath& source_dir, in CopyRecursiveDirNoCache() argument
135 std::wstring src(source_dir.value()); in CopyRecursiveDirNoCache()
148 FilePath cur_source_path = source_dir.Append(cur_file); in CopyRecursiveDirNoCache()
Dtest_file_util.h32 bool CopyRecursiveDirNoCache(const FilePath& source_dir,
/external/chromium_org/third_party/WebKit/Source/testing/
Dtesting.gyp34 'source_dir': '../../Source',
59 '<(source_dir)/web/web.gyp:webkit_test_support',
153 '<(source_dir)/testing/data/fonts/WebKitWeightWatcher100.ttf',
154 '<(source_dir)/testing/data/fonts/WebKitWeightWatcher200.ttf',
155 '<(source_dir)/testing/data/fonts/WebKitWeightWatcher300.ttf',
156 '<(source_dir)/testing/data/fonts/WebKitWeightWatcher400.ttf',
157 '<(source_dir)/testing/data/fonts/WebKitWeightWatcher500.ttf',
158 '<(source_dir)/testing/data/fonts/WebKitWeightWatcher600.ttf',
159 '<(source_dir)/testing/data/fonts/WebKitWeightWatcher700.ttf',
160 '<(source_dir)/testing/data/fonts/WebKitWeightWatcher800.ttf',
[all …]
/external/chromium_org/remoting/tools/
Dzip2msi.py200 source_dir = None
203 source_dir = source
209 source_dir = '%(intermediate_dir)s\\%(basename)s' % parameters
212 f = open(os.path.join(source_dir, 'parameters.json'))
224 wxs = os.path.join(source_dir, parameters['source'])
227 bind_path = os.path.join(source_dir, parameters['bind_path'])
/external/chromium_org/tools/coverity/
Dcoverity.py109 lock_filename = os.path.join(options.source_dir, LOCK_FILE)
124 print 'Change directory to ' + options.source_dir
125 os.chdir(options.source_dir)
143 rm_path = os.path.join(options.source_dir,'src','out',options.target)
145 rm_path = os.path.join(options.source_dir,options.solution_dir,
148 rm_path = os.path.join(options.source_dir,'src','xcodebuild')
183 options.source_dir, options.solution_file, options.target)
/external/chromium/net/test/
Dpython_utils.cc75 FilePath source_dir; in GetPyProtoPath() local
76 if (!PathService::Get(base::DIR_SOURCE_ROOT, &source_dir)) { in GetPyProtoPath()
77 LOG(ERROR) << "Can't find " << source_dir.value(); in GetPyProtoPath()
90 generated_code_dir = source_dir in GetPyProtoPath()
/external/chromium_org/tools/valgrind/
Dmemcheck_analyze.py60 def shortenFilePath(source_dir, directory): argument
65 if source_dir:
66 prefixes_to_cut.append(source_dir)
83 def gatherFrames(node, source_dir): argument
91 source_dir, getTextOf(frame, SRC_FILE_DIR)),
119 def __init__(self, source_dir, error_node, commandline, testcase): argument
212 self._backtraces.append([description, gatherFrames(node, source_dir)])
217 frames = gatherFrames(stack, source_dir)
403 def __init__(self, source_dir, show_all_leaks=False, use_gdb=False): argument
412 self._source_dir = source_dir
[all …]
/external/chromium_org/net/test/
Dpython_utils.cc78 base::FilePath source_dir; in GetPyProtoPath() local
79 if (!PathService::Get(base::DIR_SOURCE_ROOT, &source_dir)) { in GetPyProtoPath()
80 LOG(ERROR) << "Can't find " << source_dir.value(); in GetPyProtoPath()
93 generated_code_dir = source_dir in GetPyProtoPath()
/external/chromium_org/chrome/browser/media/
Dchrome_webrtc_typing_detection_browsertest.cc42 base::FilePath source_dir; in GetTestDataDir() local
43 PathService::Get(chrome::DIR_TEST_DATA, &source_dir); in GetTestDataDir()
44 return source_dir; in GetTestDataDir()
Dchrome_webrtc_apprtc_browsertest.cc124 base::FilePath source_dir; in GetSourceDir() local
125 PathService::Get(base::DIR_SOURCE_ROOT, &source_dir); in GetSourceDir()
126 return source_dir; in GetSourceDir()
Dchrome_webrtc_video_quality_browsertest.cc304 base::FilePath source_dir; in GetSourceDir() local
305 PathService::Get(base::DIR_SOURCE_ROOT, &source_dir); in GetSourceDir()
306 return source_dir; in GetSourceDir()
Dchrome_webrtc_audio_quality_browsertest.cc51 base::FilePath source_dir; in GetTestDataDir() local
52 PathService::Get(chrome::DIR_TEST_DATA, &source_dir); in GetTestDataDir()
53 return source_dir; in GetTestDataDir()
/external/chromium_org/tools/gn/
Dfilesystem_utils.cc589 const SourceDir& source_dir) { in GetOutputDirForSourceDir() argument
598 DCHECK(source_dir.is_source_absolute()); in GetOutputDirForSourceDir()
599 ret.append(&source_dir.value()[2], source_dir.value().size() - 2); in GetOutputDirForSourceDir()
605 const SourceDir& source_dir) { in GetGenDirForSourceDir() argument
613 DCHECK(source_dir.is_source_absolute()); in GetGenDirForSourceDir()
614 ret.append(&source_dir.value()[2], source_dir.value().size() - 2); in GetGenDirForSourceDir()
Dfilesystem_utils.h154 const SourceDir& source_dir);
156 const SourceDir& source_dir);
Dgn.gyp131 'source_dir.cc',
132 'source_dir.h',
DBUILD.gn136 "source_dir.cc",
137 "source_dir.h",
/external/skia/tools/
Dsvndiff.py222 def SvnDiff(path_to_skdiff, dest_dir, source_dir): argument
235 os.chdir(source_dir)
316 source_dir=options.source_dir)
/external/eigen/
DINSTALL22 Let's call this directory 'source_dir' (where this INSTALL file is).
28 cmake source_dir
/external/chromium_org/build/util/
Dlastchange.py259 if opts.source_dir:
260 src_dir = opts.source_dir
/external/chromium_org/third_party/lcov/bin/
Dgeninfo840 my $source_dir; # Directory of source file
880 $source_dir = $da_dir;
883 $source_dir =~ s/\.libs$//;
902 $base_dir = $source_dir;
2198 my $source_dir;
2214 $source_dir = $graph_dir;
2217 $source_dir =~ s/\.libs$//;
2227 $base_dir = $source_dir;
/external/chromium/base/files/
Dfile_path_watcher_browsertest.cc452 FilePath source_dir(temp_dir_.path().AppendASCII("source")); in TEST_F() local
453 FilePath source_subdir(source_dir.AppendASCII("subdir")); in TEST_F()
469 ASSERT_TRUE(file_util::Move(source_dir, dest_dir)); in TEST_F()
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
Dcompute_dependencies.py195 source_dir, _ = os.path.split(os.getcwd())
200 refined_filename, _ = os.path.splitext(os.path.relpath(filename, source_dir))
/external/chromium_org/tools/gyp/test/lib/
DTestGyp.py168 def copy_test_configuration(self, source_dir, dest_dir): argument
177 for root, dirs, files in os.walk(source_dir):
184 destination = source.replace(source_dir, dest_dir)
190 destination = source.replace(source_dir, dest_dir)
/external/chromium_org/base/files/
Dfile_path_watcher_browsertest.cc554 FilePath source_dir(temp_dir_.path().AppendASCII("source")); in TEST_F() local
555 FilePath source_subdir(source_dir.AppendASCII("subdir")); in TEST_F()
572 ASSERT_TRUE(base::Move(source_dir, dest_dir)); in TEST_F()

12