Home
last modified time | relevance | path

Searched defs:o1 (Results 1 – 25 of 150) sorted by relevance

123456

/third_party/typescript/tests/baselines/reference/
DobjectLiteralIndexers.js14 var o1: { [s: string]: A;[n: number]: B; } = { x: a, 0: b }; // string indexer is A, number indexer… variable
15 o1 = { x: b, 0: c }; // both indexers are any variable
16 o1 = { x: c, 0: b }; // string indexer is any, number indexer is B variable
22 var o1 = { x: a, 0: b }; // string indexer is A, number indexer is B variable
23 o1 = { x: b, 0: c }; // both indexers are any variable
24 o1 = { x: c, 0: b }; // string indexer is any, number indexer is B variable
DimplicitIndexSignatures.js19 const o1 = { a: 1, b: 2 }; variable
26 const o1 = { a: "1", b: "2" }; variable
33 const o1 = { a: 1, b: "2" }; variable
40 const o1 = { 0: "0", 1: "1", count: 2 }; variable
73 var o1 = { a: 1, b: 2 }; variable
79 var o1 = { a: "1", b: "2" }; variable
85 var o1 = { a: 1, b: "2" }; variable
91 var o1 = { 0: "0", 1: "1", count: 2 }; variable
DobjectLiteralIndexerErrors.js14 var o1: { [s: string]: A;[n: number]: B; } = { x: b, 0: a }; // both indexers are A variable
15 o1 = { x: c, 0: a }; // string indexer is any, number indexer is A variable
21 var o1 = { x: b, 0: a }; // both indexers are A variable
22 o1 = { x: c, 0: a }; // string indexer is any, number indexer is A variable
DinfinitelyExpandingTypes3.js16 var o1: OwnerList<number>; variable
22 var o1; variable
DobjectSpreadSetonlyAccessor.js2 const o1: { foo: number, bar: undefined } = { foo: 1, ... { set bar(_v: number) { } } } variable
8 const o1 = { foo: 1, ...{ set bar(_v) { } } }; variable
DspreadUnion2.js5 var o1: {} | { a: number }; variable
35 var o1; variable
DspreadIntersection.js4 var o1: { a: number, b: string }; variable
23 var o1; variable
DarrayAssignmentTest4.js19 var o1 = {one : 1}; variable
46 var o1 = { one: 1 }; variable
DmodularizeLibrary_ErrorFromUsingES6FeaturesWithOnlyES5Lib.js51 const o1 = { variable
96 const o1 = { variable
DmodularizeLibrary_TargetES6UsingES6Lib.js50 const o1 = { variable
94 const o1 = { variable
DtrailingCommasES3.js2 var o1 = { a: 1, b: 2 }; variable
15 var o1 = { a: 1, b: 2 }; variable
DtrailingCommasES5.js2 var o1 = { a: 1, b: 2 }; variable
15 var o1 = { a: 1, b: 2 }; variable
Demitter.asyncGenerators.objectLiteralMethods.es2018.js4 const o1 = { variable
47 const o1 = { variable
DescapedReservedCompilerNamedIdentifier.js8 var o1 = { variable
40 var o1 = { variable
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
DvktPipelineSpecConstantUtil.hpp59 std::vector<T> makeVector (const T& o1) in makeVector()
68 std::vector<T> makeVector (const T& o1, const T& o2) in makeVector()
78 std::vector<T> makeVector (const T& o1, const T& o2, const T& o3) in makeVector()
89 std::vector<T> makeVector (const T& o1, const T& o2, const T& o3, const T& o4) in makeVector()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineSpecConstantUtil.hpp59 std::vector<T> makeVector (const T& o1) in makeVector()
68 std::vector<T> makeVector (const T& o1, const T& o2) in makeVector()
78 std::vector<T> makeVector (const T& o1, const T& o2, const T& o3) in makeVector()
89 std::vector<T> makeVector (const T& o1, const T& o2, const T& o3, const T& o4) in makeVector()
/third_party/typescript/tests/cases/compiler/
DimplicitIndexSignatures.ts18 const o1 = { a: 1, b: 2 }; constant
25 const o1 = { a: "1", b: "2" }; constant
32 const o1 = { a: 1, b: "2" }; constant
39 const o1 = { 0: "0", 1: "1", count: 2 }; constant
DspreadIntersection.ts3 var o1: { a: number, b: string }; variable
4 var o1 = { ...intersection }; variable
/third_party/typescript/tests/cases/conformance/types/spread/
DspreadUnion2.ts6 var o1: {} | { a: number }; variable
7 var o1 = { ...undefinedUnion }; variable
/third_party/typescript/tests/cases/conformance/salsa/
DtypeFromContextualThisType.ts8 const o1 = { constant
/third_party/typescript/tests/cases/conformance/expressions/optionalChaining/callChain/
DcallChain.2.ts3 declare const o1: undefined | (() => number); constant
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/3.2/generic_spread_expressions_in_object_literals/
Dgeneric_spread_expressions_in_object_literals_2.ts29 let o1 = { variable
/third_party/typescript/tests/cases/conformance/expressions/optionalChaining/elementAccessChain/
DelementAccessChain.2.ts3 declare const o1: undefined | { b: string }; constant
/third_party/typescript/tests/cases/conformance/expressions/optionalChaining/propertyAccessChain/
DpropertyAccessChain.2.ts3 declare const o1: undefined | { b: string }; constant
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/namespaces/declaration_merging/
Ddeclaration_merging_1_3.ts26 var o1: outside.OA = { OA: "OA" }; variable

123456