/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
realpath | 2 $description = "Test the realpath functions."; 7 ifneq ($(realpath .),$(CURDIR)) 11 ifneq ($(realpath ./),$(CURDIR)) 15 ifneq ($(realpath .///),$(CURDIR)) 19 ifneq ($(realpath /),/) 23 ifneq ($(realpath /.),/) 27 ifneq ($(realpath /./),/) 31 ifneq ($(realpath /.///),/) 35 ifneq ($(realpath /..),/) 39 ifneq ($(realpath /../),/ [all...] |
abspath | 7 ifneq ($(realpath $(abspath .)),$(CURDIR)) 8 $(warning .: abs="$(abspath .)" real="$(realpath $(abspath .))" curdir="$(CURDIR)") 11 ifneq ($(realpath $(abspath ./)),$(CURDIR)) 12 $(warning ./: abs="$(abspath ./)" real="$(realpath $(abspath ./))" curdir="$(CURDIR)") 15 ifneq ($(realpath $(abspath .///)),$(CURDIR)) 16 $(warning .///: abs="$(abspath .///)" real="$(realpath $(abspath .///))" curdir="$(CURDIR)")
|
/frameworks/compile/mclinker/lib/Support/ |
RealPath.cpp | 1 //===- RealPath.cpp -------------------------------------------------------===// 9 #include "mcld/Support/RealPath.h" 15 // RealPath 16 RealPath::RealPath() 20 RealPath::RealPath(const RealPath::ValueType* s ) 25 RealPath::RealPath(const RealPath::StringType &s [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
syscalls_test.cc | 43 // functions (realpath, mkdir, chdir, etc.), not the nacl_io functions. This is 46 TEST_F(SyscallsTest, Realpath) { 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)) [all...] |
/device/asus/flo/ |
kickstart_checker.sh | 10 chown system:system $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs1) 11 chmod 660 $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs1) 12 chown system:system $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs2) 13 chmod 660 $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs2) 14 chown system:system $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs3) 15 chmod 660 $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefs3) 16 chown system:system $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefsc) 17 chmod 660 $(realpath /dev/block/platform/msm_sdcc.1/by-name/m9kefsc)
|
/external/valgrind/main/none/tests/darwin/ |
apple-main-arg.c | 24 // Make sure realpath(argv[0]) == realpath(apple[0]). (realpath resolves 26 realpath(argv[0], pargv); 27 realpath(apple[0], pappl);
|
/external/valgrind/main/ |
exp-sgcheck.supp | 10 glibc realpath false positive 12 fun:realpath
|
/frameworks/compile/mclinker/include/mcld/Support/ |
RealPath.h | 1 //===- RealPath.h ---------------------------------------------------------===// 18 /** \class RealPath 22 class RealPath : public Path 29 RealPath(); 30 explicit RealPath(const ValueType* s ); 31 explicit RealPath(const StringType &s ); 32 explicit RealPath(const Path& pPath); 34 ~RealPath(); 36 RealPath& assign(const Path& pPath); 52 struct less<mcld::sys::fs::RealPath> : public binary_function [all...] |
/external/oprofile/libutil++/tests/ |
Makefile.am | 2 REALPATH= readlink -f 4 SRCDIR := $(shell $(REALPATH) $(topdir)/libutil++/tests/ )
|
/external/chromium_org/content/test/gpu/page_sets/ |
page_set_unittest.py | 13 page_sets_dir = os.path.dirname(os.path.realpath(__file__))
|
/external/chromium_org/third_party/cython/src/ |
cython.py | 13 cythonpath, _ = os.path.split(os.path.realpath(__file__))
|
/ndk/tests/abcc/ |
Android.mk | 10 LOCAL_ASSET_DIR := $(realpath $(LOCAL_PATH))/prebuilts/assets/$(TARGET_CPU_ABI)
|
/external/chromium_org/tools/telemetry/telemetry/util/ |
path_set.py | 21 return os.path.realpath(path) in self._paths 30 path = os.path.realpath(path) 40 path = os.path.realpath(path)
|
path_set_unittest.py | 23 self.assertEqual(ps.pop(), os.path.realpath(__file__)) 30 self.assertEqual(ps.pop(), os.path.realpath(__file__))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_posixpath.py | 5 from posixpath import realpath, abspath, dirname, basename namespace 229 self.assertEqual(realpath('.'), os.getcwd()) 230 self.assertEqual(realpath('./.'), os.getcwd()) 231 self.assertEqual(realpath('/'.join(['.'] * 100)), os.getcwd()) 235 self.assertEqual(realpath('..'), dirname(os.getcwd())) 236 self.assertEqual(realpath('../..'), dirname(dirname(os.getcwd()))) 237 self.assertEqual(realpath('/'.join(['..'] * 100)), '/') 244 self.assertEqual(realpath(ABSTFN), ABSTFN+"1") 254 self.assertEqual(realpath(ABSTFN), ABSTFN) 258 self.assertEqual(realpath(ABSTFN+"1"), ABSTFN+"1" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_posixpath.py | 5 from posixpath import realpath, abspath, dirname, basename namespace 229 self.assertEqual(realpath('.'), os.getcwd()) 230 self.assertEqual(realpath('./.'), os.getcwd()) 231 self.assertEqual(realpath('/'.join(['.'] * 100)), os.getcwd()) 235 self.assertEqual(realpath('..'), dirname(os.getcwd())) 236 self.assertEqual(realpath('../..'), dirname(dirname(os.getcwd()))) 237 self.assertEqual(realpath('/'.join(['..'] * 100)), '/') 244 self.assertEqual(realpath(ABSTFN), ABSTFN+"1") 254 self.assertEqual(realpath(ABSTFN), ABSTFN) 258 self.assertEqual(realpath(ABSTFN+"1"), ABSTFN+"1" [all...] |
/external/chromium_org/content/test/gpu/ |
run_gpu_test.py | 17 base_dir = os.path.dirname(os.path.realpath(__file__))
|
/external/chromium_org/third_party/skia/tools/ |
fix_pythonpath.py | 14 CHECKOUT_ROOT = os.path.realpath(os.path.join(
|
/external/chromium_org/tools/cr/ |
cr.sh | 14 source $(dirname $(realpath "${BASH_SOURCE:-$0}"))/cr-bash-helpers.sh
|
/external/chromium_org/tools/metrics/histograms/ |
validate_format.py | 14 xml_file = os.path.join(os.path.dirname(os.path.realpath(__file__)),
|
/external/chromium_org/tools/perf/page_sets/ |
page_set_unittest.py | 16 page_sets_dir = os.path.dirname(os.path.realpath(__file__))
|
/external/chromium_org/tools/telemetry/ |
run_tests | 14 base_dir = os.path.dirname(os.path.realpath(__file__))
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/ |
find_js_files.py | 15 _SCRIPT_DIR = os.path.realpath(os.path.dirname(__file__)) 16 _CHROME_SOURCE = os.path.realpath(
|
/external/oprofile/libutil/tests/ |
file_tests.c | 37 /* POSIX namespace ignored by realpath(3) */ 55 if (!realpath(tests[i][0], tmp)) {
|
/external/srec/portable/include/ |
PANSIFileSystem.h | 62 * @param realPath ANSI path 63 * @return ESR_INVALID_ARGUMENT if self or virtualPath or realPath is null or realPath is not a valid path; 66 ESR_ReturnCode(*addPath)(PFileSystem* self, const LCHAR* virtualPath, const LCHAR* realPath); 114 * @param realPath ANSI path 115 * @return ESR_INVALID_ARGUMENT if self or virtualPath or realPath is null or realPath is not a valid path; 118 PORTABLE_API ESR_ReturnCode PANSIFileSystemAddPath(const LCHAR* virtualPath, const LCHAR* realPath);
|