/third_party/skia/tools/skqp/ |
H A D | setup_resources | 12 skia = os.path.join(os.path.dirname(__file__), os.path.pardir, os.path.pardir) 13 dst = os.path.join(skia, 'platform_tools', 'android', 'apps', 'skqp', 19 shutil.copytree(os.path.join(skia, 'resources'), dst)
|
/third_party/typescript/tests/cases/fourslash/ |
H A D | quickInfoImportedTypes.ts | 24 ].join("\n"), "This is an interface");
29 ].join("\n"), "One or two");
34 ].join("\n"), "This is a class");
|
/third_party/python/Lib/test/ |
H A D | _test_venv_multiprocessing.py | 28 fill_pool.join() 29 drain_pool.join() 35 test_pool.join()
|
/foundation/arkui/ace_engine_lite/frameworks/tools/snapshot/ |
H A D | framework2char.py | 21 HMF_ACE_BASE_PATH = os.path.join("..", "..") 22 FRAMEWORK_SNAPSHOT_FILE_PATH = os.path.join( 25 SNAPSHOT_OUTPUT_C_FILE_PATH = os.path.join( 28 FRAMEWORK_JS_FILE_PATH = os.path.join( 31 JS_OUTPUT_C_FILE_PATH = os.path.join(
|
/third_party/cJSON/tests/unity/auto/ |
H A D | unity_test_summary.py | 38 if len(failures) > 0: failure_output.append('\n'.join(failures)) 39 if len(ignores) > 0: ignore_output.append('n'.join(ignores)) 40 tests,failures,ignored = self.parse_test_summary('\n'.join(lines)) 50 self.report += "\n".join(ignore_output) 57 self.report += '\n'.join(failure_output)
|
/third_party/icu/icu4c/source/python/icutools/databuilder/renderers/ |
H A D | makefile.py | 32 ALL_DIRS = " ".join(build_dirs).format(**common_vars) 60 DEP_LITERALS = " ".join(rule.dep_literals) 69 RULE_LINES = "\n".join("\t%s" % cmd for cmd in rule.cmds) 82 return "$(addprefix %s/,%s)" % (dirnames[0], join_str.join(file.filename for file in files)) 84 return join_str.join("%s/%s" % (d, f.filename) for d,f in zip(dirnames, files))
|
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/localedistance/ |
H A D | TestData.java | 53 String.join(" ", values)); in paradigms() 77 lower(type), value, String.join(" ", replacement), lower(reason)); in alias() 91 region, String.join(" ", subregions)); in territoryGroup() 101 region, String.join(" ", subregions)); in territoryGrouping() 111 region, String.join(" ", subregions)); in deprecatedTerritory()
|
/third_party/node/deps/v8/tools/generate_shim_headers/ |
H A D | generate_shim_headers.py | 64 os.path.join(os.path.dirname(__file__), '..', '..')) 67 target_directory = os.path.join( 83 yield os.path.join(target_directory, header_filename) 85 with open(os.path.join(target_directory, header_filename), 'w') as f: 118 return '\n'.join(GeneratorMain(argv))
|
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/ |
H A D | v8_commands.py | 34 DEFAULT_MOCK = os.path.join(BASE_PATH, 'v8_mock.js') 37 JS_SUPPRESSIONS = os.path.join(BASE_PATH, 'v8_suppressions.js') 40 ARCH_MOCKS = os.path.join(BASE_PATH, 'v8_mock_archs.js') 41 WEBASSEMBLY_MOCKS = os.path.join(BASE_PATH, 'v8_mock_webassembly.js') 91 print(' '.join(args))
|
/third_party/node/test/parallel/ |
H A D | test-fs-write-file-sync.js | 44 const file = path.join(tmpdir.path, 'testWriteFileSync.txt'); 54 const file = path.join(tmpdir.path, 'testAppendFileSync.txt'); 80 const file = path.join(tmpdir.path, 'testWriteFileSyncFd.txt'); 97 const file = path.join(tmpdir.path, 'testWriteFileSyncFlags.txt'); 111 const file = path.join(tmpdir.path, 'testWriteFileSyncStringify.txt');
|
H A D | test-fs-write.js | 32 const fn = path.join(tmpdir.path, 'write.txt'); 33 const fn2 = path.join(tmpdir.path, 'write2.txt'); 34 const fn3 = path.join(tmpdir.path, 'write3.txt'); 35 const fn4 = path.join(tmpdir.path, 'write4.txt'); 36 const fn5 = path.join(tmpdir.path, 'write5.txt');
|
H A D | test-http2-util-headers-list.js | 111 'xyz', '2\0', 'xyz', '3\0', 'xyz', '4\0', 'bar', '1\0', '' ].join('\0'), 128 'xyz', '2\0', 'xyz', '3\0', 'xyz', '4\0', '' ].join('\0'), 7 ] 145 'xyz', '2\0', 'xyz', '3\0', 'xyz', '4\0', '' ].join('\0'), 7 ] 161 'xyz', '3\0', 'xyz', '4\0', '' ].join('\0'), 6 ] 173 [ [ 'set-cookie', 'foo=bar\0', '' ].join('\0'), 1 ]
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_kill/ |
H A D | stress.c | 288 UNRESOLVED(ret, "Failed to join a thread"); in main() 294 UNRESOLVED(ret, "Failed to join a thread"); in main() 301 UNRESOLVED(ret, "Failed to join a thread"); in main() 307 UNRESOLVED(ret, "Failed to join a thread"); in main() 315 UNRESOLVED(ret, "Failed to join a thread"); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_join/ |
H A D | 6-3.c | 157 UNRESOLVED(ret, "Unable to join a " in test() 235 /* Now stop the threads and join them */ in main() 248 UNRESOLVED(ret, "Signal 1 sender thread join failed"); in main() 252 UNRESOLVED(ret, "Signal 2 sender thread join failed"); in main() 256 UNRESOLVED(ret, "Worker thread join failed"); in main()
|
H A D | 4-1.c | 24 * -> create another thread which tries and join the first thread. 26 * -> unblock the semaphore then join the 1st thread 27 * The test fails if the main thread is unable to join the 1st thread. 158 /* Join the canceled thread */ in main() 161 UNRESOLVED(ret, "Failed to join the " in main()
|
/third_party/python/Tools/scripts/ |
H A D | smelly.py | 45 print("+ %s" % ' '.join(args)) 115 filename = os.path.join(config_dir, "pybuilddir.txt") 124 builddir = os.path.join(config_dir, pybuilddir) 135 filename = os.path.join(builddir, name) 169 f"are prefixed with {' or '.join(map(repr, ALLOWED_PREFIXES))}")
|
/third_party/python/Lib/distutils/tests/ |
H A D | support.py | 85 path = os.path.join(*path) 103 pkg_dir = os.path.join(tmp_dir, pkg_name) 162 os.path.join(os.path.dirname(__file__), 'xxmodule.c'), 164 os.path.join(srcdir, 'Modules', 'xxmodule.c'), 168 os.path.join(srcdir, '..', '..', '..', 'Modules', 'xxmodule.c'),
|
H A D | test_bdist_rpm.py | 59 pkg_dir = os.path.join(tmp_dir, 'foo') 82 dist_created = os.listdir(os.path.join(pkg_dir, 'dist')) 106 pkg_dir = os.path.join(tmp_dir, 'foo') 128 dist_created = os.listdir(os.path.join(pkg_dir, 'dist')) 135 os.remove(os.path.join(pkg_dir, 'dist', 'foo-0.1-1.noarch.rpm'))
|
H A D | test_spawn.py | 28 exe = os.path.join(tmpdir, 'foo.sh') 31 exe = os.path.join(tmpdir, 'foo.bat') 39 exe = os.path.join(tmpdir, 'foo.sh') 42 exe = os.path.join(tmpdir, 'foo.bat') 56 filename = os.path.join(tmp_dir, program)
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | run_gtest_angle_test.py | 39 sys.path.insert(0, os.path.join(ANGLE_SRC_DIR, 'testing')) 40 sys.path.insert(0, os.path.join(ANGLE_SRC_DIR, 'testing', 'scripts')) 42 sys.path.insert(0, os.path.join(CHROMIUM_SRC_DIR, 'testing')) 43 sys.path.insert(0, os.path.join(CHROMIUM_SRC_DIR, 'testing', 'scripts')) 99 extra_flags.append('--gtest_filter=' + ':'.join(filter_list))
|
H A D | gen_gl_enum_utils.py | 119 inner_code_block = "\n".join([ 128 return "\n".join([ 191 gl_enum_groups=',\n'.join(sorted(gl_enum_in_groups.keys()))) 228 print(','.join(inputs)) 230 print(','.join(outputs))
|
/third_party/skia/src/gpu/tessellate/ |
H A D | Tessellation.h | 76 kStrokeParams = 1 << 1, // [float2] Used when strokes have different widths or join types. 86 // We encode all of a join's information in a single float value: 88 // Negative => Round Join 89 // Zero => Bevel Join 90 // Positive => Miter join, and the value is also the miter limit
|
/third_party/skia/third_party/externals/icu/source/python/icutools/databuilder/renderers/ |
H A D | makefile.py | 32 ALL_DIRS = " ".join(build_dirs).format(**common_vars) 60 DEP_LITERALS = " ".join(rule.dep_literals) 69 RULE_LINES = "\n".join("\t%s" % cmd for cmd in rule.cmds) 82 return "$(addprefix %s/,%s)" % (dirnames[0], join_str.join(file.filename for file in files)) 84 return join_str.join("%s/%s" % (d, f.filename) for d,f in zip(dirnames, files))
|
/third_party/unity/auto/ |
H A D | unity_test_summary.py | 38 if len(failures) > 0: failure_output.append('\n'.join(failures)) 39 if len(ignores) > 0: ignore_output.append('n'.join(ignores)) 40 tests,failures,ignored = self.parse_test_summary('\n'.join(lines)) 50 self.report += "\n".join(ignore_output) 57 self.report += '\n'.join(failure_output)
|
/third_party/typescript/tests/baselines/reference/ |
H A D | inferenceOptionalPropertiesToIndexSignatures.symbols | 72 >Object.entries(obj).map( ([k, v]) => `${k}=${encodeURIComponent(v)}`).join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
87 ).join('&');
88 >join : Symbol(Array.join, Decl(lib.es5.d.ts, --, --))
|