/third_party/node/deps/v8/tools/sanitizers/ |
H A D | sancov_formatter.py | 86 SANCOV_TOOL = os.path.join( 91 SANITIZE_PCS = os.path.join(BASE_DIR, 'tools', 'sanitizers', 'sanitize_pcs.py') 94 SYMBOLIZER = os.path.join( 109 file_path = os.path.join(build_dir, f) 127 output_path_prefix = os.path.join(build_dir, '..', '..', '') 261 os.path.join(cov_dir, sancov_file), 353 os.path.join(options.build_dir, match.group(1)), 394 file_path = os.path.join(options.output_dir, file_name + '.json') 416 default=os.path.join(BASE_DIR, 'out', 'Release'),
|
/third_party/littlefs/scripts/ |
H A D | stack.py | 336 ','.join(str(getattr(r, k) or '') for k in by): r 339 ','.join(str(getattr(r, k) or '') for k in by): r 369 ','.join(by), 420 entry.append(' (%s)' % ', '.join( 426 entry.append(' (%s)' % ', '.join( 484 ' '.join('%*s' % (w, x) 507 ' '.join('%*s' % (w, x) 516 ','.join(str(getattr(Result(*c), k) or '') for k in by) 532 ' '.join('%*s' % (w, x)
|
H A D | structs.py | 157 print(' '.join(shlex.quote(c) for c in cmd)) 177 files[int(m.group('no'))] = os.path.join( 198 print(' '.join(shlex.quote(c) for c in cmd)) 319 ','.join(str(getattr(r, k) or '') for k in by): r 322 ','.join(str(getattr(r, k) or '') for k in by): r 352 ','.join(by), 403 entry.append(' (%s)' % ', '.join( 409 entry.append(' (%s)' % ', '.join( 462 ' '.join('%*s' % (w, x)
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | MultithreadingTest.cpp | 111 thread.join(); in runMultithreadedGLTest() 201 thread.join(); in TEST_P() 305 t1.join(); in TEST_P() 306 t2.join(); in TEST_P() 505 thread.join(); in TEST_P() 682 textureThread.join(); in mainThreadDraw() 782 thread.join(); 884 thread0.join(); 885 thread1.join();
|
/third_party/skia/src/gpu/tessellate/shaders/ |
H A D | GrStrokeTessellationShader.cpp | 39 // A join calculates its starting angle using prevCtrlPtAttr. in GrStrokeTessellationShader() 44 // If p0 == prevCtrlPtAttr, then no join is emitted. in GrStrokeTessellationShader() 46 // pts=[p0, p3, p3, p3] is a reserved pattern that means this patch is a join only, in GrStrokeTessellationShader() 50 // double-sided round join, anchored on p0 and rotating from (p0 - prevCtrlPtAttr) to in GrStrokeTessellationShader() 63 // argsAttr.xy contains the lastControlPoint for setting up the join. in GrStrokeTessellationShader() 67 // numTotalEdges is negative and the join type is "kRound", it also instructs the in GrStrokeTessellationShader() 68 // shader to only allocate one segment the preceding round join. in GrStrokeTessellationShader() 72 // argsAttr contains the lastControlPoint for setting up the join. in GrStrokeTessellationShader() 117 // limit and need to revert to a bevel join.
|
/third_party/typescript/tests/baselines/reference/ |
H A D | recursiveConditionalCrash3.symbols | 89 type Join<K, P> = K extends string | number ?
90 >Join : Symbol(Join, Decl(recursiveConditionalCrash3.ts, 37, 1))
133 T | Join<T, SplitWithAllPossibleCombinations<U, D>>
135 >Join : Symbol(Join, Decl(recursiveConditionalCrash3.ts, 37, 1))
189 ? `${K}` | Join<`${K}`, KeysCanBeExpanded_<T[K], N, [1, ...Depth]>>
191 >Join : Symbol(Join, Decl(recursiveConditionalCrash3.ts, 37, 1))
|
H A D | variableDeclaratorResolvedDuringContextualTyping.symbols | 51 static join(promises: { [name: string]: Promise; }): Promise;
52 >join : Symbol(Promise.join, Decl(variableDeclaratorResolvedDuringContextualTyping.ts, 20, 39), Decl(variableDeclaratorResolvedDuringContextualTyping.ts, 21, 69))
58 static join(promises: Promise[]): Promise;
59 >join : Symbol(Promise.join, Decl(variableDeclaratorResolvedDuringContextualTyping.ts, 20, 39), Decl(variableDeclaratorResolvedDuringContextualTyping.ts, 21, 69))
218 public static join<ValueType>(promises: TPromise<ValueType>[]): TPromise<ValueType[]>;
219 >join : Symbol(TPromise.join, Decl(variableDeclaratorResolvedDuringContextualTyping.ts, 47, 61))
|
/third_party/python/Lib/ |
H A D | calendar.py | 321 return ' '.join(self.formatday(d, wd, width) for (d, wd) in theweek) 337 return ' '.join(self.formatweekday(i, width) for i in self.iterweekdays()) 405 return ''.join(v) 452 s = ''.join(self.formatday(d, wd) for (d, wd) in theweek) 466 s = ''.join(self.formatweekday(i) for i in self.iterweekdays()) 498 return ''.join(v) 522 return ''.join(v) 545 return ''.join(v).encode(encoding, "xmlcharrefreplace") 646 return spacing.join(c.center(colwidth) for c in cols)
|
H A D | queue.py | 53 # drops to zero; thread waiting to join() is notified to resume 64 If a join() is currently blocking, it will resume when all items 79 def join(self): member in Queue 86 When the count of unfinished tasks drops to zero, join() unblocks. 106 completed, the preferred technique is to use the join() method.
|
/third_party/python/Lib/test/ |
H A D | test_genericpath.py | 351 'join', 'split', 'splitext', 'isabs', 'basename', 'dirname', 504 # Check join() raises friendly TypeErrors. 508 self.pathmodule.join(b'bytes', 'str') 510 self.pathmodule.join('str', b'bytes') 513 self.pathmodule.join(42, 'str') 515 self.pathmodule.join('str', 42) 517 self.pathmodule.join(42) 519 self.pathmodule.join([]) 521 self.pathmodule.join(bytearray(b'foo'), bytearray(b'bar'))
|
/third_party/node/tools/ |
H A D | test.py | 71 from os.path import join, dirname, abspath, basename, isdir, exists namespace 135 output = "\n".join(output) 150 print("Path: %s" % "/".join(test.path)) 167 thread.join(timeout=1000000) 252 return " ".join(parts) 325 root_path = abspath(join(dirname(__file__), '../')) + os.sep 361 prefix = abspath(join(dirname(__file__), '../test')) + os.sep 397 self.traceback = '\n'.join(output.diagnostic) 426 prefix = abspath(join(dirname(__file__), '../test')) + os.sep 694 if context.verbose: print("#", " ".join(arg [all...] |
/third_party/skia/src/core/ |
H A D | SkStroke.cpp | 163 SkPaint::Join, SkScalar resScale, 235 bool fJoinCompleted; // previous join was not degenerate 379 SkPaint::Cap cap, SkPaint::Join join, SkScalar resScale, in SkPathStroker() 385 /* This is only used when join is miter_join, but we initialize it here in SkPathStroker() 390 if (join == SkPaint::kMiter_Join) { in SkPathStroker() 392 join = SkPaint::kBevel_Join; in SkPathStroker() 398 fJoiner = SkStrokerPriv::JoinFactory(join); in SkPathStroker() 407 // 3x for result == inner + outer + join (swag) in SkPathStroker() 1332 // emit the join eve 377 SkPathStroker(const SkPath& src, SkScalar radius, SkScalar miterLimit, SkPaint::Cap cap, SkPaint::Join join, SkScalar resScale, bool canIgnoreCenter) SkPathStroker() argument [all...] |
/third_party/skia/infra/bots/recipes/test.expected/ |
H A D | Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android.json | 439 "\nimport subprocess\nimport sys\n\n# Remove the path.\nadb = sys.argv[1]\npath = sys.argv[2]\nprint('Removing %s' % path)\ncmd = [adb, 'shell', 'rm', '-rf', path]\nprint(' '.join(cmd))\nsubprocess.check_call(cmd)\n\n# Verify that the path was deleted.\nprint('Checking for existence of %s' % path)\ncmd = [adb, 'shell', 'ls', path]\nprint(' '.join(cmd))\ntry:\n output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)\nexcept subprocess.CalledProcessError as e:\n output = e.output\nprint('Output was:')\nprint('======')\nprint(output)\nprint('======')\nif 'No such file or directory' not in output:\n raise Exception('%s exists despite being deleted' % path)\n", 459 "@@@STEP_LOG_LINE@python.inline@print(' '.join(cmd))@@@", 465 "@@@STEP_LOG_LINE@python.inline@print(' '.join(cmd))@@@", 483 "\nimport subprocess\nimport sys\n\n# Remove the path.\nadb = sys.argv[1]\npath = sys.argv[2]\nprint('Removing %s' % path)\ncmd = [adb, 'shell', 'rm', '-rf', path]\nprint(' '.join(cmd))\nsubprocess.check_call(cmd)\n\n# Verify that the path was deleted.\nprint('Checking for existence of %s' % path)\ncmd = [adb, 'shell', 'ls', path]\nprint(' '.join(cmd))\ntry:\n output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)\nexcept subprocess.CalledProcessError as e:\n output = e.output\nprint('Output was:')\nprint('======')\nprint(output)\nprint('======')\nif 'No such file or directory' not in output:\n raise Exception('%s exists despite being deleted' % path)\n", 503 "@@@STEP_LOG_LINE@python.inline@print(' '.join(cmd))@@@", 509 "@@@STEP_LOG_LINE@python.inline@print(' '.join(cmd))@@@", 648 "\nimport subprocess\nimport sys\n\n# Remove the path.\nadb = sys.argv[1]\npath = sys.argv[2]\nprint('Removing %s' % path)\ncmd = [adb, 'shell', 'rm', '-rf', path]\nprint(' '.join(cmd))\nsubprocess.check_call(cmd)\n\n# Verify that the path was deleted.\nprint('Checking for existence of %s' % path)\ncmd = [adb, 'shell', 'ls', path]\nprint(' '.join(cm [all...] |
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_sta/ |
H A D | sta_auto_connect_service.h | 95 * @Description disable auto join. 102 * @Description enable auto join. 109 * @Description register auto join condition. 118 * @Description deregister auto join condition. 276 * @Description Whether allow auto join.
|
/foundation/distributeddatamgr/data_object/interfaces/jskits/ |
H A D | distributed_data_object.js | 70 console.info('not join a session, can not do save');
78 console.info('not join a session, can not do revoke save');
414 console.info('not join a session, can not do save');
422 console.info('not join a session, can not do revoke save');
430 console.info('not join a session, can not do bindAssetStore');
|
/third_party/markupsafe/ |
H A D | __init__.py | 117 def join(self, seq: t.Iterable[t.Union[str, "HasHTML"]]) -> "te.Self": member in Markup 118 return self.__class__(super().join(map(self.escape, seq))) 120 join.__doc__ = str.join.__doc__ 196 value = " ".join(value.split())
|
/third_party/jerryscript/tools/runners/ |
H A D | run-test-suite.py | 63 tests.extend([os.path.join(root, test_file) for test_file in files if test_file.endswith('.js')]) 69 tests.append(os.path.normpath(os.path.join(dirname, test.rstrip()))) 133 util.print_test_summary(' '.join(summary_list), total, passed, failed) 150 is_expected_to_fail = os.path.join(os.path.sep, 'fail', '') in test 189 is_expected_to_fail = os.path.join(os.path.sep, 'fail', '') in test
|
/third_party/node/deps/v8/tools/ |
H A D | gc-nvp-trace-processor.py | 95 return ' '.join(args) 105 return 'plot ' + ', '.join([item.to_gnuplot(ctx) for item in self.items]) 123 return ':'.join([str(self.field_to_index[field]) for field in fieldref]) 158 datafile.write('\t'.join(data_line)) 182 return '\n'.join(script)
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | bccache.py | 109 filename = path.join(self.directory, bucket.key) 115 filename = path.join(self.directory, bucket.key) 213 actual_dir = os.path.join(tmpdir, dirname) 244 return path.join(self.directory, self.pattern % bucket.key) 270 remove(path.join(self.directory, filename))
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | xcode_ninja.py | 28 workspace_path = os.path.join(options.generator_output, workspace_path) 43 workspace_file = os.path.join(workspace_path, "contents.xcworkspacedata") 65 ninja_toplevel = os.path.join( 278 os.path.relpath(os.path.join(base, file), relative_path) for file in files 284 sources_gyp = os.path.join(os.path.dirname(main_gyp), sources_target_name + ".gyp")
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | xcode_ninja.py | 28 workspace_path = os.path.join(options.generator_output, workspace_path) 43 workspace_file = os.path.join(workspace_path, "contents.xcworkspacedata") 65 ninja_toplevel = os.path.join( 278 os.path.relpath(os.path.join(base, file), relative_path) for file in files 284 sources_gyp = os.path.join(os.path.dirname(main_gyp), sources_target_name + ".gyp")
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/regex/ |
H A D | NfaFlattenerTest.java | 61 Node join = nfa.addPath(split, "34"); in testSubgroup() 62 nfa.addPath(split, join, "56"); in testSubgroup() 63 nfa.addPath(join, TERMINAL, "78"); in testSubgroup() 81 // Add 2 edges to the first join point (if we add only one edge then it clashes with the in testSubgroupWithEarlyJoining() 165 // Now join up remaining paths. in testNodeOrdering_bug_65250963()
|
/third_party/rust/crates/bindgen/bindgen/ir/analysis/ |
H A D | sizedness.rs | 73 pub fn join(self, rhs: Self) -> Self { in join() functions 82 self.join(rhs) in bitor() 88 *self = self.join(rhs) in bitor_assign() 101 /// are `join`ed. 309 .fold(SizednessResult::ZeroSized, |a, b| a.join(*b)); in constrain()
|
/third_party/python/Tools/c-analyzer/c_common/ |
H A D | tables.py | 105 header = sep.join(header) 209 header = sep.join(header) 387 sep.join(header), 388 sep.join(div), 389 sep.join(rowfmt),
|
/third_party/python/Lib/email/ |
H A D | contentmanager.py | 46 full_path = '.'.join((modname, qname)) if modname else qname 98 msg['Content-Type'] = '/'.join((maintype, subtype)) 141 return ''.join(encoded_lines) 147 def embedded_body(lines): return linesep.join(lines) + linesep 148 def normal_body(lines): return b'\n'.join(lines) + b'\n'
|