/third_party/skia/modules/canvaskit/htmlcanvas/ |
H A D | color.js | 7 // the map, which saves (a tiny amount of) startup time 8 // and (a small amount of) code size. 11 'aliceblue': Float32Array.of(0.941, 0.973, 1.000, 1.000), 12 'antiquewhite': Float32Array.of(0.980, 0.922, 0.843, 1.000), 13 'aqua': Float32Array.of(0.000, 1.000, 1.000, 1.000), 14 'aquamarine': Float32Array.of(0.498, 1.000, 0.831, 1.000), 15 'azure': Float32Array.of(0.941, 1.000, 1.000, 1.000), 16 'beige': Float32Array.of(0.961, 0.961, 0.863, 1.000), 17 'bisque': Float32Array.of(1.000, 0.894, 0.769, 1.000), 18 'black': Float32Array.of(0.00 [all...] |
/third_party/node/test/parallel/ |
H A D | test-string-decoder-end.js | 3 // Permission is hereby granted, free of charge, to any person obtaining a 4 // copy of this software and associated documentation files (the 7 // distribute, sublicense, and/or sell copies of the Software, and to permit 12 // in all copies or substantial portions of the Software. 25 // result of the entire buffer. 42 testEnd('utf8', Buffer.of(0xE2), Buffer.of(0x61), '\uFFFDa'); 43 testEnd('utf8', Buffer.of(0xE2), Buffer.of(0x82), '\uFFFD\uFFFD'); 44 testEnd('utf8', Buffer.of( [all...] |
H A D | test-crypto-keygen.js | 43 for (const type of [undefined, null, 0]) { 47 message: 'The "type" argument must be of type string.' + 64 message: 'The "options" argument must be of type object. ' + 73 message: 'The "options" argument must be of type object. ' + 80 for (const enc of [0, 'a', true]) { 97 for (const type of [undefined, null, 0, true, {}]) { 117 for (const format of [undefined, null, 0, false, 'a', {}]) { 137 for (const enc of [0, 'a', true]) { 154 for (const type of [undefined, null, 0, true, {}]) { 174 for (const format of [undefine [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/message2/ |
H A D | MessageFormat2Test.java | 2 // License & terms of use: http://www.unicode.org/copyright.html 57 mf2.formatToString(Args.of("exp", expiration))); in testDateFormat() 64 mf2.formatToString(Args.of("exp", expiration))); in testDateFormat() 70 mf2.formatToString(Args.of("exp", expiration))); in testDateFormat() 76 mf2.formatToString(Args.of("exp", expiration))); in testDateFormat() 82 mf2.formatToString(Args.of("exp", expiration))); in testDateFormat() 90 mf2.formatToString(Args.of("exp", cal))); in testDateFormat() 92 // Implied function based on type of the object to format in testDateFormat() 98 mf2.formatToString(Args.of("exp", expiration))); in testDateFormat() 101 mf2.formatToString(Args.of("ex in testDateFormat() [all...] |
H A D | Mf2FeaturesTest.java | 2 // License & terms of use: http://www.unicode.org/copyright.html 20 * Trying to show off most of the features in one place. 56 .arguments(Args.of("userName", "John")) in testPlaceholders() 69 .arguments(Args.of("name", "John", "today", TEST_DATE)) in testArgumentMissing() 74 .arguments(Args.of("name", "John")) in testArgumentMissing() 79 .arguments(Args.of("today", TEST_DATE)) in testArgumentMissing() 94 Map<String, Object> arguments = Args.of("date", TEST_DATE); in testDefaultLocale() 130 .arguments(Args.of("date", TEST_DATE)) in testAllKindOfDates() 137 .arguments(Args.of("date", TEST_DATE)) in testAllKindOfDates() 145 .arguments(Args.of("dat in testAllKindOfDates() [all...] |
H A D | FromJsonTest.java | 2 // License & terms of use: http://www.unicode.org/copyright.html 13 * These tests come from the test suite created for the JavaScript implementation of MessageFormat v2. 37 .arguments(Args.of("place", "world")) 47 .arguments(Args.of("one", 1.3, "two", 4.2)) 53 .arguments(Args.of("one", 1.3, "two", 4.2)) 85 .arguments(Args.of("foo", 2f)) 90 .arguments(Args.of("foo", "2")) 100 .arguments(Args.of("foo", "foo")) 103 // And undefined who wins if that happens, the local variable of the argument. 108 .arguments(Args.of("ba [all...] |
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/ |
H A D | DigitSequenceTest.java | 6 * You may obtain a copy of the License at 31 Object e = DigitSequence.of(""); in testEmpty() 40 DigitSequence s = DigitSequence.of("0123456789"); in testCreate() 41 assertThat(s).isEqualTo(DigitSequence.of("0123456789")); in testCreate() 42 assertThat(s).isNotEqualTo(DigitSequence.of("1111111111")); in testCreate() 47 DigitSequence s = DigitSequence.of("0123456789"); in testGetDigit() 57 assertThrows(NullPointerException.class, () -> DigitSequence.of(null)); in testBadArguments() 58 assertThrows(IllegalArgumentException.class, () -> DigitSequence.of("123X")); in testBadArguments() 60 assertThrows(IllegalArgumentException.class, () -> DigitSequence.of("1234567890123456789")); in testBadArguments() 72 DigitSequence max = DigitSequence.of("99999999999999999 in testMax() [all...] |
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | typedarray-of.js | 5 * You may obtain a copy of the License at 38 e.of.call(undefined); 45 e.of.call(obj); 52 assert(e.of(1,2,3).toString() === "1,2,3"); 53 assert(e.of(12,4,5,0).toString() === "12,4,5,0"); 54 assert(e.of(23).toString() === "23"); 57 assert(e.of("12",4).toString() === "12,4"); 58 assert(e.of(1,2,"foo").toString() === "1,2,0"); 61 assert(e.of(undefined).toString() === "0"); 64 assert(e.of(ob [all...] |
H A D | array-of.js | 5 // You may obtain a copy of the License at 16 var array1 = Array.of(1, 2, 3, 4, 5); 21 var array2 = Array.of(); 26 var array3 = Array.of(array1, 6, 7); 33 var array4 = Array.of(undefined); 43 var array5 = Array.of(obj, 2, 3); 50 var array6 = Array.of.apply(null, [,,undefined]); 59 Test.of = Array.of; 62 var array6 = Test.of( [all...] |
H A D | for-of-iterator-close.js | 5 // You may obtain a copy of the License at 34 for (var it of iter) break; 46 for (var it of iter) throw 0; 61 for (var it of iter) continue; 73 for (var it of iter) throw 5; 89 for (var it of iter) { 90 for (var it of iter) { 109 for (var it of iter) {}; 122 for (var it of iter) { 140 for (var it of ite [all...] |
/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
H A D | ValuesTest.java | 9 // * Redistributions of source code must retain the above copyright 10 // notice, this list of conditions and the following disclaimer. 12 // copyright notice, this list of conditions and the following disclaimer 15 // * Neither the name of Google Inc. nor the names of its 50 assertThat(Values.of(true)).isEqualTo(Value.newBuilder().setBoolValue(true).build()); in testOfBoolean_ConstructsValue() 51 assertThat(Values.of(false)).isEqualTo(Value.newBuilder().setBoolValue(false).build()); in testOfBoolean_ConstructsValue() 55 assertThat(Values.of(100)).isEqualTo(Value.newBuilder().setNumberValue(100).build()); in testOfNumeric_ConstructsValue() 56 assertThat(Values.of(1000L)).isEqualTo(Value.newBuilder().setNumberValue(1000).build()); in testOfNumeric_ConstructsValue() 57 assertThat(Values.of(1000.2 in testOfNumeric_ConstructsValue() [all...] |
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/mapper/ |
H A D | RbnfMapperTest.java | 2 // License & terms of use: http://www.unicode.org/copyright.html 63 RbValue.of("%%2d-year:"), in testSingleRuleset() 64 RbValue.of("0: hundred;"), in testSingleRuleset() 65 RbValue.of("1: oh-=%first-set=;"), in testSingleRuleset() 66 RbValue.of("10: =%first-set=;")); in testSingleRuleset() 72 // Note that input order of these paths shouldn't matter since they are ordered (and thus in testMultipleRulesets() 91 RbValue.of("%first-set:"), in testMultipleRulesets() 92 RbValue.of("-x: one;"), in testMultipleRulesets() 93 RbValue.of("Inf: two;"), in testMultipleRulesets() 94 RbValue.of("Na in testMultipleRulesets() [all...] |
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/ |
H A D | RbPathTest.java | 2 // License & terms of use: http://www.unicode.org/copyright.html 17 assertThat(RbPath.of()).hasSegments(); in testEmpty() 18 assertThat(RbPath.of()).hasLength(0); in testEmpty() 23 assertThat(RbPath.of("foo", "bar")).hasSegments("foo", "bar"); in testParseVsOf() 27 assertThat(RbPath.of("foo/bar", "baz")).hasSegments("foo/bar", "baz"); in testParseVsOf() 51 assertThat(RbPath.of("foo").extendBy("bar")).hasSegments("foo", "bar"); in testExtendBy() 52 assertThat(RbPath.of("foo").extendBy("bar/baz")).hasSegments("foo", "bar/baz"); in testExtendBy() 53 assertThat(RbPath.of("foo").extendBy("bar/baz")).isNotEqualTo(RbPath.parse("foo/bar/baz")); in testExtendBy() 58 RbPath p = RbPath.of("foo", "bar", "baz"); in testStartsWith() 60 assertThat(p).startsWith(RbPath.of()) in testStartsWith() [all...] |
H A D | IcuDataTest.java | 2 // License & terms of use: http://www.unicode.org/copyright.html 38 icuData.setFileComment(ImmutableList.of()); in testFileComment() 47 RbPath rbPath = RbPath.of("Version"); in testSetVersion() 49 assertThat(icuData.get(rbPath)).isEqualTo(ImmutableList.of(RbValue.of("VERSION"))); in testSetVersion() 59 RbPath fooBar = RbPath.of("foo", "bar"); in testGetPaths() 61 assertThat(icuData.get(fooBar)).contains(RbValue.of("value1")); in testGetPaths() 65 RbPath fooBaz = RbPath.of("foo", "baz"); in testGetPaths() 67 assertThat(icuData.get(fooBaz)).contains(RbValue.of("value2")); in testGetPaths() 72 assertThrows(UnsupportedOperationException.class, () -> paths.add(RbPath.of("nop in testGetPaths() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | awaitInNonAsyncFunction.js | 5 for await (const _ of []); 10 for await (const _ of []); 15 for await (const _ of []); 20 for await (const _ of []); 25 for await (const _ of []); 31 for await (const _ of []); 35 for await (const _ of []); 40 for await (const _ of []); 46 for await (const _ of [])
51 for await (const _ of [])
[all...] |
H A D | shorthandPropertyAssignmentsInDestructuring_ES6.js | 4 for ({ s0 = 5 } of [{ s0: 1 }]) { 9 for ({ s0:s0 = 5 } of [{ s0: 1 }]) { 15 for ({ s1 = 5 } of [{}]) { 21 for ({ s1:s1 = 5 } of [{}]) { 27 for ({ s2 = 5 } of [{ s2: "" }]) { 33 for ({ s2:s2 = 5 } of [{ s2: "" }]) { 39 for ({ s3 = 5 } of [{ s3: "" }]) { 45 for ({ s3:s3 = 5 } of [{ s3: "" }]) { 121 for ({ s0 = 5 } of [{ s0: 1 }]) {
126 for ({ s0: s0 = 5 } of [{ s [all...] |
H A D | capturedLetConstInLoop10_ES6.js | 4 for (let x of [0]) { 13 for (let x of [1]) { 15 for (let y of [1]) { 23 for (let x of [1]) { 26 for (let y of [1]) { 38 for (let x of [0]) { 51 for (let x of [0]) {
59 for (let x of [1]) {
61 for (let y of [1]) {
69 for (let x of [ [all...] |
H A D | emptyVariableDeclarationBindingPatterns01_ES6.js | 32 for (var {} of ns) { 35 for (let {} of ns) { 38 for (const {} of ns) { 41 for (var [] of ns) { 44 for (let [] of ns) { 47 for (const [] of ns) { 74 for (var {} of ns) {
76 for (let {} of ns) {
78 for (const {} of ns) {
80 for (var [] of n [all...] |
H A D | typedArrays.js | 79 typedArrays[0] = Int8Array.of(...obj); 80 typedArrays[1] = Uint8Array.of(...obj); 81 typedArrays[2] = Int16Array.of(...obj); 82 typedArrays[3] = Uint16Array.of(...obj); 83 typedArrays[4] = Int32Array.of(...obj); 84 typedArrays[5] = Uint32Array.of(...obj); 85 typedArrays[6] = Float32Array.of(...obj); 86 typedArrays[7] = Float64Array.of(...obj); 87 typedArrays[8] = Uint8ClampedArray.of(...obj); 94 typedArrays[0] = Int8Array.of( [all...] |
H A D | sourceMapValidationDestructuringForOfArrayBindingPattern.js | 22 for (let [, nameA] of robots) { 25 for (let [, nameA] of getRobots()) { 28 for (let [, nameA] of [robotA, robotB]) { 31 for (let [, [primarySkillA, secondarySkillA]] of multiRobots) { 34 for (let [, [primarySkillA, secondarySkillA]] of getMultiRobots()) { 37 for (let [, [primarySkillA, secondarySkillA]] of [multiRobotA, multiRobotB]) { 41 for (let [numberB] of robots) { 44 for (let [numberB] of getRobots()) { 47 for (let [numberB] of [robotA, robotB]) { 50 for (let [nameB] of multiRobot [all...] |
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/regex/ |
H A D | AnyPathTest.java | 6 * You may obtain a copy of the License at 48 assertPath(AnyPath.of(0x4).extend(false), 3); in testExtend() 49 assertPath(AnyPath.of(0x4).extend(true), 0, 3); in testExtend() 62 assertThat(AnyPath.of(0x7).join(AnyPath.of(0x7))).isEqualTo(AnyPath.of(0x1F)); in testJoin() 67 assertThat(AnyPath.of(0xC).join(AnyPath.of(0x5))).isEqualTo(AnyPath.of(0x3C)); in testJoin() 74 assertPath(AnyPath.of( in testMakeOptional() [all...] |
H A D | RegexGeneratorTest.java | 6 * You may obtain a copy of the License at 56 // Essentially create a "thin" wedge of specific non-determinism with the shorter (5-digit) in testDfaFactorization() 70 // The subgraph of "everything except 95, 96 and 100" (this appears in China leading digits). in testSubgroupOptimization() 74 // Cross product of pre and post paths. in testSubgroupOptimization() 123 ImmutableList.of("1234567", "123456789"), in testRegression_bug_68929642() 124 ImmutableList.of("12345678"), in testRegression_bug_68929642() 129 ImmutableList.of("1234567", "12345670"), in testRegression_bug_68929642() 130 ImmutableList.of("123456", "123456700"), in testRegression_bug_68929642() 135 ImmutableList.of("1", "12"), in testRegression_bug_68929642() 136 ImmutableList.of("", "12 in testRegression_bug_68929642() [all...] |
/third_party/skia/third_party/externals/opengl-registry/xml/ |
H A D | readme.tex | 3 % Various packages of possible use. {index} creates problems for some reason. 9 % underscore allows use of _ instead of \_ in text. [strings] allows _ in file names 35 generated from the current authoritative copy of the XML files, can be 49 The registry uses an XML representation of the API and a set of Python 3 91 environment, there are equivalent versions of Python and GNU Make, although 117 internal documentation in the form of comments although nothing more 125 The format of an XML registry is a top level \tag{registry} tag 127 \tag{extension} tags describing the different elements of a [all...] |
/third_party/ffmpeg/fftools/ |
H A D | ffmpeg_mux.c | 2 * This file is part of FFmpeg. 5 * modify it under the terms of the GNU Lesser General Public 7 * version 2.1 of the License, or (at your option) any later version. 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * You should have received a copy of the GNU Lesser General Public 44 void of_write_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost, in of_write_packet() argument 47 AVFormatContext *s = of->ctx; in of_write_packet() 53 * But there is no reordering, so we can limit the number of output packets in of_write_packet() 55 * Counting encoded video frames needs to be done separately because of in of_write_packet() 67 if (!of in of_write_packet() 230 of_check_init(OutputFile *of) of_check_init() argument 281 of_write_trailer(OutputFile *of) of_write_trailer() argument 304 OutputFile *of = *pof; of_close() local [all...] |
/third_party/node/deps/v8/third_party/wasm-api/example/ |
H A D | multi.c | 16 args[0].of.i32, args[1].of.i64, args[2].of.i64, args[3].of.i32); in callback() 33 results[0].of.i32 = (int32_t)i; in closure_callback() 120 args[0].of.i32 = 1; in main() 122 args[1].of.i64 = 2; in main() 124 args[2].of.i64 = 3; in main() 126 args[3].of.i32 = 4; in main() 138 results[0].of in main() [all...] |