Home
last modified time | relevance | path

Searched full:get_value (Results 1 – 17 of 17) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
Dir-returnStatement.ets17 function get_value(v: short): long {
23 assertEQ(v, get_value(v))
/arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/runner/options/
Dmacros.py90 prop_value = config.get_value(macro) if prop_value is None else prop_value
93 prop_value = config.get_value(macro3)
95 prop_value = config.get_value(macro2) if prop_value is None else prop_value
96 prop_value = config.get_value(cls.remove_parameters_and_minuses(macro2)) \
Doptions.py40 new_value = item.get_value(parts[2:])
56 def get_value(self, option: str | list[str]) -> Any | None: # type: ignore[explicit-any] member in IOptions
66 return self._parent.get_value(option)
112 return value.get_value(parts[1:])
Doptions_collections.py100 result = cast(str, self._parent.get_value(prop_name_underscored))
103 params = cast(dict, self._parent.get_value(self.__PARAMETERS))
Dlocal_env.py51 def get_value(self, key: str) -> str: member in LocalEnv
/arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/
Dfp.yaml168 call.short get_value, v0
175 .function f64 get_value(f64 a0) {
277 call.short get_value, v0
310 .function f64 get_value(f64 a0) {
440 call.short get_value, v0
509 .function f64 get_value(f64 a0) {
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dfp.yaml168 call.short get_value, v0
175 .function f64 get_value(f64 a0) {
277 call.short get_value, v0
310 .function f64 get_value(f64 a0) {
440 call.short get_value, v0
509 .function f64 get_value(f64 a0) {
/arkcompiler/runtime_core/taihe/test/ani_enum/author/src/
Denum.cpp41 return color.get_value(); in GetValueOfEnum()
60 return day.get_value(); in GetValueOfEnumWeekday()
/arkcompiler/runtime_core/taihe/compiler/taihe/semantics/
Dformat.py142 def get_value(self, obj: Any) -> str: member in PrettyFormatter
158 values_fmt = ", ".join(map(self.get_value, item.args))
236 self.out.writeln(f"{d.name} = {self.fmt.get_value(d.value)},")
/arkcompiler/ets_frontend/ets2panda/compiler/templates/
Dsignatures.h.erb190 <%= generate(:get_value, 'Get') %>
/arkcompiler/ets_runtime/ecmascript/
Djs_object-inl.h324 return JSTaggedValue(GET_VALUE(thread, this, offset)); in GetPropertyInlinedPropsWithSize()
348 return JSTaggedValue(GET_VALUE(thread, this, offset)); in GetPropertyInlinedProps()
Decma_macros.h60 #define GET_VALUE(thread, addr, offset) Barriers::GetTaggedValue((thread), (addr), (offset)) macro
/arkcompiler/runtime_core/static_core/irtoc/scripts/
Dinterpreter.irt269 macro(:get_value) do |vreg_ptr|
309 get_value(vreg_ptr(operand))
325 set_value(dst_reg_ptr, get_value(src_reg_ptr).i64)
923 val := get_value(v).i32
951 set_primitive(v1, send(op, get_value(v1).i32, v2).i32).i32
1023 set_primitive(v1, send(op, get_value(v1).i32, v2).i32)
2028 set_value(dst_ptr, get_value(src_ptr).i64)
/arkcompiler/runtime_core/static_core/plugins/ets/irtoc_scripts/
Dinterpreter_handlers.irt384 set_value(dst_ptr, get_value(src_ptr).i64)
/arkcompiler/ets_frontend/ets2panda/compiler/scripts/
Dsignatures.yaml1704 get_value:
/arkcompiler/ets_runtime/ecmascript/ic/
Dic_runtime_stub-inl.h424 …return JSTaggedValue(GET_VALUE(thread, receiver, static_cast<size_t>(index) * JSTaggedValue::Tagge… in LoadFromField()
/arkcompiler/runtime_core/taihe/compiler/taihe/codegen/cpp/
Dgen_common.py332 f"{as_owner} get_value() const {{",