Home
last modified time | relevance | path

Searched refs:primary (Results 1 - 25 of 169) sorted by relevance

1234567

/third_party/typescript/tests/baselines/reference/
H A DsourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.js13 primary?: string;
19 let multiRobot: MultiRobot = { name: "mower", skills: { primary: "mowing", secondary: "none" } };
28 let name: string, primary: string, secondary: string, skill: string;
41 primary: primaryA = "primary",
43 } = { primary: "none", secondary: "none" }
49 primary: primaryA = "primary",
51 } = { primary: "none", secondary: "none" }
57 primary
[all...]
H A DsourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js13 primary: string;
19 let multiRobots: MultiRobot[] = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } },
20 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }];
31 let name: string, primary: string, secondary: string, skill: string;
42 for ({ skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } =
43 { primary: "nosKill", secondary: "noSkill" } } of multiRobots) {
46 for ({ skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } =
47 { primary
[all...]
H A DsourceMapValidationDestructuringVariableStatementNestedObjectBindingPatternWithDefaultValues.js8 primary?: string;
12 var robotA: Robot = { name: "mower", skills: { primary: "mowing", secondary: "none" } };
13 var robotB: Robot = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } };
17 primary: primaryA = "noSkill",
19 } = { primary: "noSkill", secondary: "noSkill" } property
24 primary: primaryB = "noSkill",
26 } = { primary: "noSkill", secondary: "noSkill" } property
31 primary: primaryB = "noSkill",
33 } = { primary: "noSkill", secondary: "noSkill" } property
34 } = <Robot>{ name: "Edger", skills: { primary
[all...]
H A DsourceMapValidationDestructuringForOfObjectBindingPattern2.js13 primary: string;
19 let multiRobots: MultiRobot[] = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } },
20 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }];
31 let name: string, primary: string, secondary: string, skill: string;
42 for ({ skills: { primary: primaryA, secondary: secondaryA } } of multiRobots) {
45 for ({ skills: { primary: primaryA, secondary: secondaryA } } of getMultiRobots()) {
48 for ({ skills: { primary: primaryA, secondary: secondaryA } } of [{ name: "mower", skills: { primary: "mowing", secondary: "none" } },
49 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]) {
61 for ({ skills: { primary, secondar
[all...]
H A DsourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues.js13 primary?: string;
19 let multiRobots: MultiRobot[] = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } },
20 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }];
39 for (let { skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } =
40 { primary: "nosKill", secondary: "noSkill" } } of multiRobots) {
43 for (let { skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } =
44 { primary: "nosKill", secondary: "noSkill" } } of getMultiRobots()) {
47 for (let { skills: { primary
[all...]
H A DsourceMapValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.js8 primary?: string;
12 var robotA: Robot = { name: "mower", skills: { primary: "mowing", secondary: "none" } };
17 primary: primaryA = "primary",
19 } = { primary: "SomeSkill", secondary: "someSkill" }
27 primary: primaryB = "primary",
29 } = { primary: "SomeSkill", secondary: "someSkill" }
33 function foo3({ skills = { primary: "SomeSkill", secondary: "someSkill" } }: Robot = robotA) {
34 console.log(skills.primary);
[all...]
H A DsourceMapValidationDestructuringForOfObjectBindingPattern.js13 primary: string;
19 let multiRobots: MultiRobot[] = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } },
20 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }];
39 for (let { skills: { primary: primaryA, secondary: secondaryA } } of multiRobots) {
42 for (let { skills: { primary: primaryA, secondary: secondaryA } } of getMultiRobots()) {
45 for (let { skills: { primary: primaryA, secondary: secondaryA } } of [{ name: "mower", skills: { primary: "mowing", secondary: "none" } },
46 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]) {
59 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } of multiRobots) {
62 for (let {name: nameA, skills: { primary
[all...]
H A DsourceMapValidationDestructuringForObjectBindingPattern2.js13 primary: string;
19 let multiRobot: MultiRobot = { name: "mower", skills: { primary: "mowing", secondary: "none" } };
28 let name: string, primary: string, secondary: string, skill: string;
39 for ({ skills: { primary: primaryA, secondary: secondaryA } } = multiRobot, i = 0; i < 1; i++) {
42 for ({ skills: { primary: primaryA, secondary: secondaryA } } = getMultiRobot(), i = 0; i < 1; i++) {
45 for ({ skills: { primary: primaryA, secondary: secondaryA } } =
46 <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } },
59 for ({ skills: { primary, secondary } } = multiRobot, i = 0; i < 1; i++) {
62 for ({ skills: { primary, secondary } } = getMultiRobot(), i = 0; i < 1; i++) {
65 for ({ skills: { primary, secondar
[all...]
H A DsourceMapValidationDestructuringForObjectBindingPatternDefaultValues.js13 primary?: string;
19 let multiRobot: MultiRobot = { name: "mower", skills: { primary: "mowing", secondary: "none" } };
38 primary: primaryA = "primary",
40 } = { primary: "none", secondary: "none" }
46 primary: primaryA = "primary",
48 } = { primary: "none", secondary: "none" }
54 primary: primaryA = "primary",
[all...]
H A DsourceMapValidationDestructuringParameterNestedObjectBindingPattern.js8 primary: string;
12 var robotA: Robot = { name: "mower", skills: { primary: "mowing", secondary: "none" } };
14 function foo1({ skills: { primary: primaryA, secondary: secondaryA } }: Robot) {
17 function foo2({ name: nameC, skills: { primary: primaryB, secondary: secondaryB } }: Robot) {
21 console.log(skills.primary);
25 foo1({ name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } });
28 foo2({ name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } });
31 foo3({ name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } });
35 var robotA = { name: "mower", skills: { primary: "mowing", secondary: "none" } };
37 var _b = _a.skills, primaryA = _b.primary, secondary
[all...]
H A DsourceMapValidationDestructuringVariableStatementNestedObjectBindingPattern.js8 primary: string;
12 var robotA: Robot = { name: "mower", skills: { primary: "mowing", secondary: "none" } };
13 var robotB: Robot = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } };
15 var { skills: { primary: primaryA, secondary: secondaryA } } = robotA;
16 var { name: nameB, skills: { primary: primaryB, secondary: secondaryB } } = robotB;
17 var { name: nameC, skills: { primary: primaryB, secondary: secondaryB } } = { name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } };
27 var robotA = { name: "mower", skills: { primary: "mowing", secondary: "none" } };
28 var robotB = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } };
29 var _a = robotA.skills, primaryA = _a.primary, secondary
[all...]
H A DsourceMapValidationDestructuringForObjectBindingPattern.js13 primary: string;
19 let multiRobot: MultiRobot = { name: "mower", skills: { primary: "mowing", secondary: "none" } };
36 for (let { skills: { primary: primaryA, secondary: secondaryA } } = multiRobot, i = 0; i < 1; i++) {
39 for (let { skills: { primary: primaryA, secondary: secondaryA } } = getMultiRobot(), i = 0; i < 1; i++) {
42 for (let { skills: { primary: primaryA, secondary: secondaryA } } =
43 <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } },
57 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } = multiRobot, i = 0; i < 1; i++) {
60 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } = getMultiRobot(), i = 0; i < 1; i++) {
63 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } =
64 <MultiRobot>{ name: "trimmer", skills: { primary
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/
H A DDecimalQuantity_SimpleStorage.java60 // the "precision" (the number of digits in the long). "primary" and "primaryScale" are the only
63 // always be re-computed from "primary" and "primaryScale".
64 private long primary; field in DecimalQuantity_SimpleStorage
111 primary = input; in DecimalQuantity_SimpleStorage()
113 primaryPrecision = computePrecision(primary); in DecimalQuantity_SimpleStorage()
138 primary = (mantissa << (exponent - 52)); in DecimalQuantity_SimpleStorage()
140 primaryPrecision = computePrecision(primary); in DecimalQuantity_SimpleStorage()
149 primary = 0L; in DecimalQuantity_SimpleStorage()
156 primary = Long.parseLong(temp.charAt(0) + temp.substring(2, expPos)); in DecimalQuantity_SimpleStorage()
162 primary in DecimalQuantity_SimpleStorage()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/impl/number/
H A DDecimalQuantity_SimpleStorage.java63 // the "precision" (the number of digits in the long). "primary" and "primaryScale" are the only
66 // always be re-computed from "primary" and "primaryScale".
67 private long primary; field in DecimalQuantity_SimpleStorage
114 primary = input; in DecimalQuantity_SimpleStorage()
116 primaryPrecision = computePrecision(primary); in DecimalQuantity_SimpleStorage()
141 primary = (mantissa << (exponent - 52)); in DecimalQuantity_SimpleStorage()
143 primaryPrecision = computePrecision(primary); in DecimalQuantity_SimpleStorage()
152 primary = 0L; in DecimalQuantity_SimpleStorage()
159 primary = Long.parseLong(temp.charAt(0) + temp.substring(2, expPos)); in DecimalQuantity_SimpleStorage()
165 primary in DecimalQuantity_SimpleStorage()
[all...]
/third_party/openssl/test/
H A Ddrbgtest.c140 EVP_RAND_CTX *primary = RAND_get0_primary(NULL); in using_fips_rng() local
144 if (!TEST_ptr(primary)) in using_fips_rng()
147 prov = EVP_RAND_get0_provider(EVP_RAND_CTX_get0_rand(primary)); in using_fips_rng()
171 * |primary|, |public|, |private|: pointers to the three shared DRBGs
181 EVP_RAND_CTX *primary, in test_drbg_reseed()
208 if (!TEST_int_ne(primary_reseed = reseed_counter(primary), 0) in test_drbg_reseed()
235 if (!TEST_int_eq(state(primary), expected_state) in test_drbg_reseed()
241 /* Test whether primary DRBG was reseeded as expected */ in test_drbg_reseed()
242 if (!TEST_int_ge(reseed_counter(primary), primary_reseed)) in test_drbg_reseed()
250 reseed_counter(primary))) in test_drbg_reseed()
180 test_drbg_reseed(int expect_success, EVP_RAND_CTX *primary, EVP_RAND_CTX *public, EVP_RAND_CTX *private, unsigned char *public_random, unsigned char *private_random, int expect_primary_reseed, int expect_public_reseed, int expect_private_reseed, time_t reseed_when ) test_drbg_reseed() argument
336 test_drbg_reseed_in_child(EVP_RAND_CTX *primary, EVP_RAND_CTX *public, EVP_RAND_CTX *private, drbg_fork_result result[2]) test_drbg_reseed_in_child() argument
405 test_rand_reseed_on_fork(EVP_RAND_CTX *primary, EVP_RAND_CTX *public, EVP_RAND_CTX *private) test_rand_reseed_on_fork() argument
529 EVP_RAND_CTX *primary, *public, *private; test_rand_fork_safety() local
556 EVP_RAND_CTX *primary, *public, *private; test_rand_reseed() local
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dcollation.cpp28 uint32_t primary; in incTwoBytePrimaryByOffset() local
31 primary = (uint32_t)((offset % 251) + 4) << 16; in incTwoBytePrimaryByOffset()
35 primary = (uint32_t)((offset % 254) + 2) << 16; in incTwoBytePrimaryByOffset()
39 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24)); in incTwoBytePrimaryByOffset()
47 uint32_t primary = (uint32_t)((offset % 254) + 2) << 8; in incThreeBytePrimaryByOffset() local
53 primary |= (uint32_t)((offset % 251) + 4) << 16; in incThreeBytePrimaryByOffset()
57 primary |= (uint32_t)((offset % 254) + 2) << 16; in incThreeBytePrimaryByOffset()
61 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24)); in incThreeBytePrimaryByOffset()
116 uint32_t p = (uint32_t)(dataCE >> 32); // three-byte primary pppppp00 in getThreeBytePrimaryForOffsetData()
128 uint32_t primary in unassignedPrimaryFromCodePoint() local
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dcollation.cpp28 uint32_t primary; in incTwoBytePrimaryByOffset() local
31 primary = (uint32_t)((offset % 251) + 4) << 16; in incTwoBytePrimaryByOffset()
35 primary = (uint32_t)((offset % 254) + 2) << 16; in incTwoBytePrimaryByOffset()
39 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24)); in incTwoBytePrimaryByOffset()
47 uint32_t primary = (uint32_t)((offset % 254) + 2) << 8; in incThreeBytePrimaryByOffset() local
53 primary |= (uint32_t)((offset % 251) + 4) << 16; in incThreeBytePrimaryByOffset()
57 primary |= (uint32_t)((offset % 254) + 2) << 16; in incThreeBytePrimaryByOffset()
61 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24)); in incThreeBytePrimaryByOffset()
116 uint32_t p = (uint32_t)(dataCE >> 32); // three-byte primary pppppp00 in getThreeBytePrimaryForOffsetData()
128 uint32_t primary in unassignedPrimaryFromCodePoint() local
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcollation.cpp37 uint32_t primary; in incTwoBytePrimaryByOffset() local
40 primary = (uint32_t)((offset % 251) + 4) << 16; in incTwoBytePrimaryByOffset()
44 primary = (uint32_t)((offset % 254) + 2) << 16; in incTwoBytePrimaryByOffset()
48 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24)); in incTwoBytePrimaryByOffset()
56 uint32_t primary = (uint32_t)((offset % 254) + 2) << 8; in incThreeBytePrimaryByOffset() local
62 primary |= (uint32_t)((offset % 251) + 4) << 16; in incThreeBytePrimaryByOffset()
66 primary |= (uint32_t)((offset % 254) + 2) << 16; in incThreeBytePrimaryByOffset()
70 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24)); in incThreeBytePrimaryByOffset()
125 uint32_t p = (uint32_t)(dataCE >> 32); // three-byte primary pppppp00 in getThreeBytePrimaryForOffsetData()
137 uint32_t primary in unassignedPrimaryFromCodePoint() local
[all...]
/third_party/node/deps/v8/src/ic/
H A Dstub-cache.cc29 // Hash algorithm for the primary table. This algorithm is replicated in
47 // assembler. This hash should be sufficiently different from the primary one
86 // Compute the primary entry. in Set()
88 Entry* primary = entry(primary_, primary_offset); in Set() local
90 TaggedValue::ToMaybeObject(isolate(), primary->value)); in Set()
91 // If the primary entry has useful data in it, we retire it to the in Set()
95 !primary->map.IsSmi()) { in Set()
97 Map::cast(StrongTaggedValue::ToObject(isolate(), primary->map)); in Set()
99 Name::cast(StrongTaggedValue::ToObject(isolate(), primary->key)); in Set()
102 *secondary = *primary; in Set()
115 Entry* primary = entry(primary_, primary_offset); Get() local
[all...]
/third_party/cups-filters/cupsfilters/
H A Dimage-private.h149 cups_icspace_t primary,
154 cups_icspace_t primary,
159 cups_icspace_t primary,
164 cups_icspace_t primary,
169 cups_icspace_t primary,
174 cups_icspace_t primary,
179 cups_icspace_t primary,
184 cups_icspace_t primary,
189 cups_icspace_t primary,
194 cups_icspace_t primary,
[all...]
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollation.java43 * Same as the unique primary and identical-level weights of U+FFFE.
44 * Must not be used as primary compression low terminator.
53 * Reserved value in primary second byte if the lead byte is compressible.
59 * Reserved value in primary second byte if the lead byte is compressible.
90 * We want a 3-byte primary so that it fits into the root elements table.
92 * This 3-byte primary will not collide with
104 // We use the third-highest primary weight for U+FFFD (as in UCA 6.3+).
116 * Low byte of a long-primary special CE32.
168 * Long-primary CE with COMMON_SEC_AND_TER_CE.
169 * Bits 31..8: Three-byte primary
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
H A DCollation.java45 * Same as the unique primary and identical-level weights of U+FFFE.
46 * Must not be used as primary compression low terminator.
55 * Reserved value in primary second byte if the lead byte is compressible.
61 * Reserved value in primary second byte if the lead byte is compressible.
92 * We want a 3-byte primary so that it fits into the root elements table.
94 * This 3-byte primary will not collide with
106 // We use the third-highest primary weight for U+FFFD (as in UCA 6.3+).
118 * Low byte of a long-primary special CE32.
170 * Long-primary CE with COMMON_SEC_AND_TER_CE.
171 * Bits 31..8: Three-byte primary
[all...]
/third_party/node/test/parallel/
H A Dtest-listen-fd-cluster.js37 // -> primary: the cluster primary
40 case 'primary': return primary();
91 const primary = spawn(process.execPath, [__filename, 'primary'], {
96 // Now close the parent, so that the primary is the only thing
98 // be accepted, because the primary has the fd open.
101 primary.on('exit', function(code) {
102 console.error('primary exite
117 function primary() { global() function
[all...]
/third_party/rust/crates/codespan/codespan-reporting/tests/
H A Dterm.rs138 Label::primary(file_id1, 71..72)
246 Label::primary(file_id1, 129..139)
255 Label::primary(file_id2, 17..18)
264 Label::primary(file_id2, 49..50)
266 Label::primary(file_id2, 52..53)
275 Label::primary(file_id4, 339..352)
397 .with_labels(vec![Label::primary((), 6..6).with_message("middle")]),
400 .with_labels(vec![Label::primary((), 12..12).with_message("end of line")]),
403 .with_labels(vec![Label::primary((), 23..23).with_message("end of line")]),
406 .with_labels(vec![Label::primary((), eo
[all...]
/third_party/mesa3d/src/freedreno/drm/
H A Dfreedreno_ringbuffer.c48 if (submit->primary) in fd_submit_del()
49 fd_ringbuffer_del(submit->primary); in fd_submit_del()
67 submit->fence = fd_pipe_emit_fence(submit->pipe, submit->primary); in fd_submit_flush()
84 assert(!submit->primary); in fd_submit_new_ringbuffer()
85 submit->primary = fd_ringbuffer_ref(ring); in fd_submit_new_ringbuffer()

Completed in 10 milliseconds

1234567