Home
last modified time | relevance | path

Searched defs:ScalarValue (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/runtime_core/assembler/
Dannotation.h71 class ScalarValue; variable
493 ScalarValue(Type type, uint64_t value) : Value(type), value_(value) {} in ScalarValue() function
495 ScalarValue(Type type, float value) : Value(type), value_(value) {} in ScalarValue() function
497 ScalarValue(Type type, double value) : Value(type), value_(value) {} in ScalarValue() function
499 ScalarValue(Type type, std::string_view value) : Value(type), value_(std::string(value)) {} in ScalarValue() function
501 ScalarValue(Type type, pandasm::Type value) : Value(type), value_(std::move(value)) {} in ScalarValue() function
503 ScalarValue(Type type, AnnotationData &value) : Value(type), value_(value) {} in ScalarValue() function
/arkcompiler/ets_frontend/merge_abc/protos/
Dmeta.proto48 optional ScalarValue value = 3; field
Dannotation.proto25 message ScalarValue { message
/arkcompiler/runtime_core/libpandafile/
Dvalue.h28 ScalarValue(const File &panda_file, uint32_t value) : panda_file_(panda_file), value_(value) {} in ScalarValue() function
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
DtypeExtractorEmitter.cpp29 using ScalarValue = panda::pandasm::ScalarValue; typedef
/arkcompiler/runtime_core/bytecode_optimizer/tests/
Dbcopt_type_adaption_test.cpp24 using ScalarValue = panda::pandasm::ScalarValue; typedef