/external/webrtc/test/testsupport/ |
D | fileutils.cc | 51 std::string current_path(working_dir); in ProjectRootPath() local 53 int path_delimiter_index = current_path.find_last_of(kPathDelimiter); in ProjectRootPath() 55 std::string root_filename = current_path + kPathDelimiter + in ProjectRootPath() 60 return current_path + kPathDelimiter; in ProjectRootPath() 63 current_path = current_path.substr(0, path_delimiter_index); in ProjectRootPath() 64 path_delimiter_index = current_path.find_last_of(kPathDelimiter); in ProjectRootPath()
|
/external/v8/test/mjsunit/ |
D | testcfg.py | 123 def ListTests(self, current_path, path, mode, variant_flags): argument 124 mjsunit = [current_path + [t] for t in self.Ls(self.root)] 125 regress = [current_path + ['regress', t] for t in self.Ls(join(self.root, 'regress'))] 126 bugs = [current_path + ['bugs', t] for t in self.Ls(join(self.root, 'bugs'))] 127 … third_party = [current_path + ['third_party', t] for t in self.Ls(join(self.root, 'third_party'))] 128 tools = [current_path + ['tools', t] for t in self.Ls(join(self.root, 'tools'))] 129 compiler = [current_path + ['compiler', t] for t in self.Ls(join(self.root, 'compiler'))] 130 harmony = [current_path + ['harmony', t] for t in self.Ls(join(self.root, 'harmony'))]
|
/external/chromium/base/ |
D | values.cc | 342 std::string current_path(path); in Set() local 344 for (size_t delimiter_position = current_path.find('.'); in Set() 346 delimiter_position = current_path.find('.')) { in Set() 348 std::string key(current_path, 0, delimiter_position); in Set() 356 current_path.erase(0, delimiter_position + 1); in Set() 359 current_dictionary->SetWithoutPathExpansion(current_path, in_value); in Set() 398 std::string current_path(path); in Get() local 400 for (size_t delimiter_position = current_path.find('.'); in Get() 402 delimiter_position = current_path.find('.')) { in Get() 405 current_path.substr(0, delimiter_position), &child_dictionary)) in Get() [all …]
|
/external/v8/test/preparser/ |
D | testcfg.py | 99 executable, current_path, mode): argument 106 current_path + [filename, name], 122 def ListTests(self, current_path, path, mode, variant_flags): argument 142 current_path + [file], executable, 151 executable, current_path, mode)
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
D | gjslint.py | 193 current_path = None 196 if current_path != record.path: 197 current_path = record.path 199 _PrintFileSeparator(current_path)
|
/external/v8/test/message/ |
D | testcfg.py | 106 def ListTests(self, current_path, path, mode, variant_flags): argument 107 mjsunit = [current_path + [t] for t in self.Ls(self.root)] 108 regress = [current_path + ['regress', t] for t in self.Ls(join(self.root, 'regress'))] 109 bugs = [current_path + ['bugs', t] for t in self.Ls(join(self.root, 'bugs'))]
|
/external/chromium/chrome/browser/history/ |
D | redirect_uitest.cc | 186 FilePath current_path; in TEST_F() local 187 ASSERT_TRUE(net::FileURLToFilePath(current_url, ¤t_path)); in TEST_F() 188 ASSERT_TRUE(file_util::AbsolutePath(¤t_path)); in TEST_F() 191 StringToLowerASCII(current_path.value())); in TEST_F()
|
/external/v8/test/sputnik/ |
D | testcfg.py | 84 def ListTests(self, current_path, path, mode, variant_flags): argument 97 full_path = current_path + [test.GetPath()[-1]]
|
/external/v8/test/es5conform/ |
D | testcfg.py | 76 def ListTests(self, current_path, path, mode, variant_flags): argument 87 root_path = current_path + [x for x in root_path if x]
|
/external/chromium/chrome/browser/ui/gtk/bookmarks/ |
D | bookmark_tree_model.cc | 45 GtkTreePath* current_path = gtk_tree_model_get_path(tree_model, parent_iter); in RecursiveResolve() local 46 if (gtk_tree_path_compare(current_path, selected_path) == 0) in RecursiveResolve() 48 gtk_tree_path_free(current_path); in RecursiveResolve()
|
/external/v8/test/mozilla/ |
D | testcfg.py | 95 def ListTests(self, current_path, path, mode, variant_flags): argument 107 root_path = current_path + [x for x in root_path if x]
|
/external/v8/test/cctest/ |
D | testcfg.py | 84 def ListTests(self, current_path, path, mode, variant_flags): argument 103 full_path = current_path + relative_path
|
/external/v8/test/test262/ |
D | testcfg.py | 80 def ListTests(self, current_path, path, mode, variant_flags): argument 91 root_path = current_path + [x for x in root_path if x]
|
/external/v8/test/benchmarks/ |
D | testcfg.py | 87 def ListTests(self, current_path, path, mode, variant_flags): argument
|
/external/v8/tools/ |
D | test.py | 639 def AddTestsToList(self, result, current_path, path, context, mode): argument 642 tests = config.ListTests(current_path, path, mode, v) 670 def ListTests(self, current_path, path, context, mode, variant_flags): argument 676 full_path = current_path + [test_name]
|
/external/clang/lib/Tooling/ |
D | Tooling.cpp | 128 llvm::sys::fs::current_path(BaseDirectory); in getAbsolutePath()
|
/external/llvm/include/llvm/Support/ |
D | FileSystem.h | 285 error_code current_path(SmallVectorImpl<char> &result);
|
/external/chromium/net/disk_cache/ |
D | backend_impl.cc | 124 FilePath current_path = full_path.StripTrailingSeparators(); in DelayedCacheCleanup() local 126 FilePath path = current_path.DirName(); in DelayedCacheCleanup() 127 FilePath name = current_path.BaseName(); in DelayedCacheCleanup()
|
/external/llvm/lib/Support/ |
D | PathV2.cpp | 616 if (error_code ec = current_path(current_dir)) return ec; in make_absolute()
|
/external/llvm/lib/Support/Unix/ |
D | PathV2.inc | 115 error_code current_path(SmallVectorImpl<char> &result) {
|
/external/llvm/lib/Support/Windows/ |
D | PathV2.inc | 131 error_code current_path(SmallVectorImpl<char> &result) {
|
/external/clang/lib/Driver/ |
D | Driver.cpp | 1555 llvm::sys::fs::current_path(Result); in GetNamedOutputPath()
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 274 llvm::sys::fs::current_path(CWD); in getCurrentDirname()
|