| /arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
| D | optionalTupleElementsAndUndefined.ts | 31 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
|
| D | for-of23.ts | 44 for (const v of new FooIterator) { constant 45 const v = 0; // new scope constant
|
| D | systemModuleNonTopLevelModuleMembers.ts | 23 export module TopLevelModule {let v;} variable 29 export module NonTopLevelModule {let v;} variable
|
| D | for-of27.ts | 26 for (let v of new StringIterator) { } variable
|
| D | inferringAnyFunctionType1.ts | 26 let v = f([x => x]); variable
|
| D | inferringAnyFunctionType5.ts | 26 let v = f({ q: x => x }); variable
|
| D | computedPropertyNames7_ES5.ts | 24 let v = { variable
|
| D | moduleWithTryStatement1.ts | 27 let v = M; variable
|
| D | ES5For-of15.ts | 25 for (const v of []) { constant
|
| D | inferringAnyFunctionType4.ts | 26 let v = f(x => x); variable
|
| D | ES5For-of19.ts | 28 for (const v of []) { constant
|
| D | inferringAnyFunctionType3.ts | 26 let v = f([x => x]); variable
|
| D | inferringAnyFunctionType2.ts | 26 let v = f([x => x]); variable
|
| D | computedPropertyNames7_ES6.ts | 24 let v = { variable
|
| D | for-of28.ts | 29 for (let v of new StringIterator) { } variable
|
| D | ES5For-of18.ts | 25 for (let v of []) { variable
|
| D | for-of18.ts | 42 let v: string; variable
|
| /arkcompiler/runtime_core/assembler/tests/ |
| D | assembler_parser_test.cpp | 40 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 …]
|
| D | parser_test.cpp | 26 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/ |
| D | test-ts-enum-9.ts | 18 var v = 1; variable 27 module ns { 28 var v = 2; variable
|
| /arkcompiler/ets_frontend/ts2panda/tests/ |
| D | scope.test.ts | 36 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 …]
|
| D | esmodule.test.ts | 71 let v = new VReg(); variable 99 let v = new VReg(); variable
|
| /arkcompiler/runtime_core/bytecode_optimizer/ |
| D | tagged_value.h | 94 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/ |
| D | js_tagged_number.h | 32 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/ |
| D | assembler.h | 176 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()
|