Home
last modified time | relevance | path

Searched full:join (Results 951 - 975 of 7034) sorted by relevance

1...<<31323334353637383940>>...282

/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setschedparam/
H A D5-1.c275 /* 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 Dstress.c140 /* 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 Dformat_srgb.py63 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 Dbash.rs120 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__.py100 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 Dcpp.py36 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 Dabitype.py30 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 Dgenerate_stdlib_module_names.py12 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 Dpep384_macrocheck.py32 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 Dfnmatch.py129 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 Dgen_uniform_type_table.py258 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 DSkPDFGraphicState.cpp34 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 Dchktrcmp.py35 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 Dbuild.py96 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 Dgn_to_bp.py19 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 DdeclFileConstructors.js20 return a + rests.join("");
68 return a + rests.join("");
126 return a + rests.join("");
188 return a + rests.join("");
H A DinferenceOptionalPropertiesToIndexSignatures.types85 >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 Dtest_threading_local.py41 t.join()
112 t.join()
156 t2.join()
159 t1.join()
/third_party/skia/infra/bots/recipe_modules/checkout/
H A Dapi.py18 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 DBuild-Debian10-Clang-x86_64-Debug-Chromebook_GLES.json67 "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 DBuild-Debian10-Clang-arm64-Release-Android_Wuffs.json65 "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 DBuild-Debian10-Clang-arm64-Debug-Android_HWASAN.json65 "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 DBuild-Mac-Clang-arm64-Debug-Android_Vulkan.json65 "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 DBuild-Debian10-EMCC-wasm-Release-CanvasKit_CPU.json41 "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 Dlinepaths.cpp22 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

Completed in 11 milliseconds

1...<<31323334353637383940>>...282