Home
last modified time | relevance | path

Searched refs:INTEGER (Results 1 – 25 of 35) sorted by relevance

12

/arkcompiler/ets_frontend/ts2panda/src/base/
DtypeSystem.ts259 summaryLiterals.push(new Literal(LiteralTag.INTEGER, definedTypeNum));
265 summaryLiterals.push(new Literal(LiteralTag.INTEGER, this.anonymousRedirect.length));
459 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, L2Type.CLASS));
460 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, this.modifier));
463 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, this.implementsHeritages.length));
483 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, transferredTarget.size));
487 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, typeInfo[1])); // accessFlag
488 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, typeInfo[2])); // readonly
495 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, transferredTarget.size));
523 classInstLiterals.push(new Literal(LiteralTag.INTEGER, L2Type.CLASSINST));
[all …]
Dliteral.ts18 INTEGER = 2, enumerator
/arkcompiler/ets_runtime/ecmascript/ts_types/tests/
Dts_type_parser_test.cpp97 std::vector<panda_file::LiteralTag> classTags { panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
98 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
100 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
101 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
102 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
103 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
106 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
107 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
108 panda_file::LiteralTag::INTEGER }; in HWTEST_F_L0()
178 std::vector<panda_file::LiteralTag> functionTags { panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
[all …]
Dts_type_test_helper.h92 case panda_file::LiteralTag::INTEGER: { in AddTagValue()
120 std::vector<panda_file::LiteralTag> typeSummaryTags { panda_file::LiteralTag::INTEGER }; in AddSummaryLiteral()
126 typeSummaryTags.emplace_back(panda_file::LiteralTag::INTEGER); in AddSummaryLiteral()
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
DmoduleRecordEmitter.cpp24 ….tag_ = panda::panda_file::LiteralTag::INTEGER, .value_ = static_cast<uint32_t>(moduleRequests.siz… in GenModuleRequests()
38 .tag_ = panda::panda_file::LiteralTag::INTEGER, in GenRegularImportEntries()
61 .tag_ = panda::panda_file::LiteralTag::INTEGER, in GenNamespaceImportEntries()
80 ….tag_ = panda::panda_file::LiteralTag::INTEGER, .value_ = static_cast<uint32_t>(localExportEntries… in GenLocalExportEntries()
98 ….tag_ = panda::panda_file::LiteralTag::INTEGER, .value_ = static_cast<uint32_t>(indirectExportEntr… in GenIndirectExportEntries()
119 ….tag_ = panda::panda_file::LiteralTag::INTEGER, .value_ = static_cast<uint32_t>(starExportEntries.… in GenStarExportEntries()
DtypeExtractorEmitter.cpp81 insnOrderTag.value_ = static_cast<uint8_t>(panda::panda_file::LiteralTag::INTEGER); in GenInsnTypeInfo()
82 insnOrderValue.tag_ = panda::panda_file::LiteralTag::INTEGER; in GenInsnTypeInfo()
Demitter.cpp475 case ir::LiteralTag::INTEGER: { in GenBufferLiterals()
476 valueLit.tag_ = panda::panda_file::LiteralTag::INTEGER; in GenBufferLiterals()
/arkcompiler/ets_frontend/es2panda/ir/expressions/
Dliteral.h36 INTEGER, enumerator
/arkcompiler/ets_frontend/es2panda/ir/expressions/literals/
DnumberLiteral.h54 return IsInteger() ? LiteralTag::INTEGER : LiteralTag::DOUBLE; in Tag()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dtype_literal_extractor.cpp91 case LiteralTag::INTEGER: { in ProcessTypeLiteral()
198 case LiteralTag::INTEGER: { in ProcessTypeSummary()
248 case LiteralTag::INTEGER: { in ProcessTypeAnnotation()
Dliteral_data_extractor.cpp55 case LiteralTag::INTEGER: { in ExtractObjectDatas()
153 case LiteralTag::INTEGER: { in EnumerateLiteralVals()
308 case LiteralTag::INTEGER: { in ExtractObjectDatas()
400 case LiteralTag::INTEGER: { in GetDatasIgnoreType()
/arkcompiler/runtime_core/libpandafile/
Dliteral_data_accessor.h35 INTEGER = 0x02, enumerator
Dliteral_data_accessor-inl.h54 case LiteralTag::INTEGER: in EnumerateLiteralVals()
Dfile_items.cpp890 case Type::INTEGER: in GetULeb128EncodedSize()
907 case Type::INTEGER: in GetSLeb128EncodedSize()
922 case Type::INTEGER: { in CalculateSize()
965 case Type::INTEGER: in Write()
995 case Type::INTEGER: in WriteAsUleb128()
1283 if (value_->GetType() == ValueItem::Type::INTEGER) { in CalculateSize()
1306 if (value_->GetType() == ValueItem::Type::INTEGER) { in WriteValue()
1417 case ValueItem::Type::INTEGER: { in Write()
Dfile_items.h1468 enum class Type { INTEGER, LONG, FLOAT, DOUBLE, ID, ARRAY }; enumerator
1489 return type_ == Type::INTEGER || type_ == Type::FLOAT || type_ == Type::ID; in Is32bit()
1507 …explicit ScalarValueItem(uint32_t v, ItemContainer *container) : ValueItem(Type::INTEGER, containe… in ScalarValueItem()
1812 INTEGER = 0x00, enumerator
/arkcompiler/runtime_core/libpandabase/utils/
Dpandargs.h42 enum class PandArgType : uint8_t { STRING, INTEGER, DOUBLE, BOOL, LIST, UINT32, UINT64, COMPOUND, N… enumerator
166 return PandArgType::INTEGER; in EvalType()
388 case PandArgType::INTEGER: in GetRegularArgs()
468 case PandArgType::INTEGER: in InitDefault()
675 case PandArgType::INTEGER: in ParseTail()
726 case PandArgType::INTEGER: in ParseNextParam()
/arkcompiler/runtime_core/compiler/optimizer/templates/
Dinstructions.rb37 INTEGER = 'int' constant
/arkcompiler/runtime_core/assembler/
Dassembly-literals.h75 case panda_file::LiteralTag::INTEGER: in IsIntegerValue()
/arkcompiler/ets_frontend/ts2panda/ts2abc/
Dts2abc.cpp254 case static_cast<uint8_t>(panda::panda_file::LiteralTag::INTEGER): { in ParseLiteral()
255 valueLiteral.tag_ = panda::panda_file::LiteralTag::INTEGER; in ParseLiteral()
664 ASSERT(static_cast<uint32_t>(panda::panda_file::LiteralTag::INTEGER) <= MAX_UINT8); in ParseFunctionTypeInfo()
665 instTagLiteral.value_ = static_cast<uint8_t>(panda::panda_file::LiteralTag::INTEGER); in ParseFunctionTypeInfo()
667 instValueLiteral.tag_ = panda::panda_file::LiteralTag::INTEGER; in ParseFunctionTypeInfo()
1135 ….tag_ = panda::panda_file::LiteralTag::INTEGER, .value_ = static_cast<uint32_t>(moduleRequests.siz… in ParseModuleRequests()
1148 ….tag_ = panda::panda_file::LiteralTag::INTEGER, .value_ = static_cast<uint32_t>(regularImportEntri… in ParseRegularImportEntries()
1169 .tag_ = panda::panda_file::LiteralTag::INTEGER, in ParseNamespaceImportEntries()
1188 ….tag_ = panda::panda_file::LiteralTag::INTEGER, .value_ = static_cast<uint32_t>(localExportEntries… in ParseLocalExportEntries()
1205 ….tag_ = panda::panda_file::LiteralTag::INTEGER, .value_ = static_cast<uint32_t>(indirectExportEntr… in ParseIndirectExportEntries()
[all …]
/arkcompiler/ets_frontend/ts2panda/src/expression/
DarrayLiteralExpression.ts145 elem = new Literal(LiteralTag.INTEGER, value);
DobjectLiteralExpression.ts128 valLiteral = new Literal(LiteralTag.INTEGER, value);
/arkcompiler/runtime_core/bytecode_optimizer/tests/
Dbcopt_type_adaption_test.cpp81 order_tag.value_ = static_cast<uint8_t>(panda::panda_file::LiteralTag::INTEGER); in AddTypeinfo()
85 order_val.tag_ = panda::panda_file::LiteralTag::INTEGER; in AddTypeinfo()
Dcommon.h742 … EXPECT_TRUE(prog->literalarray_table["0"].literals_[1].tag_ == panda_file::LiteralTag::INTEGER); in CheckConstArrayFilling()
750 EXPECT_TRUE(elem.second.literals_[1].tag_ == panda_file::LiteralTag::INTEGER); in CheckConstArrayFilling()
/arkcompiler/runtime_core/assembler/tests/
Dassembler_parser_test.cpp1943 panda::panda_file::LiteralTag::INTEGER);
1975 ….Value().literalarray_table.at("array").literals_[1].tag_, panda::panda_file::LiteralTag::INTEGER);
2012 panda::panda_file::LiteralTag::INTEGER);
2038 panda::panda_file::LiteralTag::INTEGER);
2064 panda::panda_file::LiteralTag::INTEGER);
2091 panda::panda_file::LiteralTag::INTEGER);
2121 panda::panda_file::LiteralTag::INTEGER);
2147 panda::panda_file::LiteralTag::INTEGER);
2176 panda::panda_file::LiteralTag::INTEGER);
2196 panda::panda_file::LiteralTag::INTEGER);
[all …]
/arkcompiler/runtime_core/bytecode_optimizer/
Dcodegen.cpp134 order_tag.value_ = static_cast<uint8_t>(LiteralTag::INTEGER); in AddOrderAndTypeInfoIndex()
138 order_lit.tag_ = LiteralTag::INTEGER; in AddOrderAndTypeInfoIndex()

12