HomeSort by relevance Sort by last modified time
    Searched defs:path (Results 1 - 25 of 5507) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libyuv/files/
gyp_libyuv.py 27 path = os.path.abspath(os.path.split(__file__)[0]) variable
28 execfile(os.path.join(path, 'gyp_libyuv'))
  /external/v8/gypfiles/
gyp_v8.py 40 path = os.path.abspath(os.path.split(__file__)[0]) variable
41 execfile(os.path.join(path, 'gyp_v8'))
  /external/webrtc/webrtc/build/
gyp_webrtc.py 23 path = os.path.abspath(os.path.split(__file__)[0]) variable
24 execfile(os.path.join(path, 'gyp_webrtc'))
  /external/python/cpython3/Include/
osmodule.h 11 PyAPI_FUNC(PyObject *) PyOS_FSPath(PyObject *path); variable
  /external/strace/tests/
zeroargc.c 39 const char *const path = av[1]; local
41 execve(path, av + 1, av + 2);
42 perror_msg_and_fail("execve: %s", path);
  /external/strace/tests-m32/
zeroargc.c 39 const char *const path = av[1]; local
41 execve(path, av + 1, av + 2);
42 perror_msg_and_fail("execve: %s", path);
  /external/strace/tests-mx32/
zeroargc.c 39 const char *const path = av[1]; local
41 execve(path, av + 1, av + 2);
42 perror_msg_and_fail("execve: %s", path);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
serve.py 3 Small wsgiref based web server. Takes a path to serve from and an
15 fn = os.path.join(path, environ['PATH_INFO'][1:])
16 if '.' not in fn.split(os.path.sep)[-1]:
17 fn = os.path.join(fn, 'index.html')
20 if os.path.exists(fn):
28 path = sys.argv[1] variable
31 print "Serving %s on port %s, control-C to stop" % (path, port)
svneol.py 37 default = os.path.join(root, ".svn", "props", fn+".svn-work")
39 format = int(open(os.path.join(root, ".svn", "format")).read().strip())
45 return [os.path.join(root, ".svn", "prop-base", fn+".svn-base"),
46 os.path.join(root, ".svn", "props", fn+".svn-work")]
52 for path in propfiles(root, fn):
54 f = open(path)
90 path = os.path.join(root, fn) variable
91 os.system('svn propset svn:eol-style native "%s"' % path)
  /external/compiler-rt/test/asan/TestCases/Linux/
activation-options.cc 49 std::string path = std::string(argv[0]) + "-so.so"; local
56 void *dso = dlopen(path.c_str(), RTLD_NOW);
  /external/python/cpython2/Tools/scripts/
serve.py 3 Small wsgiref based web server. Takes a path to serve from and an
15 fn = os.path.join(path, environ['PATH_INFO'][1:])
16 if '.' not in fn.split(os.path.sep)[-1]:
17 fn = os.path.join(fn, 'index.html')
20 if os.path.exists(fn):
28 path = sys.argv[1] variable
31 print "Serving %s on port %s, control-C to stop" % (path, port)
svneol.py 37 default = os.path.join(root, ".svn", "props", fn+".svn-work")
39 format = int(open(os.path.join(root, ".svn", "format")).read().strip())
45 return [os.path.join(root, ".svn", "prop-base", fn+".svn-base"),
46 os.path.join(root, ".svn", "props", fn+".svn-work")]
52 for path in propfiles(root, fn):
54 f = open(path)
90 path = os.path.join(root, fn) variable
91 os.system('svn propset svn:eol-style native "%s"' % path)
  /external/python/cpython3/Tools/scripts/
serve.py 3 Small wsgiref based web server. Takes a path to serve from and an
15 fn = os.path.join(path, environ['PATH_INFO'][1:])
16 if '.' not in fn.split(os.path.sep)[-1]:
17 fn = os.path.join(fn, 'index.html')
20 if os.path.exists(fn):
28 path = sys.argv[1] variable
31 print("Serving {} on port {}, control-C to stop".format(path, port))
  /external/skia/gm/
bug615686.cpp 16 SkPath path; local
17 path.moveTo(0, 0);
18 path.cubicTo(200, 200, 0, 200, 200, 0);
19 canvas->drawPath(path, p);
crbug_691386.cpp 12 SkPath path; local
13 if (!SkParsePath::FromSVGString("M -1 0 A 1 1 0 0 0 1 0 Z", &path)) {
21 canvas->drawPath(path, p);
crbug_788500.cpp 14 SkPath path; local
15 path.setFillType(SkPath::kEvenOdd_FillType);
16 path.moveTo(0, 0);
17 path.moveTo(245.5f, 98.5f);
18 path.cubicTo(245.5f, 98.5f, 242, 78, 260, 75);
22 canvas->drawPath(path, paint);
hugepath.cpp 20 SkPath path; local
24 path.reset();
25 path.moveTo(-1000,12345678901234567890.f);
26 path.lineTo(10.5f,200);
27 canvas->drawPath(path, paint);
29 path.reset();
30 path.moveTo(30.5f,400);
31 path.lineTo(1000,-9.8765432109876543210e+19f);
32 canvas->drawPath(path, paint);
orientation.cpp 23 SkString path = SkStringPrintf("images/orientation/%c.jpg", i); local
24 auto image = GetResourceAsImage(path.c_str());
smallarc.cpp 21 SkPath path; local
22 path.moveTo(75, 0);
23 path.cubicTo(33.5, 0, 0, 33.5, 0, 75);
27 canvas->drawPath(path, p);
  /external/skqp/gm/
bug615686.cpp 16 SkPath path; local
17 path.moveTo(0, 0);
18 path.cubicTo(200, 200, 0, 200, 200, 0);
19 canvas->drawPath(path, p);
crbug_691386.cpp 12 SkPath path; local
13 if (!SkParsePath::FromSVGString("M -1 0 A 1 1 0 0 0 1 0 Z", &path)) {
21 canvas->drawPath(path, p);
crbug_788500.cpp 14 SkPath path; local
15 path.setFillType(SkPath::kEvenOdd_FillType);
16 path.moveTo(0, 0);
17 path.moveTo(245.5f, 98.5f);
18 path.cubicTo(245.5f, 98.5f, 242, 78, 260, 75);
22 canvas->drawPath(path, paint);
hugepath.cpp 20 SkPath path; local
24 path.reset();
25 path.moveTo(-1000,12345678901234567890.f);
26 path.lineTo(10.5f,200);
27 canvas->drawPath(path, paint);
29 path.reset();
30 path.moveTo(30.5f,400);
31 path.lineTo(1000,-9.8765432109876543210e+19f);
32 canvas->drawPath(path, paint);
orientation.cpp 23 SkString path = SkStringPrintf("images/orientation/%c.jpg", i); local
24 auto image = GetResourceAsImage(path.c_str());
smallarc.cpp 21 SkPath path; local
22 path.moveTo(75, 0);
23 path.cubicTo(33.5, 0, 0, 33.5, 0, 75);
27 canvas->drawPath(path, p);

Completed in 364 milliseconds

1 2 3 4 5 6 7 8 91011>>