| /third_party/icu/icu4j/main/tests/collate/ |
| H A D | .classpath | 3 <classpathentry excluding="**/.svn/" kind="src" path="src"/> 4 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-collate"/> 5 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/> 6 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-test-framework"/> 7 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> 8 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-currdata"/> 9 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-langdata"/> 10 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-regiondata"/> 11 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-core-tests"/> 12 <classpathentry kind="lib" path [all...] |
| /third_party/icu/icu4j/main/tests/localespi/ |
| H A D | .classpath | 3 <classpathentry excluding="**/.svn/" kind="src" path="src"/> 4 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"> 9 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/> 10 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-localespi"/> 11 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-test-framework"/> 12 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-collate"/> 13 <classpathentry kind="lib" path="/external-libraries/hamcrest-core-1.3.jar"/> 14 <classpathentry kind="lib" path="/external-libraries/junit-4.12.jar" sourcepath="/external-libraries/junit-4.12-sources.jar"> 19 <classpathentry kind="lib" path="/external-libraries/JUnitParams-1.0.5.jar" sourcepath="/external-libraries/JUnitParams-1.0.5-sources.jar"> 24 <classpathentry combineaccessrules="false" kind="src" path [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-snapshot-api.js | 10 const path = require('path'); 20 const blobPath = path.join(tmpdir.path, 'snapshot.blob'); 21 const entry = fixtures.path('snapshot', 'v8-startup-snapshot-api.js'); 29 fs.writeFileSync(path.join(tmpdir.path, book), content, 'utf8'); 31 fs.copyFileSync(entry, path.join(tmpdir.path, 'entry.js')); 38 cwd: tmpdir.path [all...] |
| H A D | test-module-symlinked-peer-modules.js | 13 const path = require('path'); 18 const tmpDir = tmpdir.path; 33 const moduleA = path.join(tmpDir, 'moduleA'); 34 const app = path.join(tmpDir, 'app'); 35 const moduleB = path.join(app, 'node_modules', 'moduleB'); 36 const moduleA_link = path.join(app, 'node_modules', 'moduleA'); 39 fs.mkdirSync(path.join(app, 'node_modules')); 51 fs.writeFileSync(path.join(moduleA, 'package.json'), 53 fs.writeFileSync(path [all...] |
| H A D | test-path.js | 25 const path = require('path'); 39 [path.posix, path.win32].forEach((namespace) => { 58 // path.sep tests 60 assert.strictEqual(path.win32.sep, '\\'); 62 assert.strictEqual(path.posix.sep, '/'); 64 // path.delimiter tests 66 assert.strictEqual(path.win32.delimiter, ';'); 68 assert.strictEqual(path [all...] |
| H A D | test-snapshot-error.js | 11 const path = require('path'); 15 const blobPath = path.join(tmpdir.path, 'snapshot.blob'); 16 const entry = fixtures.path('snapshot', 'error.js'); 25 cwd: tmpdir.path 34 assert(!fs.existsSync(path.join(tmpdir.path, 'snapshot.blob'))); 44 cwd: tmpdir.path 52 assert(!fs.existsSync(path [all...] |
| H A D | test-v8-coverage.js | 8 const path = require('path'); 21 const coverageDirectory = path.join(tmpdir.path, nextdir()); 40 const coverageDirectory = path.join(tmpdir.path, nextdir()); 58 const coverageDirectory = path.join(tmpdir.path, nextdir()); 77 const coverageDirectory = path.join(tmpdir.path, nextdi [all...] |
| /third_party/node/deps/npm/node_modules/which/node_modules/isexe/dist/cjs/ |
| H A D | win32.js | 13 * Determine whether a path is executable based on the file extension 16 const isexe = async (path, options = {}) => { 19 return checkStat(await (0, promises_1.stat)(path), path, options); 30 * Synchronously determine whether a path is executable based on the file 33 const sync = (path, options = {}) => { 36 return checkStat((0, fs_1.statSync)(path), path, options); 46 const checkPathExt = (path, options) => { 54 const ext = path [all...] |
| /third_party/rust/crates/libc/libc-test/ |
| H A D | Cargo.toml | 14 path = ".." 31 path = "test/main.rs" 36 path = "test/linux_fcntl.rs" 41 path = "test/linux_if_arp.rs" 46 path = "test/linux_ipv6.rs" 51 path = "test/linux_elf.rs" 56 path = "test/linux_strerror_r.rs" 61 path = "test/linux_termios.rs" 66 path = "test/cmsg.rs" 71 path [all...] |
| /third_party/skia/gm/ |
| H A D | hugepath.cpp | 24 SkPath path; in DEF_SIMPLE_GM() local 28 path.reset(); in DEF_SIMPLE_GM() 29 path.moveTo(-1000,12345678901234567890.f); in DEF_SIMPLE_GM() 30 path.lineTo(10.5f,200); in DEF_SIMPLE_GM() 31 canvas->drawPath(path, paint); in DEF_SIMPLE_GM() 33 path.reset(); in DEF_SIMPLE_GM() 34 path.moveTo(30.5f,400); in DEF_SIMPLE_GM() 35 path.lineTo(1000,-9.8765432109876543210e+19f); in DEF_SIMPLE_GM() 36 canvas->drawPath(path, paint); in DEF_SIMPLE_GM() 51 SkPath path; in DEF_SIMPLE_GM() [all...] |
| /third_party/mesa3d/src/intel/ci/ |
| H A D | traces-iris.yml | 5 # - path: 0ad/0ad-v2.trace 19 - path: behdad-glyphy/glyphy-v2.trace 33 - path: glmark2/desktop:windows=4:effect=blur:blur-radius=5:passes=1:separable=true-v2.trace 47 - path: glmark2/jellyfish-v2.trace 61 - path: glxgears/glxgears-2-v2.trace 75 - path: 0ad/0ad-v2.trace 89 - path: pathfinder/demo-v2.trace 103 - path: pathfinder/canvas_moire-v2.trace 117 - path: pathfinder/canvas_text_v2-v2.trace 131 - path [all...] |
| /third_party/FatFs/documents/res/ |
| H A D | app2.c | 10 TCHAR* path, /* Path name buffer with the sub-directory to delete */
in delete_node() 11 UINT sz_buff, /* Size of path name buffer (items) */
in delete_node() 20 fr = f_opendir(&dir, path); /* Open the sub-directory to make it empty */
in delete_node() 23 for (i = 0; path[i]; i++) ; /* Get current path length */
in delete_node() 24 path[i++] = _T('/');
in delete_node() 30 do { /* Make a path name */
in delete_node() 34 path[i + j] = fno->fname[j];
in delete_node() 37 fr = delete_node(path, sz_buf in delete_node() 9 delete_node( TCHAR* path, UINT sz_buff, FILINFO* fno ) delete_node() argument [all...] |
| /third_party/ltp/lib/ |
| H A D | tst_fill_fs.c | 19 void fill_random(const char *path, int verbose) in fill_random() argument 28 statvfs(path, &fi); in fill_random() 33 snprintf(file, sizeof(file), "%s/file%i", path, i++); in fill_random() 74 void fill_flat_vec(const char *path, int verbose) in fill_flat_vec() argument 81 dir = open(path, O_PATH | O_DIRECTORY); in fill_flat_vec() 87 tst_brk(TBROK | TERRNO, "open(%s, %d) failed", path, O_PATH | O_DIRECTORY); in fill_flat_vec() 96 tst_brk(TBROK | TERRNO, "openat(%d, %d, 0600) failed for path %s", in fill_flat_vec() 97 dir, O_PATH | O_DIRECTORY, path); in fill_flat_vec() 117 tst_res(TINFO, "writev(\"%s/AOF\", iov, %d) = %d", path, iovcnt, ret); in fill_flat_vec() 124 tst_brk(TBROK | TERRNO, "writev(\"%s/AOF\", iov, %d)", path, iovcn in fill_flat_vec() 135 tst_fill_fs(const char *path, int verbose, enum tst_fill_access_pattern pattern) tst_fill_fs() argument [all...] |
| /third_party/node/deps/npm/node_modules/node-gyp/lib/ |
| H A D | find-node-directory.js | 3 const path = require('path') 17 const npmParentDirectory = path.join(scriptLocation, '../../../..') 19 path.basename(npmParentDirectory)) 23 if (path.basename(npmParentDirectory) === 'deps') { 26 nodeRootDir = path.join(npmParentDirectory, '..') 29 } else if (path.basename(npmParentDirectory) === 'node_modules') { 35 nodeRootDir = path.join(npmParentDirectory, '..') 37 nodeRootDir = path.join(npmParentDirectory, '../..') 44 const nodeDir = path [all...] |
| /third_party/mesa3d/src/gallium/drivers/i915/ci/ |
| H A D | traces-i915.yml | 8 - path: glxgears/glxgears-2-v2.trace 12 - path: gputest/plot3d-v2.trace 16 - path: gputest/triangle-v2.trace 22 #- path: humus/AmbientAperture-v2.trace 26 - path: humus/CelShading-v2.trace 32 #- path: humus/DynamicBranching3-v2.trace 37 #- path: humus/HDR-v2.trace 41 - path: humus/Portals-v2.trace 46 #- path: humus/RaytracedShadows-v2.trace 51 #- path [all...] |
| /third_party/python/Modules/_multiprocessing/clinic/ |
| H A D | posixshmem.c.h | 8 "shm_open($module, /, path, flags, mode=511)\n" 17 _posixshmem_shm_open_impl(PyObject *module, PyObject *path, int flags, 24 static const char * const _keywords[] = {"path", "flags", "mode", NULL}; in _posixshmem_shm_open() 28 PyObject *path; in _posixshmem_shm_open() local 38 _PyArg_BadArgument("shm_open", "argument 'path'", "str", args[0]); in _posixshmem_shm_open() 44 path = args[0]; in _posixshmem_shm_open() 57 _return_value = _posixshmem_shm_open_impl(module, path, flags, mode); in _posixshmem_shm_open() 72 "shm_unlink($module, /, path)\n" 85 _posixshmem_shm_unlink_impl(PyObject *module, PyObject *path); 91 static const char * const _keywords[] = {"path", NUL in _posixshmem_shm_unlink() 94 PyObject *path; _posixshmem_shm_unlink() local [all...] |
| /third_party/vixl/tools/ |
| H A D | config.py | 30 dir_tools = os.path.dirname(os.path.realpath(__file__)) 31 dir_root = os.path.abspath(os.path.join(dir_tools, '..')) 32 dir_build = os.path.join(dir_root, 'obj') 33 dir_build_latest = os.path.join(dir_build, 'latest') 34 dir_src_vixl = os.path.join(dir_root, 'src') 35 dir_tests = os.path.join(dir_root, 'test') 36 dir_aarch64_benchmarks = os.path.join(dir_root, 'benchmarks', 'aarch64') 37 dir_aarch32_benchmarks = os.path [all...] |
| /third_party/typescript/src/testRunner/unittests/tsserver/ |
| H A D | languageService.ts | 5 path: "/a/Lib/lib.d.ts",
9 path: "/a/b/app.ts",
14 projectService.openClientFile(f.path);
22 path: "/project/shared.ts",
28 path: `/project/a/tsconfig.json`,
32 path: `/project/a/foo.d.ts`,
38 path: "/project/a/index.ts",
42 path: `/project/b/tsconfig.json`,
46 path: `/project/b/foo.d.ts`,
52 path [all...] |
| H A D | rename.ts | 4 const aTs: File = { path: "/a.ts", content: "export const a = 0;" };
5 const bTs: File = { path: "/b.ts", content: 'import { a } from "./a";' };
26 fileToRename: aTs.path,
27 displayName: aTs.path,
28 fullDisplayName: aTs.path,
34 file: bTs.path,
52 fileToRename: aTs.path,
53 displayName: aTs.path,
54 fullDisplayName: aTs.path,
60 file: bTs.path,
[all...] |
| /third_party/python/Lib/test/test_importlib/ |
| H A D | test_path.py | 10 def execute(self, package, path): 11 with resources.as_file(resources.files(package).joinpath(path)): 17 # Path should be readable. 18 # Test also implicitly verifies the returned object is a pathlib.Path 21 with resources.as_file(target) as path: 22 self.assertTrue(path.name.endswith("utf-8.file"), repr(path)) 23 # pathlib.Path.read_text() was introduced in Python 3.5. 24 with path.open('r', encoding='utf-8') as file: 37 with resources.as_file(target) as path [all...] |
| /third_party/rust/crates/cxx/gen/build/src/ |
| H A D | paths.rs | 4 use std::path::{Component, Path, PathBuf}; 14 // Given a path provided by the user, determines where generated files related 15 // to that path should go in our out dir. In particular we don't want to 17 // passed a path containing lots of `..` or an absolute path. 18 pub(crate) fn local_relative_path(path: &Path) -> PathBuf { 20 for component in path.components() { 34 impl PathExt for Path { [all...] |
| /third_party/skia/include/core/ |
| H A D | SkPathMeasure.h | 18 /** Initialize the pathmeasure with the specified path. The parts of the path that are needed 19 * are copied, so the client is free to modify/delete the path after this call. 24 SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 27 /** Reset the pathmeasure with the specified path. The parts of the path that are needed 28 * are copied, so the client is free to modify/delete the path after this call.. 32 /** Return the total length of the current contour, or 0 if no path 39 Returns false if there is no path, or a zero-length path wa [all...] |
| /third_party/skia/infra/bots/recipes/infra.expected/ |
| H A D | infra_tests_lottie_ci.json | 13 "PATH": "[START_DIR]/go/go/bin:[START_DIR]/cache/gopath/bin:<PATH>:RECIPE_REPO[depot_tools]" 29 "PATH": "[START_DIR]/go/go/bin:[START_DIR]/cache/gopath/bin:<PATH>:RECIPE_REPO[depot_tools]" 47 "PATH": "[START_DIR]/go/go/bin:[START_DIR]/cache/gopath/bin:<PATH>:RECIPE_REPO[depot_tools]" 62 "PATH": "[START_DIR]/go/go/bin:[START_DIR]/cache/gopath/bin:<PATH>:RECIPE_REPO[depot_tools]" 78 "PATH": "[START_DIR]/go/go/bin:[START_DIR]/cache/gopath/bin:<PATH> [all...] |
| /third_party/python/Lib/test/ |
| H A D | test_tempfile.py | 64 self.assertIs(str, tempfile._infer_return_type(pathlib.Path('/'))) 67 class Path: class 68 def __init__(self, path): 69 self.path = path 72 return self.path 74 self.assertIs(str, tempfile._infer_return_type(Path('/'))) 75 self.assertIs(bytes, tempfile._infer_return_type(Path(b'/'))) 76 self.assertIs(str, tempfile._infer_return_type('', Path(''))) 77 self.assertIs(bytes, tempfile._infer_return_type(b'', Path( [all...] |
| /third_party/skia/third_party/externals/tint/tools/ |
| H A D | run_tests.py | 34 A single test case to be executed. Stores the path to the test file 171 base_path = os.path.abspath( 172 os.path.join(os.path.dirname(__file__), '..')) 177 default=os.path.join(base_path, 'out', 'Debug'), 178 help='path to build directory') 180 default=os.path.join(os.path.dirname(__file__), '..', 184 help='path to directory containing test files') 187 default=os.path [all...] |