Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/assembler/
Dannotation.h70 class ScalarValue; variable
516 ScalarValue(Type type, uint64_t value) : Value(type), value_(value) {} in ScalarValue() function
518 ScalarValue(Type type, float value) : Value(type), value_(value) {} in ScalarValue() function
520 ScalarValue(Type type, double value) : Value(type), value_(value) {} in ScalarValue() function
522 ScalarValue(Type type, std::string_view value) : Value(type), value_(std::string(value)) {} in ScalarValue() function
524 ScalarValue(Type type, std::string_view value, bool isStatic) in ScalarValue() function
529 ScalarValue(Type type, pandasm::Type value) : Value(type), value_(std::move(value)) {} in ScalarValue() function
531 ScalarValue(Type type, AnnotationData &value) : Value(type), value_(value) {} in ScalarValue() function
/arkcompiler/runtime_core/assembler/
Dannotation.h80 class ScalarValue; variable
508 ScalarValue(Type type, uint64_t value) : Value(type), value_(value) {} in ScalarValue() function
510 ScalarValue(Type type, float value) : Value(type), value_(value) {} in ScalarValue() function
512 ScalarValue(Type type, double value) : Value(type), value_(value) {} in ScalarValue() function
514ScalarValue(Type type, const std::string_view &value) : Value(type), value_(std::string(value)) {} in ScalarValue() function
516 ScalarValue(Type type, pandasm::Type value) : Value(type), value_(std::move(value)) {} in ScalarValue() function
518 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/runtime_core/static_core/libpandafile/
Dvalue.h28 ScalarValue(const File &pandaFile, uint32_t value) : pandaFile_(pandaFile), value_(value) {} in ScalarValue() function