Home
last modified time | relevance | path

Searched refs:path (Results 1876 - 1900 of 10000) sorted by relevance

1...<<71727374757677787980>>...400

/third_party/node/benchmark/path/
H A Dextname-posix.js3 const { posix } = require('path');
6 path: [
21 function main({ n, path }) {
24 posix.extname(i % 3 === 0 ? `${path}${i}` : path);
H A Ddirname-win32.js3 const { win32 } = require('path');
6 path: [
18 function main({ n, path }) {
21 win32.dirname(i % 3 === 0 ? `${path}${i}` : path);
H A DisAbsolute-posix.js3 const { posix } = require('path');
6 path: [
16 function main({ n, path }) {
19 posix.isAbsolute(i % 3 === 0 ? `${path}${i}` : path);
H A Ddirname-posix.js3 const { posix } = require('path');
6 path: [
18 function main({ n, path }) {
21 posix.dirname(i % 3 === 0 ? `${path}${i}` : path);
H A Dnormalize-win32.js3 const { win32 } = require('path');
6 path: [
17 function main({ n, path }) {
20 win32.normalize(i % 3 === 0 ? `${path}${i}` : path);
H A DisAbsolute-win32.js3 const { win32 } = require('path');
6 path: [
17 function main({ n, path }) {
20 win32.isAbsolute(i % 3 === 0 ? `${path}${i}` : path);
H A Dnormalize-posix.js3 const { posix } = require('path');
6 path: [
17 function main({ n, path }) {
20 posix.normalize(i % 3 === 0 ? `${path}${i}` : path);
H A Dparse-win32.js3 const { win32 } = require('path');
6 path: [
19 function main({ n, path }) {
22 win32.parse(i % 3 === 0 ? `${path}${i}` : path);
H A DmakeLong-win32.js3 const { win32 } = require('path');
6 path: [
15 function main({ n, path }) {
18 win32._makeLong(i % 3 === 0 ? `${path}${i}` : path);
H A Dparse-posix.js3 const { posix } = require('path');
6 path: [
18 function main({ n, path }) {
21 posix.parse(i % 3 === 0 ? `${path}${i}` : path);
/third_party/ltp/testcases/kernel/syscalls/execl/
H A Dexecl01.c21 char path[512]; in verify_execl() local
23 if (tst_get_path("execl01_child", path, sizeof(path))) in verify_execl()
28 TEST(execl(path, "execl01_child", "canary", NULL)); in verify_execl()
/third_party/ltp/testcases/kernel/syscalls/chroot/
H A Dchroot01.c19 static char *path; variable
23 TST_EXP_FAIL(chroot(path), EPERM, "unprivileged chroot()"); in verify_chroot()
30 path = tst_get_tmpdir(); in setup()
37 free(path); in cleanup()
/third_party/protobuf/php/tests/
H A Dautoload.php10 $path = realpath($dir.DIRECTORY_SEPARATOR.$value); variable
11 if (!is_dir($path)) {
12 $results[] = $path;
14 getGeneratedFiles($path, $results);
/third_party/python/Lib/unittest/test/testmock/
H A D__main__.py7 this_dir = os.path.dirname(__file__)
10 top_level_dir = os.path.dirname(os.path.dirname(os.path.dirname(this_dir)))
/third_party/skia/docs/examples/
H A DPath_Convexity.cpp12 SkPath path; in REG_FIDDLE() local
14 path.addPoly(quad, SK_ARRAY_COUNT(quad), true); in REG_FIDDLE()
15 canvas->drawPath(path, paint); in REG_FIDDLE()
16 canvas->drawString(labels[(int) path.getConvexity()], 30, 100, paint); in REG_FIDDLE()
H A DPath_addRRect.cpp12 SkPath path; in REG_FIDDLE() local
16 path.addRRect(rrect); in REG_FIDDLE()
17 path.transform(rotate90); in REG_FIDDLE()
19 canvas->drawPath(path, paint); in REG_FIDDLE()
H A DPath_addRoundRect_2.cpp10 SkPath path; in REG_FIDDLE() local
14 path.addRoundRect({10, 10, 110, 110}, radii); in REG_FIDDLE()
15 path.transform(rotate90); in REG_FIDDLE()
17 canvas->drawPath(path, paint); in REG_FIDDLE()
H A DPath_getSegmentMasks.cpp7 SkPath path; in REG_FIDDLE() local
8 path.quadTo(20, 30, 40, 50); in REG_FIDDLE()
9 path.close(); in REG_FIDDLE()
14 if (mask & path.getSegmentMasks()) { in REG_FIDDLE()
H A DPath_isRRect.cpp8 SkPath path; in REG_FIDDLE() local
9 path.addRRect(SkRRect::MakeRectXY({20, 20, 220, 220}, 30, 50)); in REG_FIDDLE()
11 if (path.isRRect(&rrect)) { in REG_FIDDLE()
17 canvas->drawPath(path, paint); in REG_FIDDLE()
H A DPath_lineTo_2.cpp7 SkPath path; in REG_FIDDLE() local
12 path.moveTo(oxo[i]); in REG_FIDDLE()
13 path.lineTo(oxo[i + 1]); in REG_FIDDLE()
17 canvas->drawPath(path, paint); in REG_FIDDLE()
H A DPath_isOval.cpp8 SkPath path; in REG_FIDDLE() local
9 path.addOval({20, 20, 220, 220}); in REG_FIDDLE()
11 if (path.isOval(&bounds)) { in REG_FIDDLE()
16 canvas->drawPath(path, paint); in REG_FIDDLE()
H A DQuad_a.cpp13 SkPath path; in REG_FIDDLE() local
14 path.moveTo(quadPts[0]); in REG_FIDDLE()
15 path.quadTo(quadPts[1], quadPts[2]); in REG_FIDDLE()
17 canvas->drawPath(path, paint); in REG_FIDDLE()
H A DPath_cubicTo_2.cpp11 SkPath path; in REG_FIDDLE() local
12 path.moveTo(pts[0]); in REG_FIDDLE()
13 path.cubicTo(pts[1], pts[2], pts[3]); in REG_FIDDLE()
14 canvas->drawPath(path, paint); in REG_FIDDLE()
H A DPath_dumpHex.cpp7 SkPath path, copy; in REG_FIDDLE() local
8 path.lineTo(6.f / 7, 2.f / 3); in REG_FIDDLE()
9 path.dumpHex(); in REG_FIDDLE()
13 SkDebugf("path is " "%s" "equal to copy\n", path == copy ? "" : "not "); in REG_FIDDLE()
/third_party/skia/gm/
H A Dsmallarc.cpp24 SkPath path; in DEF_SIMPLE_GM() local
25 path.moveTo(75, 0); in DEF_SIMPLE_GM()
26 path.cubicTo(33.5, 0, 0, 33.5, 0, 75); in DEF_SIMPLE_GM()
30 canvas->drawPath(path, p); in DEF_SIMPLE_GM()

Completed in 6 milliseconds

1...<<71727374757677787980>>...400