Home
last modified time | relevance | path

Searched full:join (Results 901 - 925 of 6405) sorted by relevance

1...<<31323334353637383940>>...257

/third_party/python/Tools/scripts/
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))@@@",
H A DBuild-Debian10-EMCC-asmjs-Release-PathKit.json41 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products = ['pathkit.*']\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))@@@",
H A DBuild-Debian10-EMCC-asmjs-Debug-PathKit.json42 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products = ['pathkit.*']\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",
66 "@@@STEP_LOG_LINE@python.inline@ path = os.path.join(src, pattern)@@@",
68 "@@@STEP_LOG_LINE@python.inline@ dst_path = os.path.join(dst, os.path.relpath(f, src))@@@",
H A DBuild-Debian10-EMCC-wasm-Release-PathKit.json40 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products = ['pathkit.*']\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",
64 "@@@STEP_LOG_LINE@python.inline@ path = os.path.join(src, pattern)@@@",
66 "@@@STEP_LOG_LINE@python.inline@ dst_path = os.path.join(dst, os.path.relpath(f, src))@@@",
H A DBuild-Debian10-EMCC-wasm-Debug-CanvasKit.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))@@@",
H A DBuild-Debian10-EMCC-wasm-Debug-PathKit.json41 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products = ['pathkit.*']\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
/third_party/skia/infra/bots/recipe_modules/build/
H A Dpathkit.py9 out_dir = api.vars.cache_dir.join('docker', 'pathkit')
52 out_dir = api.vars.cache_dir.join('docker', 'pathkit')
79 path = os.path.join(src, pattern)
81 dst_path = os.path.join(dst, os.path.relpath(f, src))
H A Dcanvaskit.py10 out_dir = api.vars.cache_dir.join('docker', 'canvaskit')
54 out_dir = api.vars.cache_dir.join('docker', 'canvaskit')
81 path = os.path.join(src, pattern)
83 dst_path = os.path.join(dst, os.path.relpath(f, src))
/third_party/skia/platform_tools/android/skp_gen/
H A Dandroid_skp_capture.py86 raise Exception('Command failed: %s' % ' '.join(cmd))
96 return '\n'.join(lines[:-1])
155 apps_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'apps')
156 app_files = [os.path.join(apps_dir, app) for app in os.listdir(apps_dir)]

Completed in 10 milliseconds

1...<<31323334353637383940>>...257