Home
last modified time | relevance | path

Searched defs:secondary (Results 1 – 25 of 62) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
DsourceMapValidationDestructuringForObjectBindingPatternDefaultValues.js19 let multiRobot: MultiRobot = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
39 secondary: secondaryA = "secondary" property
40 } = { primary: "none", secondary: "none" } property
47 secondary: secondaryA = "secondary" property
48 } = { primary: "none", secondary: "none" } property
55 secondary: secondaryA = "secondary" property
56 } = { primary: "none", secondary: "none" } property
57 } = <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }, property
75 secondary: secondaryA = "secondary" property
76 } = { primary: "none", secondary: "none" } property
[all …]
DsourceMapValidationDestructuringParameterNestedObjectBindingPatternDefaultValues.js12 var robotA: Robot = { name: "mower", skills: { primary: "mowing", secondary: "none" } }; property
18 secondary: secondaryA = "secondary" property
19 } = { primary: "SomeSkill", secondary: "someSkill" } property
28 secondary: secondaryB = "secondary" 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
42 secondary: secondaryA = "secondary" property
43 } = { primary: "none", secondary: "none" } property
50 secondary: secondaryA = "secondary" property
51 } = { primary: "none", secondary: "none" } property
58 secondary: secondaryA = "secondary" property
59 } = { primary: "none", secondary: "none" } property
60 } = <MultiRobot>{ name: "trimmer", skills: { primary: "trimming", secondary: "edging" } }, property
77 secondary = "secondary" 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++) { field
62 for ({ skills: { primary, secondary } } = getMultiRobot(), i = 0; i < 1; i++) { field
65 for ({ skills: { primary, secondary } } = field
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) { field
64 for ({ skills: { primary, secondary } } of getMultiRobots()) { field
67 for ({ skills: { primary, secondary } } of [{ name: "mower", skills: { primary: "mowing", secondary… field
[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/typescript/tests/cases/compiler/
DsourceMapValidationDestructuringForOfObjectBindingPattern.ts40 for (let { skills: { primary: primaryA, secondary: secondaryA } } of multiRobots) { variable
43 for (let { skills: { primary: primaryA, secondary: secondaryA } } of getMultiRobots()) { variable
46 for (let { skills: { primary: primaryA, secondary: secondaryA } } of [{ name: "mower", skills: { pr… variable
60 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } of multiRobots) { variable
63 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } of getMultiRobots()) { variable
66 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } of [{ name: "mower", … variable
DsourceMapValidationDestructuringForObjectBindingPattern.ts37 for (let { skills: { primary: primaryA, secondary: secondaryA } } = multiRobot, i = 0; i < 1; i++) { variable
40 for (let { skills: { primary: primaryA, secondary: secondaryA } } = getMultiRobot(), i = 0; i < 1; … variable
43 for (let { skills: { primary: primaryA, secondary: secondaryA } } = variable
58 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } = multiRobot, i = 0; … variable
61 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } = getMultiRobot(), i … variable
64 for (let {name: nameA, skills: { primary: primaryA, secondary: secondaryA } } = variable
DsourceMapValidationDestructuringVariableStatementNestedObjectBindingPattern.ts16 var { skills: { primary: primaryA, secondary: secondaryA } } = robotA; variable
17 var { name: nameB, skills: { primary: primaryB, secondary: secondaryB } } = robotB; variable
18 var { name: nameC, skills: { primary: primaryB, secondary: secondaryB } } = { name: "Edger", skills… variable
DsourceMapValidationDestructuringForOfObjectBindingPattern2.ts32 let name: string, primary: string, secondary: string, skill: string; variable
DsourceMapValidationDestructuringForOfObjectBindingPatternDefaultValues2.ts32 let name: string, primary: string, secondary: string, skill: string; variable
DsourceMapValidationDestructuringForObjectBindingPatternDefaultValues2.ts29 let name: string, primary: string, secondary: string, skill: string; variable
DsourceMapValidationDestructuringForObjectBindingPattern2.ts29 let name: string, primary: string, secondary: string, skill: string; variable
/third_party/node/deps/v8/src/ic/
Dstub-cache.cc101 Entry* secondary = entry(secondary_, secondary_offset); in Set() local
120 Entry* secondary = entry(secondary_, secondary_offset); in Get() local
/third_party/node/deps/v8/tools/
Drun_perf.py626 def _Run(self, runnable, count, secondary=False): argument
629 def _LoggedRun(self, runnable, count, secondary=False): argument
647 def Run(self, runnable, count, secondary): argument
698 def _Run(self, runnable, count, secondary=False): argument
753 def _Run(self, runnable, count, secondary=False): argument
/third_party/mesa3d/src/intel/vulkan/
Danv_measure.h78 #define anv_measure_add_secondary(primary, secondary) \ argument
/third_party/cups-filters/cupsfilters/
Dimage-pnm.c33 cups_icspace_t secondary, /* I - Secondary choice for colorspace */ in _cupsImageReadPNM()
Dimage-sgi.c34 cups_icspace_t secondary, /* I - Secondary choice for colorspace */ in _cupsImageReadSGI()
Dimage-jpeg.c37 cups_icspace_t secondary, /* I - Secondary choice for colorspace */ in _cupsImageReadJPEG()

123