Home
last modified time | relevance | path

Searched refs:set (Results 1151 - 1175 of 5727) sorted by relevance

1...<<41424344454647484950>>...230

/third_party/typescript/tests/baselines/reference/
H A DthisTypeInAccessorsNegative.js12 set x(this: Bar, n) { this.wrong = "method"; }
24 set x(n) { this.wrong = "method"; }
H A Dthis_inside-object-literal-getters-and-setters.js8 set foo(value: string) {
27 set foo(value) {
H A DcomputedPropertyNames49_ES5.js10 set [1 + 1]() {
47 set: function () {
H A DcomputedPropertyNames50_ES5.js12 set [1 + 1]() {
45 set: function () {
H A DdeclFileObjectLiteralWithOnlySetter.js5 set x(a: number) { this.b = a; }
15 set x(a) { this.b = a; }
H A DduplicateObjectLiteralProperty.js16 set a(v: number) { },
34 set a(v) { },
H A DobjectLiteralShorthandPropertiesErrorFromNotUsingIdentifier.js7 set f,
30 set f() { },
H A DprivateNameDeclaration.js17 _A_foo.set(this, void 0);
18 _A_bar.set(this, 6);
H A DprivateNameFieldClassExpression.js22 _B_foo.set(this, (_a = class {
29 _B_foo2.set(this, (_b = class Foo {
H A DextendedUnicodePlaneIdentifiers.js53 _K_?.set(this, 4);
54 _K_?.set(this, 5);
H A DaccessorsAreNotContextuallyTyped.js5 set x(v: (a: string) => string) {
25 set: function (v) {
H A DanyIdenticalToItself.js11 set X(v: any) {
25 set: function (v) {
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
H A Dper_thread_tls.h38 #error ABSL_PER_THREAD_TLS cannot be directly set
40 #error ABSL_PER_THREAD_TLS_KEYWORD cannot be directly set
/third_party/skia/docs/examples/
H A DRect_set_4.cpp10 rect.set(point1, point2); in REG_FIDDLE()
12 rect.set(point2, point1); in REG_FIDDLE()
H A DMatrix_set.cpp10 matrix.set(SkMatrix::kMSkewX, 0); in REG_FIDDLE()
12 matrix.set(SkMatrix::kMSkewX, 1); in REG_FIDDLE()
/third_party/icu/icu4c/source/test/intltest/
H A Ditutil.cpp117 errorCode.set(U_PARSE_ERROR); in TestErrorCode()
119 errln("ErrorCode.set() failed"); in TestErrorCode()
176 errorCode.set(U_PARSE_ERROR); in TestSubclass()
178 errln("ErrorCode.set() failed"); in TestSubclass()
196 errorCode.set(U_PARSE_ERROR); in TestSubclass()
239 testStatus.set(U_ILLEGAL_PAD_POSITION); in TestIcuTestErrorCode()
250 testStatus.set(U_ILLEGAL_PAD_POSITION); in TestIcuTestErrorCode()
261 testStatus.set(U_ILLEGAL_PAD_POSITION); in TestIcuTestErrorCode()
266 testStatus.set(U_ILLEGAL_CHAR_FOUND); in TestIcuTestErrorCode()
277 testStatus.set(U_ILLEGAL_PAD_POSITIO in TestIcuTestErrorCode()
[all...]
/third_party/mesa3d/src/amd/registers/
H A Dregdb.py40 - add: add an element to the implied global set of elements
42 - find: return the representative element of the set containing the
44 - get_set: get the set containing the given element
45 - sets: iterate over all sets (the sets form a partition of the set of all
53 self.d[k] = set([k])
67 if isinstance(e, set):
76 assert isinstance(self.d[k], set)
81 if isinstance(v, set):
166 ks = set()
217 Lazily computes the set o
[all...]
/third_party/node/test/parallel/
H A Dtest-assert-deep.js496 m1.set(1, obj);
497 m1.set(2, 'hi');
498 m1.set(3, [1, 2, 3]);
500 m2.set(2, 'hi'); // different order
501 m2.set(1, obj);
502 m2.set(3, [1, 2, 3]); // Deep equal, but not reference equal.
512 m1.set(1, m1);
513 m2.set(1, new Map());
556 m1.set(2, m1);
558 m2.set(
[all...]
/third_party/skia/src/core/
H A DSkPicturePlayback.cpp348 SkAutoTArray<SkCanvas::ImageSetEntry> set(cnt); in handleOp()
350 set[i].fImage = sk_ref_sp(fPictureData->getImage(reader)); in handleOp()
351 reader->readRect(&set[i].fSrcRect); in handleOp()
352 reader->readRect(&set[i].fDstRect); in handleOp()
353 set[i].fMatrixIndex = reader->readInt(); in handleOp()
354 set[i].fAlpha = reader->readScalar(); in handleOp()
355 set[i].fAAFlags = reader->readUInt(); in handleOp()
356 set[i].fHasClip = reader->readInt(); in handleOp()
358 expectedClips += set[i].fHasClip ? 1 : 0; in handleOp()
359 if (set[ in handleOp()
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/
H A DOS2Table.java222 EnumSet<EmbeddingFlags> set = EnumSet.noneOf(EmbeddingFlags.class); in asSet()
225 set.add(flag); in asSet()
228 return set; in asSet()
235 * @param flagSet the set of flags
249 * Installable Editing iff none of the fsType bits are set.
251 * @param flagSet the set of flags
261 * Editing iff none of the fsType bits are set.
485 EnumSet<UnicodeRange> set = EnumSet.noneOf(UnicodeRange.class); in asSet()
497 set.add(ur); in asSet()
500 return set; in asSet()
[all...]
/third_party/skia/tests/
H A DGeometryTest.cpp43 pts[i].set(i, i); in testChopCubic()
134 pts[j].set(rand.nextSScalar1() * 100, rand.nextSScalar1() * 100); in test_evalquadat()
173 pts[j].set(rand.nextSScalar1() * 100, rand.nextSScalar1() * 100); in test_conic()
619 pts[0].set(0, 0); in DEF_TEST()
620 pts[1].set(100, 50); in DEF_TEST()
621 pts[2].set(0, 100); in DEF_TEST()
628 pts[0].set(15.1213f, 7.77647f); in DEF_TEST()
629 pts[1].set(6.2168e+19f, 1.51338e+20f); in DEF_TEST()
630 pts[2].set(1.4579e+19f, 1.55558e+21f); in DEF_TEST()
633 pts[0].set( in DEF_TEST()
[all...]
/third_party/python/Lib/tomllib/
H A D_parser.py146 self._pending_flags: set[tuple[Key, int]] = set()
153 self.set(key, flag, recursive=False)
164 def set(self, key: Key, flag: int, *, recursive: bool) -> None: # noqa: A003 member in Flags
169 cont[k] = {"flags": set(), "recursive_flags": set(), "nested": {}}
172 cont[key_stem] = {"flags": set(), "recursive_flags": set(), "nested": {}}
291 out.flags.set(key, Flags.EXPLICIT_NEST, recursive=False)
312 out.flags.set(ke
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A Dlocalintermediate.h49 #include <set>
122 // An IO range is a 3-D rectangle; the set of (location, component, index) triples all lying
138 // An offset range is a 2-D rectangle; the set of (binding, offset) pairs all lying
163 // Track a set of strings describing how the module was processed.
229 // Currently we will keep status set by explicitly declared layout or variable decl.
232 AstRefTypeVar, // Status set by variable decl
233 AstRefTypeFunc, // Status set by function decl
234 AstRefTypeLayout, // Status set by layout decl
442 const std::set<std::string>& getRequestedExtensions() const { return requestedExtensions; }
564 // If a type is provided, the node's type will be set t
[all...]
/third_party/curl/lib/
H A Dimap.c774 if(data->set.mimepost.kind != MIMEKIND_NONE) { in imap_perform_append()
776 data->set.mimepost.flags &= ~MIME_BODY_ONLY; in imap_perform_append()
779 curl_mime_headers(&data->set.mimepost, data->set.headers, 0); in imap_perform_append()
780 result = Curl_mime_prepare_headers(data, &data->set.mimepost, NULL, in imap_perform_append()
785 result = Curl_mime_add_header(&data->set.mimepost.curlheaders, in imap_perform_append()
790 result = Curl_mime_rewind(&data->set.mimepost); in imap_perform_append()
795 data->state.infilesize = Curl_mime_size(&data->set.mimepost); in imap_perform_append()
799 data->state.in = (void *) &data->set.mimepost; in imap_perform_append()
955 else if(data->set in imap_state_capability_resp()
[all...]
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationDataBuilder.java84 trie.set(c, Collation.FALLBACK_CE32); in initForTailoring()
88 // Always set the Hangul tag to help performance. in initForTailoring()
94 // Copy the set contents but don't copy/clone the set as a whole because in initForTailoring()
192 trie.set(c, oldCE32); in addCE32()
198 trie.set(c, ce32); in addCE32()
211 trie.set(c, contextCE32); in addCE32()
270 void optimize(UnicodeSet set) { in optimize() argument
271 if(set.isEmpty()) { return; } in optimize()
272 UnicodeSetIterator iter = new UnicodeSetIterator(set); in optimize()
285 suppressContractions(UnicodeSet set) suppressContractions() argument
[all...]

Completed in 18 milliseconds

1...<<41424344454647484950>>...230