HomeSort by relevance Sort by last modified time
    Searched full:realpath (Results 1 - 25 of 836) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/toybox/toys/other/
realpath.c 0 /* realpath.c - Return the canonical version of a pathname
5 USE_REALPATH(NEWTOY(realpath, "<1", TOYFLAG_USR|TOYFLAG_BIN))
7 config REALPATH
8 bool "realpath"
11 usage: realpath FILE...
23 if (!realpath(*s, toybuf)) perror_msg_raw(*s);
  /build/kati/testcase/
realpath.mk 1 foo = $(realpath ./foo)
2 bar = $(realpath ./bar)
3 foofoo = $(realpath ./foo ./foo)
4 foobar = $(realpath ./foo ./bar)
  /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"
17 // RealPath
18 RealPath::RealPath() : Path() {
21 RealPath::RealPath(const RealPath::ValueType* s) : Path(s) {
25 RealPath::RealPath(const RealPath::StringType& s) : Path(s)
    [all...]
  /external/valgrind/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/
exp-sgcheck.supp 10 glibc realpath false positive
12 fun:realpath
  /frameworks/compile/mclinker/include/mcld/Support/
RealPath.h 1 //===- RealPath.h ---------------------------------------------------------===//
19 /** \class RealPath
23 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>
    [all...]
  /build/soong/
reverse_path.py 30 realpath = os.path.relpath(os.path.realpath('.'), os.path.realpath(path))
33 if realpath != relpath:
  /external/chromium-trace/catapult/firefighter/bin/
deploy 10 sys.path.append(os.path.dirname(os.path.realpath(__file__)))
15 root_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
run 12 sys.path.append(os.path.dirname(os.path.realpath(__file__)))
17 root_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
  /bionic/build/
run-on-host.mk 37 ln -fs `realpath $(TARGET_OUT)/bin` /system/
38 ln -fs `realpath $(TARGET_OUT)/etc` /system/
39 ln -fs `realpath $(TARGET_OUT)/lib` /system/
41 ln -fs `realpath $(TARGET_OUT)/lib64` /system/; \
  /external/chromium-trace/catapult/firefighter/default/common/
jinja.py 11 os.path.dirname(os.path.dirname(os.path.realpath(__file__))), 'templates')
  /external/chromium-trace/catapult/telemetry/telemetry/internal/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/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /build/kati/
.travis.yml 11 - sudo apt-get install -y libstdc++-4.8-dev clang-3.5 ninja-build realpath
  /external/autotest/client/cros/
tty.py 18 os.path.realpath('/sys/class/tty/%s/device/driver' %
  /external/skia/tools/
fix_pythonpath.py 14 CHECKOUT_ROOT = os.path.realpath(os.path.join(
  /system/update_engine/include/
update_includes.sh 45 local outdir=$(realpath "${MY_DIR}/${dir}")
56 local guard=$(realpath "${MY_DIR}/../.." | tr '[:lower:]/ ' '[:upper:]__')
70 UE_DIR=$(realpath "${MY_DIR}/..")
71 SHILL_DIR=$(realpath "${UE_DIR}/../connectivity/shill")
  /toolchain/binutils/binutils-2.25/libiberty/
lrealpath.c 1 /* Libiberty realpath. Like realpath, but more consistent behavior.
68 /* cygwin has realpath, so it won't get here. */
79 path. Use that and realpath() to canonicalize the name. This is
81 upper bound, you want to avoid realpath() at all costs. */
85 const char *rp = realpath (filename, buf);
110 to realpath() (it could always overflow). On those systems, we
123 rp = realpath (filename, buf);
131 /* The MS Windows method. If we don't have realpath, we assume we
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_macholib.py 18 return os.path.realpath(dyld_find(dylib))
42 return os.path.realpath(dyld_find(dylib))

Completed in 543 milliseconds

1 2 3 4 5 6 7 8 91011>>