HomeSort by relevance Sort by last modified time
    Searched refs:current_path (Results 1 - 20 of 20) sorted by null

  /external/webrtc/test/testsupport/
fileutils.cc 51 std::string current_path(working_dir);
53 int path_delimiter_index = current_path.find_last_of(kPathDelimiter);
55 std::string root_filename = current_path + kPathDelimiter +
60 return current_path + kPathDelimiter;
63 current_path = current_path.substr(0, path_delimiter_index);
64 path_delimiter_index = current_path.find_last_of(kPathDelimiter);
  /external/v8/test/mjsunit/
testcfg.py 123 def ListTests(self, current_path, path, mode, variant_flags):
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/v8/test/message/
testcfg.py 106 def ListTests(self, current_path, path, mode, variant_flags):
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/v8/test/preparser/
testcfg.py 99 executable, current_path, mode):
106 current_path + [filename, name],
122 def ListTests(self, current_path, path, mode, variant_flags):
142 current_path + [file], executable,
151 executable, current_path, mode)
  /external/v8/test/es5conform/
testcfg.py 76 def ListTests(self, current_path, path, mode, variant_flags):
87 root_path = current_path + [x for x in root_path if x]
  /external/v8/test/sputnik/
testcfg.py 84 def ListTests(self, current_path, path, mode, variant_flags):
97 full_path = current_path + [test.GetPath()[-1]]
  /external/chromium/base/
values.cc 342 std::string current_path(path);
344 for (size_t delimiter_position = current_path.find('.');
346 delimiter_position = current_path.find('.')) {
348 std::string key(current_path, 0, delimiter_position);
356 current_path.erase(0, delimiter_position + 1);
359 current_dictionary->SetWithoutPathExpansion(current_path, in_value);
398 std::string current_path(path);
400 for (size_t delimiter_position = current_path.find('.');
402 delimiter_position = current_path.find('.')) {
405 current_path.substr(0, delimiter_position), &child_dictionary)
    [all...]
  /external/v8/test/cctest/
testcfg.py 84 def ListTests(self, current_path, path, mode, variant_flags):
103 full_path = current_path + relative_path
  /external/v8/test/mozilla/
testcfg.py 95 def ListTests(self, current_path, path, mode, variant_flags):
107 root_path = current_path + [x for x in root_path if x]
  /external/v8/test/test262/
testcfg.py 80 def ListTests(self, current_path, path, mode, variant_flags):
91 root_path = current_path + [x for x in root_path if x]
  /external/chromium/chrome/browser/history/
redirect_uitest.cc 186 FilePath current_path; local
187 ASSERT_TRUE(net::FileURLToFilePath(current_url, &current_path));
188 ASSERT_TRUE(file_util::AbsolutePath(&current_path));
191 StringToLowerASCII(current_path.value()));
  /external/v8/test/benchmarks/
testcfg.py 87 def ListTests(self, current_path, path, mode, variant_flags):
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_tree_model.cc 45 GtkTreePath* current_path = gtk_tree_model_get_path(tree_model, parent_iter); local
46 if (gtk_tree_path_compare(current_path, selected_path) == 0)
48 gtk_tree_path_free(current_path);
  /external/clang/lib/Tooling/
Tooling.cpp 243 llvm::sys::fs::current_path(BaseDirectory);
  /external/llvm/include/llvm/Support/
FileSystem.h 228 error_code current_path(SmallVectorImpl<char> &result);
  /external/v8/tools/
test.py 639 def AddTestsToList(self, result, current_path, path, context, mode):
642 tests = config.ListTests(current_path, path, mode, v)
670 def ListTests(self, current_path, path, context, mode, variant_flags):
676 full_path = current_path + [test_name]
    [all...]
  /external/chromium/net/disk_cache/
backend_impl.cc 124 FilePath current_path = full_path.StripTrailingSeparators(); local
126 FilePath path = current_path.DirName();
127 FilePath name = current_path.BaseName();
    [all...]
  /external/llvm/lib/Support/
PathV2.cpp 616 if (error_code ec = current_path(current_dir)) return ec;
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 820 Operation op, final String name, final String current_path) {
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 272 llvm::sys::fs::current_path(CWD);
    [all...]

Completed in 1257 milliseconds