Home
last modified time | relevance | path

Searched defs:v (Results 1 – 25 of 141) sorted by relevance

123456

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DoptionalTupleElementsAndUndefined.ts31 let v: [1, 2?]; variable
34 let v: [1, (2 | undefined)?]; variable
37 let v: [a: 1, b?: 2]; variable
40 let v: [a: 1, b?: 2 | undefined]; variable
43 let v: UnNullify<[1, 2?]>; variable
46 let v: UnNullify<[1, (2 | undefined)?]>; variable
49 let v: UnNullify<[a: 1, b?: 2]>; variable
52 let v: UnNullify<[a: 1, b?: 2 | undefined]>; variable
Dfor-of23.ts44 for (const v of new FooIterator) { constant
45 const v = 0; // new scope constant
DsystemModuleNonTopLevelModuleMembers.ts23 export module TopLevelModule {let v;} variable
29 export module NonTopLevelModule {let v;} variable
Dfor-of27.ts26 for (let v of new StringIterator) { } variable
DinferringAnyFunctionType1.ts26 let v = f([x => x]); variable
DinferringAnyFunctionType5.ts26 let v = f({ q: x => x }); variable
DcomputedPropertyNames7_ES5.ts24 let v = { variable
DmoduleWithTryStatement1.ts27 let v = M; variable
DES5For-of15.ts25 for (const v of []) { constant
DinferringAnyFunctionType4.ts26 let v = f(x => x); variable
DES5For-of19.ts28 for (const v of []) { constant
DinferringAnyFunctionType3.ts26 let v = f([x => x]); variable
DinferringAnyFunctionType2.ts26 let v = f([x => x]); variable
DcomputedPropertyNames7_ES6.ts24 let v = { variable
Dfor-of28.ts29 for (let v of new StringIterator) { } variable
DES5For-of18.ts25 for (let v of []) { variable
Dfor-of18.ts42 let v: string; variable
/arkcompiler/runtime_core/assembler/tests/
Dassembler_parser_test.cpp40 std::vector<std::vector<panda::pandasm::Token>> v; variable
62 std::vector<std::vector<panda::pandasm::Token>> v; variable
85 std::vector<std::vector<panda::pandasm::Token>> v; variable
102 std::vector<std::vector<panda::pandasm::Token>> v; variable
119 std::vector<std::vector<panda::pandasm::Token>> v; variable
139 std::vector<std::vector<panda::pandasm::Token>> v; variable
159 std::vector<std::vector<panda::pandasm::Token>> v; variable
176 std::vector<std::vector<panda::pandasm::Token>> v; variable
268 std::vector<std::vector<panda::pandasm::Token>> v; variable
288 std::vector<std::vector<panda::pandasm::Token>> v; variable
[all …]
Dparser_test.cpp26 std::vector<std::vector<panda::pandasm::Token>> v; in TEST() local
43 std::vector<std::vector<panda::pandasm::Token>> v; in TEST() local
60 std::vector<std::vector<panda::pandasm::Token>> v; in TEST() local
71 std::vector<std::vector<panda::pandasm::Token>> v; in TEST() local
82 std::vector<std::vector<panda::pandasm::Token>> v; in TEST() local
98 std::vector<std::vector<panda::pandasm::Token>> v; in TEST() local
114 std::vector<std::vector<panda::pandasm::Token>> v; in TEST() local
125 std::vector<std::vector<panda::pandasm::Token>> v; in TEST() local
136 std::vector<std::vector<panda::pandasm::Token>> v; in TEST() local
156 std::vector<std::vector<panda::pandasm::Token>> v; in TEST() local
[all …]
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/enums/
Dtest-ts-enum-9.ts18 var v = 1; variable
27 module ns {
28 var v = 2; variable
/arkcompiler/ets_frontend/ts2panda/tests/
Dscope.test.ts36 let { scope: sp, level: lv, v: outVariable } = scope.find("x"); variable
46 let { scope: sp, level: lv, v: outVariable } = scope.find("x"); variable
56 let { scope: sp, level: lv, v: outVariable } = scope.find("x"); variable
66 let { scope: sp, level: lv, v: outVariable } = scope.find("x"); variable
84 let { scope: sp, level: lv, v: outVariable } = scope.find("x"); variable
94 let { scope: sp, level: lv, v: outVariable } = scope.find("x"); variable
104 let { scope: sp, level: lv, v: outVariable } = scope.find("x"); variable
114 let { scope: sp, level: lv, v: outVariable } = scope.find("x"); variable
133 let { scope: sp, level: lv, v: outVariable } = scope.find("x"); variable
135 let { scope: spParent, level: lvParent, v: outVariableParent } = parent.find("x"); variable
[all …]
Desmodule.test.ts71 let v = new VReg(); variable
99 let v = new VReg(); variable
/arkcompiler/runtime_core/bytecode_optimizer/
Dtagged_value.h94 constexpr explicit TaggedValue(TaggedType v) : value_(v) {} in TaggedValue()
96 constexpr explicit TaggedValue(int v) : value_(static_cast<TaggedType>(v) | TAG_INT) {} in TaggedValue()
98 explicit TaggedValue(unsigned int v) in TaggedValue()
107 explicit TaggedValue(int64_t v) in TaggedValue()
116 constexpr explicit TaggedValue(bool v) in TaggedValue()
121 explicit TaggedValue(double v) in TaggedValue()
128 explicit TaggedValue(ObjectHeader *v) : value_(static_cast<TaggedType>(ToUintPtr(v))) {} in TaggedValue()
130 explicit TaggedValue(const ObjectHeader *v) : value_(static_cast<TaggedType>(ToUintPtr(v))) {} in TaggedValue()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_number.h32 explicit JSTaggedNumber(double v) : JSTaggedValue(v) {} in JSTaggedNumber()
33 constexpr explicit JSTaggedNumber(int v) : JSTaggedValue(v) {} in JSTaggedNumber()
34 explicit JSTaggedNumber(unsigned int v) : JSTaggedValue(v) {} in JSTaggedNumber()
35 explicit JSTaggedNumber(JSTaggedValue v) : JSTaggedValue(v.GetRawData()) in JSTaggedNumber()
174 constexpr explicit JSTaggedNumber(JSTaggedType v) : JSTaggedValue(v) {} in JSTaggedNumber()
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/
Dassembler.h176 void EmitU8(uint8_t v) in EmitU8()
181 void EmitI8(int8_t v) in EmitI8()
186 void EmitU16(uint16_t v) in EmitU16()
191 void EmitU32(uint32_t v) in EmitU32()
196 void EmitI32(int32_t v) in EmitI32()
201 void EmitU64(uint64_t v) in EmitU64()

123456