Home
last modified time | relevance | path

Searched full:longvalue (Results 1 – 25 of 29) sorted by relevance

12

/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DLong.sts46 this.value = value.longValue();
122 public override longValue(): long {
240 return Long.valueOf((this.value + other.longValue()) as long)
251 return Long.valueOf((this.value - other.longValue()) as long)
262 return Long.valueOf((this.value * other.longValue()) as long)
273 return Long.valueOf((this.value / other.longValue()) as long)
284 return this.value < other.longValue();
295 return this.value <= other.longValue();
306 return this.value > other.longValue();
317 return this.value >= other.longValue();
DValue.sts160 return new LongValue(LongType.VAL, v)
194 return new LongValue(LongType.REF, v)
228 return new LongValue(LongType.REF, o as Long)
364 return new LongValue(ft as LongType, ValueAPIGetFieldLong(this.data, i))
392 return new LongValue(ft as LongType, ValueAPIGetFieldByNameLong(this.data, name))
434 } else if (ft instanceof LongType && val instanceof LongValue) {
435 ValueAPISetFieldByNameLong(this.data, name, (val as LongValue).getValueData())
490 } else if (ft instanceof LongType && val instanceof LongValue) {
491 ValueAPISetFieldLong(this.data, i, (val as LongValue).getValueData())
589 return new LongValue(et as LongType, ValueAPIGetElementLong(this.data, i))
[all …]
DNumeric.sts49 public abstract longValue(): long;
DShort.sts122 public override longValue(): long {
DInt.sts122 public override longValue(): long {
DByte.sts122 public override longValue(): long {
DFloat.sts169 public override longValue(): long {
/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/js/
DBasicDataTypesTest.js20 const longValue = 1234567890123456789n; constant
36 console.log('Long value: ' + longValue);
/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/ts/
DBasicDataTypesTest.ts20 const longValue: bigint = 1234567890123456789n; constant
36 console.log('Long value: ' + longValue);
/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/java_cases/
DBasicDataTypesTest.java27 long longValue = 1234567890123456789L; in main() local
43 System.out.println("Long value: " + longValue); in main()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/
Dets_to_string_cache_test.cpp304 auto longValue = (static_cast<uint64_t>(dis(engine)) << BITS_PER_UINT32) | dis(engine); in TEST_F() local
305 auto value = bit_cast<double>(longValue); in TEST_F()
323 << "long: " << std::hex << longValue << "\n" in TEST_F()
341 auto longValue = (static_cast<uint64_t>(dis(engine)) << BITS_PER_UINT32) | dis(engine); in TEST_F() local
342 auto value = bit_cast<double>(longValue); in TEST_F()
359 << "long: " << std::hex << longValue << "\n" in TEST_F()
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DRecordKeyTypeCheck.sts43 public override longValue(): long {
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_date_time_format_second_test.cpp269 JSHandle<JSTaggedValue> longValue(factory->NewFromASCII("long")); in JSDateTimeFormatForObj_002() local
290 JSObject::SetProperty(thread, optionsObj, key, longValue); in JSDateTimeFormatForObj_002()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/std/core/
Dlist.std_core_byte_instance.yaml71 method_name: longValue,
Dlist.std_core_int_instance.yaml71 method_name: longValue,
Dlist.std_core_short_instance.yaml71 method_name: longValue,
Dlist.std_core_float_instance.yaml71 method_name: longValue,
Dlist.std_core_long_instance.yaml77 method_name: longValue,
Dlist.std_core_double_instance.yaml75 method_name: longValue,
/arkcompiler/runtime_core/docs/
Dfile_format.md649 #### LongValue subsubsection
1020 | `Long` | `0x01` | The corresponding argument has [LongValue](#longvalue) enc…
/arkcompiler/runtime_core/static_core/docs/
Dfile_format.md651 #### LongValue subsubsection
1022 | `Long` | `0x01` | The corresponding argument has [LongValue](#longvalue) enc…
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dinitobj.short.yaml671 .function i64 panda.Long.longValue(panda.Long a0) <external>
674 initobj.short panda.Long.longValue
680 .function i64 panda.Long.longValue(panda.Long a0) <external>
686 initobj.short panda.Long.longValue, v1
Dinitobj.yaml738 .function i64 panda.Long.longValue(panda.Long a0) <external>
741 initobj panda.Long.longValue
747 .function i64 panda.Long.longValue(panda.Long a0) <external>
753 initobj panda.Long.longValue, v1
Dstarr.obj.yaml1655 .function i64 panda.Long.longValue(panda.Long a0) <external>
1664 call.virt.short panda.Long.longValue, a1
Dinitobj.range.yaml836 .function i64 panda.Long.longValue(panda.Long a0) <external>
840 initobj.range panda.Long.longValue, v0
846 .function i64 panda.Long.longValue(panda.Long a0) <external>
852 initobj.range panda.Long.longValue, v1

12