/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setschedparam/ |
H A D | 5-1.c | 275 /* Now stop the threads and join them */ in main() 282 UNRESOLVED(ret, "Signal 1 sender thread join failed"); in main() 286 UNRESOLVED(ret, "Signal 2 sender thread join failed"); in main() 290 UNRESOLVED(ret, "Worker thread join failed"); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cancel/ |
H A D | stress.c | 140 /* Join the thread */ in threaded() 144 UNRESOLVED(ret, "Unable to join the child"); in threaded() 204 /* Then join */ in main() 209 UNRESOLVED(ret, "Failed to join a thread"); in main()
|
/third_party/mesa3d/src/util/ |
H A D | format_srgb.py | 63 print(' '.join(['%.7ef,' % srgb_to_linear(i / 255.0) for i in range(j, j + 4)])) 70 print(' '.join(['%3u,' % int(srgb_to_linear(i / 255.0) * 255.0 + 0.5) for i in range(j, j + 16)])) 77 print(' '.join(['%3u,' % int(linear_to_srgb(i / 255.0) * 255.0 + 0.5) for i in range(j, j + 16)])) 129 print(' '.join(['0x%08x,' % valtable[i] for i in range(j, j + 4)]))
|
/third_party/rust/crates/clap/clap_complete/src/shells/ |
H A D | bash.rs | 120 cases.join("\n ") in all_subcommands() 157 subcmd_dets.join("\n ") in subcommand_details() 194 opts.join("\n ") in option_details_for_path() 207 .join(" ") in vals_for()
|
/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | __main__.py | 100 data += ', '.join(f.name for f in fields[:5]) 103 data = f'{data}{indent}{", ".join(f.name for f in fields[:5])}' 114 data += ', '.join(names[:5]) 117 data = f'{data}{indent}{", ".join(names[:5])}'
|
/third_party/python/Tools/clinic/ |
H A D | cpp.py | 36 return ''.join(( 50 return " && ".join(condition for token, condition in self.stack) 58 print(" ", ' '.join(str(x) for x in a)) 142 condition = ' '.join(fields[1:]).strip()
|
/third_party/python/Tools/scripts/ |
H A D | abitype.py | 30 return ''.join(res) 73 # join field, excluding separator and trailing ws 77 fields.append(''.join(t[1] for t in tokens[pos:end1+1])) 155 return '\n'.join(res)
|
H A D | generate_stdlib_module_names.py | 12 STDLIB_PATH = os.path.join(SRC_DIR, 'Lib') 13 MODULES_SETUP = os.path.join(SRC_DIR, 'Modules', 'Setup') 14 SETUP_PY = os.path.join(SRC_DIR, 'setup.py') 77 package_path = os.path.join(STDLIB_PATH, name)
|
H A D | pep384_macrocheck.py | 32 name = os.path.join(startpath, search) 48 name = os.path.join(startpath, include) 50 name = os.path.join(startpath, "../PC", include) 74 limited_pattern = "|".join([
|
/third_party/python/Lib/ |
H A D | fnmatch.py | 129 stuff = '-'.join(s.replace('\\', r'\\').replace('-', r'\-') 163 # Note: people rely on the undocumented ability to join multiple 177 fixed = "".join(fixed) 184 res = "".join(res)
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | gen_uniform_type_table.py | 258 print(','.join(inputs)) 260 print(','.join(outputs)) 266 uniform_type_info_data = ",\n".join( 268 uniform_type_index_cases = "\n".join([
|
/third_party/skia/src/pdf/ |
H A D | SkPDFGraphicState.cpp | 34 static int to_stroke_join(uint8_t join) { in to_stroke_join() argument 35 // PDF32000.book section 8.4.3.4 "Line Join Style" in to_stroke_join() 36 switch ((SkPaint::Join)join) { in to_stroke_join()
|
/third_party/skia/third_party/externals/freetype/src/tools/ |
H A D | chktrcmp.py | 35 print " Default is %s" % ":".join( SRC_FILE_DIRS ) 39 print " Default is %s" % ":".join( TRACE_DEF_FILES ) 59 src_pathname = os.path.join( p, f ) 105 print "Trace component %s (used in %s) is not defined." % ( c, ", ".join( USED_COMPONENT[c] ) )
|
/third_party/python/Lib/distutils/command/ |
H A D | build.py | 96 self.build_purelib = os.path.join(self.build_base, 'lib') 98 self.build_platlib = os.path.join(self.build_base, 113 self.build_temp = os.path.join(self.build_base, 116 self.build_scripts = os.path.join(self.build_base,
|
/third_party/skia/tools/skqp/ |
H A D | gn_to_bp.py | 19 root_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 21 skia_gn_dir = os.path.join(root_dir, 'gn') 171 defs = gn_to_bp_utils.GetArchSources(os.path.join(skia_gn_dir, 'opts.gni')) 181 return ('\n' + ' '*indent).join('"%s",' % v for v in lst)
|
/third_party/typescript/tests/baselines/reference/ |
H A D | declFileConstructors.js | 20 return a + rests.join(""); 68 return a + rests.join(""); 126 return a + rests.join("");
188 return a + rests.join("");
|
H A D | inferenceOptionalPropertiesToIndexSignatures.types | 85 >Object.entries(obj).map( ([k, v]) => `${k}=${encodeURIComponent(v)}`).join('&') : string
86 >Object.entries(obj).map( ([k, v]) => `${k}=${encodeURIComponent(v)}`).join : (separator?: string | undefined) => string
106 ).join('&');
107 >join : (separator?: string | undefined) => string
|
/third_party/python/Lib/test/ |
H A D | test_threading_local.py | 41 t.join() 112 t.join() 156 t2.join() 159 t1.join()
|
/third_party/skia/infra/bots/recipe_modules/checkout/ |
H A D | api.py | 18 return self.m.vars.cache_dir.join('work') 38 skia_dir = checkout_root.join('skia') 67 gclient_cache = self.m.vars.cache_dir.join('git') 135 entries_file = checkout_root.join('.gclient_entries')
|
/third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/ |
H A D | Build-Debian10-Clang-x86_64-Debug-Chromebook_GLES.json | 67 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products = ['dm', 'dm.exe', 'dm.app', 'fm', 'fm.exe', 'nanobench.app', 'get_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', 'skpbench', 'skpbench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'skottie_tool', 'lib/*.so', 'run_testlab']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print('Copying build product %s to %s' % (f, dst_path))\n shutil.move(f, dst_path)\n", 91 "@@@STEP_LOG_LINE@python.inline@ path = os.path.join(src, pattern)@@@", 93 "@@@STEP_LOG_LINE@python.inline@ dst_path = os.path.join(dst, os.path.relpath(f, src))@@@",
|
H A D | Build-Debian10-Clang-arm64-Release-Android_Wuffs.json | 65 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products = ['dm', 'nanobench', 'skpbench']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print('Copying build product %s to %s' % (f, dst_path))\n shutil.move(f, dst_path)\n", 89 "@@@STEP_LOG_LINE@python.inline@ path = os.path.join(src, pattern)@@@", 91 "@@@STEP_LOG_LINE@python.inline@ dst_path = os.path.join(dst, os.path.relpath(f, src))@@@",
|
H A D | Build-Debian10-Clang-arm64-Debug-Android_HWASAN.json | 65 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products = ['dm', 'nanobench', 'skpbench']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print('Copying build product %s to %s' % (f, dst_path))\n shutil.move(f, dst_path)\n", 89 "@@@STEP_LOG_LINE@python.inline@ path = os.path.join(src, pattern)@@@", 91 "@@@STEP_LOG_LINE@python.inline@ dst_path = os.path.join(dst, os.path.relpath(f, src))@@@",
|
H A D | Build-Mac-Clang-arm64-Debug-Android_Vulkan.json | 65 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products = ['dm', 'nanobench', 'skpbench']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print('Copying build product %s to %s' % (f, dst_path))\n shutil.move(f, dst_path)\n", 89 "@@@STEP_LOG_LINE@python.inline@ path = os.path.join(src, pattern)@@@", 91 "@@@STEP_LOG_LINE@python.inline@ dst_path = os.path.join(dst, os.path.relpath(f, src))@@@",
|
H A D | Build-Debian10-EMCC-wasm-Release-CanvasKit_CPU.json | 41 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products = ['canvaskit.*']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print('Copying build product %s to %s' % (f, dst_path))\n # Because Docker usually has some strange permissions (like root\n # ownership), we'd rather not keep those around. copyfile doesn't\n # keep the metadata around, so that helps us.\n shutil.copyfile(f, dst_path)\n", 65 "@@@STEP_LOG_LINE@python.inline@ path = os.path.join(src, pattern)@@@", 67 "@@@STEP_LOG_LINE@python.inline@ dst_path = os.path.join(dst, os.path.relpath(f, src))@@@",
|
/third_party/skia/gm/ |
H A D | linepaths.cpp | 22 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, in drawPath() 29 paint.setStrokeJoin(join); in drawPath() 60 SkPaint::Join fJoin; in draw() 21 drawPath(SkPath& path,SkCanvas* canvas,SkColor color, const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, SkPaint::Style style, SkPathFillType fill, SkScalar strokeWidth) drawPath() argument
|