Home
last modified time | relevance | path

Searched defs:primary (Results 1 – 25 of 112) sorted by relevance

12345

/third_party/typescript/tests/baselines/reference/
DsourceMapValidationDestructuringForObjectBindingPatternDefaultValues.js19 let multiRobot: MultiRobot = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
38 primary: primaryA = "primary", property
40 } = { primary: "none", secondary: "none" } property
46 primary: primaryA = "primary", property
48 } = { primary: "none", secondary: "none" } property
54 primary: primaryA = "primary", property
56 } = { primary: "none", secondary: "none" } property
57 } = <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }, property
74 primary: primaryA = "primary", property
76 } = { primary: "none", secondary: "none" } property
[all …]
DsourceMapValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.js12 var robotA: Robot = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
17 primary: primaryA = "primary", property
19 } = { primary: "SomeSkill", secondary: "someSkill" } property
27 primary: primaryB = "primary", property
29 } = { primary: "SomeSkill", secondary: "someSkill" } property
33 function foo3({ skills = { primary: "SomeSkill", secondary: "someSkill" } }: Robot = robotA) { property
38 foo1({ name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } }); property
41 foo2({ name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } }); property
44 foo3({ name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } }); property
48 var robotA = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
[all …]
DsourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.js19 let multiRobot: MultiRobot = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
28 let name: string, primary: string, secondary: string, skill: string; variable
41 primary: primaryA = "primary", property
43 } = { primary: "none", secondary: "none" } property
49 primary: primaryA = "primary", property
51 } = { primary: "none", secondary: "none" } property
57 primary: primaryA = "primary", property
59 } = { primary: "none", secondary: "none" } property
60 } = <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }, property
76 primary = "primary", property
[all …]
DsourceMapValidationDestructuringParameterNestedObjectBindingPattern.js12 var robotA: Robot = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
14 function foo1({ skills: { primary: primaryA, secondary: secondaryA } }: Robot) { property
17 function foo2({ name: nameC, skills: { primary: primaryB, secondary: secondaryB } }: Robot) { property
25 foo1({ name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } }); property
28 foo2({ name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } }); property
31 foo3({ name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } }); property
35 var robotA = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
49 foo1({ name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } }); property
51 foo2({ name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } }); property
53 foo3({ name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } }); property
DsourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.js19 let multiRobots: MultiRobot[] = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } … property
20 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; property
31 let name: string, primary: string, secondary: string, skill: string; variable
42 for ({ skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = property
43 { primary: "nosKill", secondary: "noSkill" } } of multiRobots) { property
46 for ({ skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = property
47 { primary: "nosKill", secondary: "noSkill" } } of getMultiRobots()) { property
50 for ({ skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = property
51 { primary: "nosKill", secondary: "noSkill" } } of property
52 <MultiRobot[]>[{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, property
[all …]
DsourceMapValidationDestructuringForObjectBindingPattern2.js19 let multiRobot: MultiRobot = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
28 let name: string, primary: string, secondary: string, skill: string; variable
39 for ({ skills: { primary: primaryA, secondary: secondaryA } } = multiRobot, i = 0; i < 1; i++) { property
42 for ({ skills: { primary: primaryA, secondary: secondaryA } } = getMultiRobot(), i = 0; i < 1; i++)… property
45 for ({ skills: { primary: primaryA, secondary: secondaryA } } = property
46 <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }, property
59 for ({ skills: { primary, secondary } } = multiRobot, i = 0; i < 1; i++) { property
62 for ({ skills: { primary, secondary } } = getMultiRobot(), i = 0; i < 1; i++) { property
65 for ({ skills: { primary, secondary } } = property
66 <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }, property
[all …]
DsourceMapValidationDestructuringForOfObjectBindingPattern2.js19 let multiRobots: MultiRobot[] = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } … property
20 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; property
31 let name: string, primary: string, secondary: string, skill: string; variable
42 for ({ skills: { primary: primaryA, secondary: secondaryA } } of multiRobots) { property
45 for ({ skills: { primary: primaryA, secondary: secondaryA } } of getMultiRobots()) { property
48 for ({ skills: { primary: primaryA, secondary: secondaryA } } of [{ name: "mower", skills: { primar… property
49 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]) { property
61 for ({ skills: { primary, secondary } } of multiRobots) { property
64 for ({ skills: { primary, secondary } } of getMultiRobots()) { property
67 for ({ skills: { primary, secondary } } of [{ name: "mower", skills: { primary: "mowing", secondary… property
[all …]
DsourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues.js19 let multiRobots: MultiRobot[] = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } … property
20 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; property
39 for (let { skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = property
40 { primary: "nosKill", secondary: "noSkill" } } of multiRobots) { property
43 for (let { skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = property
44 { primary: "nosKill", secondary: "noSkill" } } of getMultiRobots()) { property
47 for (let { skills: { primary: primaryA = "primary", secondary: secondaryA = "secondary" } = property
48 { primary: "nosKill", secondary: "noSkill" } } of property
49 <MultiRobot[]>[{ name: "mower", skills: { primary: "mowing", secondary: "none" } }, property
50 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]) { property
[all …]
DsourceMapValidationDestructuringForObjectBindingPattern.js19 let multiRobot: MultiRobot = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
36 for (let { skills: { primary: primaryA, secondary: secondaryA } } = multiRobot, i = 0; i < 1; i++) { property
39 for (let { skills: { primary: primaryA, secondary: secondaryA } } = getMultiRobot(), i = 0; i < 1; … property
42 for (let { skills: { primary: primaryA, secondary: secondaryA } } = property
43 <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }, property
57 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } = multiRobot, i = 0; … property
60 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } = getMultiRobot(), i … property
63 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } = property
64 <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }, property
71 var multiRobot = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
[all …]
DsourceMapValidationDestructuringForOfObjectBindingPattern.js19 let multiRobots: MultiRobot[] = [{ name: "mower", skills: { primary: "mowing", secondary: "none" } … property
20 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]; property
39 for (let { skills: { primary: primaryA, secondary: secondaryA } } of multiRobots) { property
42 for (let { skills: { primary: primaryA, secondary: secondaryA } } of getMultiRobots()) { property
45 for (let { skills: { primary: primaryA, secondary: secondaryA } } of [{ name: "mower", skills: { pr… property
46 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]) { property
59 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } of multiRobots) { property
62 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } of getMultiRobots()) { property
65 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } of [{ name: "mower", … property
66 { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }]) { property
[all …]
DsourceMapValidationDestructuringVariableStatementNestedObjectBindingPatternWithDefaultValues.js12 var robotA: Robot = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
13 var robotB: Robot = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }; property
19 } = { primary: "noSkill", secondary: "noSkill" } property
26 } = { primary: "noSkill", secondary: "noSkill" } property
33 } = { primary: "noSkill", secondary: "noSkill" } property
44 var robotA = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
45 var robotB = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }; property
48 var _k = { name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } }, _l = _k.na… property
DsourceMapValidationDestructuringVariableStatementNestedObjectBindingPattern.js12 var robotA: Robot = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
13 var robotB: Robot = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }; property
17 var { name: nameC, skills: { primary: primaryB, secondary: secondaryB } } = { name: "Edger", skills… property
27 var robotA = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
28 var robotB = { name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }; property
31 var _c = { name: "Edger", skills: { primary: "edging", secondary: "branch trimming" } }, nameC = _c… property
/third_party/icu/icu4c/source/i18n/
Dcollation.cpp28 uint32_t primary; in incTwoBytePrimaryByOffset() local
47 uint32_t primary = (uint32_t)((offset % 254) + 2) << 8; in incThreeBytePrimaryByOffset() local
128 uint32_t primary = 2 + (c % 18) * 14; in unassignedPrimaryFromCodePoint() local
Dcollationiterator.cpp765 uint32_t primary = numericPrimary | ((firstByte + value) << 16); in appendNumericSegmentCEs() local
774 uint32_t primary = numericPrimary | in appendNumericSegmentCEs() local
784 uint32_t primary = numericPrimary | (2 + value % 254); in appendNumericSegmentCEs() local
803 uint32_t primary = numericPrimary | ((132 - 4 + numPairs) << 16); in appendNumericSegmentCEs() local
/third_party/node/deps/icu-small/source/i18n/
Dcollation.cpp28 uint32_t primary; in incTwoBytePrimaryByOffset() local
47 uint32_t primary = (uint32_t)((offset % 254) + 2) << 8; in incThreeBytePrimaryByOffset() local
128 uint32_t primary = 2 + (c % 18) * 14; in unassignedPrimaryFromCodePoint() local
/third_party/skia/third_party/externals/icu/source/i18n/
Dcollation.cpp37 uint32_t primary; in incTwoBytePrimaryByOffset() local
56 uint32_t primary = (uint32_t)((offset % 254) + 2) << 8; in incThreeBytePrimaryByOffset() local
137 uint32_t primary = 2 + (c % 18) * 14; in unassignedPrimaryFromCodePoint() local
/third_party/openssl/test/
Ddrbgtest.c140 EVP_RAND_CTX *primary = RAND_get0_primary(NULL); in using_fips_rng() local
181 EVP_RAND_CTX *primary, in test_drbg_reseed()
336 static int test_drbg_reseed_in_child(EVP_RAND_CTX *primary, in test_drbg_reseed_in_child()
405 static int test_rand_reseed_on_fork(EVP_RAND_CTX *primary, in test_rand_reseed_on_fork()
529 EVP_RAND_CTX *primary, *public, *private; in test_rand_fork_safety() local
556 EVP_RAND_CTX *primary, *public, *private; in test_rand_reseed() local
/third_party/node/test/parallel/
Dtest-cluster-uncaught-exception.js37 const primary = fork(__filename, ['child']); constant
Dtest-child-process-recv-handle.js36 function primary() { function
Dtest-cluster-dgram-2.js40 function primary() { function
Dtest-cluster-primary-kill.js55 const primary = fork(process.argv[1], ['cluster']); constant
Dtest-cluster-dgram-1.js40 function primary() { function
Dtest-cluster-dgram-bind-fd.js20 function primary() { function
/third_party/cups-filters/cupsfilters/
Dtestimage.c33 cups_icspace_t primary; /* Primary image colorspace */ in main() local
/third_party/node/deps/v8/src/ic/
Dstub-cache.cc88 Entry* primary = entry(primary_, primary_offset); in Set() local
115 Entry* primary = entry(primary_, primary_offset); in Get() local

12345