Searched refs:realpath (Results 1 - 25 of 212) sorted by relevance

123456789

/external/chromium_org/tools/cr/
H A Dcr.sh14 source $(dirname $(realpath "${BASH_SOURCE:-$0}"))/cr-bash-helpers.sh
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dsyscalls_test.cc43 // functions (realpath, mkdir, chdir, etc.), not the nacl_io functions. This is
70 EXPECT_STREQ("/", realpath("/", buffer));
71 EXPECT_STREQ("/", realpath("/tmp/..", buffer));
72 EXPECT_STREQ("/tmp", realpath("/tmp", buffer));
73 EXPECT_STREQ("/tmp", realpath("/tmp/", buffer));
74 EXPECT_STREQ("/tmp", realpath("/tmp/bar/..", buffer));
75 EXPECT_STREQ("/tmp", realpath("/tmp/bar/../bar/../../tmp", buffer));
76 EXPECT_STREQ("/tmp", realpath("/tmp/././", buffer));
77 EXPECT_STREQ("/tmp", realpath("///tmp", buffer));
78 EXPECT_STREQ("/tmp/bar", realpath("/tm
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/
H A Dfind_js_files.py15 _SCRIPT_DIR = os.path.realpath(os.path.dirname(__file__))
16 _CHROME_SOURCE = os.path.realpath(
/external/valgrind/main/none/tests/darwin/
H A Dapple-main-arg.c24 // Make sure realpath(argv[0]) == realpath(apple[0]). (realpath resolves
26 realpath(argv[0], pargv);
27 realpath(apple[0], pappl);
/external/chromium_org/content/test/gpu/page_sets/
H A Dpage_set_unittest.py13 page_sets_dir = os.path.dirname(os.path.realpath(__file__))
/external/chromium_org/third_party/cython/src/
H A Dcython.py13 cythonpath, _ = os.path.split(os.path.realpath(__file__))
/external/chromium_org/third_party/libyuv/
H A Ddownload_vs_toolchain.py20 checkout_root = os.path.dirname(os.path.realpath(__file__))
/external/chromium_org/third_party/skia/tools/
H A Dfix_pythonpath.py14 CHECKOUT_ROOT = os.path.realpath(os.path.join(
H A Dreformat-json.py35 GM_DIRECTORY = os.path.realpath(
/external/chromium_org/tools/metrics/histograms/
H A Dvalidate_format.py14 xml_file = os.path.join(os.path.dirname(os.path.realpath(__file__)),
/external/chromium_org/tools/perf/page_sets/
H A Dpage_set_unittest.py16 page_sets_dir = os.path.dirname(os.path.realpath(__file__))
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dcheck-blink-deps45 root_dir = os.path.realpath(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir))
49 check_deps = os.path.realpath(os.path.join(root_dir, os.pardir, os.pardir, 'buildtools', 'checkdeps', 'checkdeps.py'))
/external/deqp/scripts/
H A Dcppcheck.py120 fullDstFile = os.path.realpath(dstFile)
143 srcDir = os.path.realpath(os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "..")))
/external/chromium_org/content/test/gpu/
H A Drun_gpu_test.py17 base_dir = os.path.dirname(os.path.realpath(__file__))
H A Drun_unittests23 base_dir = os.path.dirname(os.path.realpath(__file__))
/external/chromium_org/tools/telemetry/
H A Drun_tests14 base_dir = os.path.dirname(os.path.realpath(__file__))
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dpath_set.py21 return os.path.realpath(path) in self._paths
30 path = os.path.realpath(path)
40 path = os.path.realpath(path)
/external/chromium_org/third_party/libaddressinput/chromium/tools/
H A Dupdate-strings.py25 script_dir = os.path.dirname(os.path.realpath(__file__))
/external/chromium_org/tools/chrome_proxy/
H A Drun_benchmark17 base_dir = os.path.dirname(os.path.realpath(__file__))
/external/chromium_org/tools/perf/
H A Drun_benchmark16 base_dir = os.path.dirname(os.path.realpath(__file__))
H A Drun_tests21 base_dir = os.path.dirname(os.path.realpath(__file__))
/external/elfutils/0.153/bionic-fixup/
H A DAndroidFixup.h48 #define canonicalize_file_name(path) realpath(path, NULL)
/external/oprofile/libutil/tests/
H A Dfile_tests.c37 /* POSIX namespace ignored by realpath(3) */
55 if (!realpath(tests[i][0], tmp)) {
/external/skia/tools/
H A Dreformat-json.py35 GM_DIRECTORY = os.path.realpath(
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
H A Dfinder.py36 self.top_directory = filesystem.realpath(top_directory)
60 realpath = self.filesystem.realpath(self.filesystem.join(self.top_directory, path))
61 if realpath.startswith(self.top_directory + self.filesystem.sep):
62 return realpath.replace(self.top_directory + self.filesystem.sep, '')
118 realpath = self.filesystem.realpath(arg)
119 if self.filesystem.exists(realpath):
120 names = self._find_in_trees(realpath, suffixes)

Completed in 957 milliseconds

123456789