Searched defs:ScalarValue (Results 1 – 6 of 6) sorted by relevance
/arkcompiler/runtime_core/assembler/ |
D | annotation.h | 71 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/ |
D | meta.proto | 48 optional ScalarValue value = 3; field
|
D | annotation.proto | 25 message ScalarValue { message
|
/arkcompiler/runtime_core/libpandafile/ |
D | value.h | 28 ScalarValue(const File &panda_file, uint32_t value) : panda_file_(panda_file), value_(value) {} in ScalarValue() function
|
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/ |
D | typeExtractorEmitter.cpp | 29 using ScalarValue = panda::pandasm::ScalarValue; typedef
|
/arkcompiler/runtime_core/bytecode_optimizer/tests/ |
D | bcopt_type_adaption_test.cpp | 24 using ScalarValue = panda::pandasm::ScalarValue; typedef
|