Searched refs:defaultValue (Results 1 - 11 of 11) sorted by relevance
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_json.cpp | 287 bool PtJson::GetBool(bool defaultValue) const in GetBool() 290 return defaultValue; in GetBool() 296 int32_t PtJson::GetInt(int32_t defaultValue) const in GetInt() 299 return defaultValue; in GetInt() 305 int64_t PtJson::GetInt64(int64_t defaultValue) const in GetInt64() 308 return defaultValue; in GetInt64() 314 uint32_t PtJson::GetUInt(uint32_t defaultValue) const in GetUInt() 317 return defaultValue; in GetUInt() 323 uint64_t PtJson::GetUInt64(uint64_t defaultValue) const in GetUInt64() 326 return defaultValue; in GetUInt64() [all...] |
H A D | pt_json.h | 87 bool GetBool(bool defaultValue = false) const; 88 int32_t GetInt(int32_t defaultValue = 0) const; 89 int64_t GetInt64(int64_t defaultValue = 0) const; 90 uint32_t GetUInt(uint32_t defaultValue = 0) const; 91 uint64_t GetUInt64(uint64_t defaultValue = 0) const; 92 double GetDouble(double defaultValue = 0.0) const;
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
H A D | cl_option.h | 261 if (defaultValue.isSet) { 262 value = defaultValue.defaultValue; 335 T defaultValue; member 337 } defaultValue; member in maplecl::Option 368 defaultValue.isSet = true; in SetDefaultAttribute() 369 defaultValue.defaultValue = value; in SetDefaultAttribute() 464 if (this->defaultValue.isSet) { 465 SetValue(this->defaultValue [all...] |
/arkcompiler/ets_runtime/ecmascript/ |
H A D | tagged_hash_table.h | 390 JSTaggedValue defaultValue(JSTaggedValue::Hole()); in RemoveElement() 391 this->SetKey(thread, entry, defaultValue); in RemoveElement() 392 this->SetValue(thread, entry, defaultValue); in RemoveElement()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | native_inline_lowering.h | 73 double defaultValue, bool skipThis);
|
H A D | native_inline_lowering.cpp | 834 const int32_t defaultValue = 32; in TryInlineMathClz32Builtin() local 835 acc_.ReplaceHirAndDeleteIfException(gate, builder_.GetStateDepend(), builder_.Int32(defaultValue)); in TryInlineMathClz32Builtin() 927 const GateMetaData* op, double defaultValue, bool skipThis) in TryInlineMathMinMaxBuiltin() 939 acc_.ReplaceHirAndDeleteIfException(gate, builder_.GetStateDepend(), builder_.Double(defaultValue)); in TryInlineMathMinMaxBuiltin() 926 TryInlineMathMinMaxBuiltin(GateRef gate, size_t argc, BuiltinsStubCSigns::ID id, const GateMetaData* op, double defaultValue, bool skipThis) TryInlineMathMinMaxBuiltin() argument
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_math.cpp | 240 constexpr int defaultValue = 32; in Clz32() local 249 return GetTaggedInt(defaultValue); in Clz32()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_typedarray_stub_builder.cpp | 1050 Label defaultValue(env);
in ReduceRight() 1051 BRANCH(numArgsLessThanTwo, &defaultValue, &updateAccumulator);
in ReduceRight() 1057 Bind(&defaultValue);
in ReduceRight() 1158 Label defaultValue(env);
in Reduce() 1160 BRANCH(numArgsLessThanTwo, &defaultValue, &updateAccumulator);
in Reduce() 1166 Bind(&defaultValue);
in Reduce()
|
/arkcompiler/runtime_core/static_core/compiler/tests/codegen/ |
H A D | codegen_test_1.cpp | 163 auto defaultValue = CutValue<T>(0U, TYPE); in CheckStoreArray() local 165 data = defaultValue; in CheckStoreArray() 182 EXPECT_EQ(arrayData[i], defaultValue); in CheckStoreArray()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | escape.cpp | 75 StateOwner GetFieldOrDefault(Field field, StateOwner defaultValue) const in GetFieldOrDefault() 79 return defaultValue; in GetFieldOrDefault()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | 1988 defaultValue: e.string, [all...] |
Completed in 49 milliseconds