Searched refs:DEC (Results 1 - 10 of 10) sorted by relevance
/foundation/arkui/ace_engine_lite/frameworks/src/core/base/ |
H A D | time_util.cpp | 39 milliseconds = strtol(time, nullptr, DEC); in ParseToMilliseconds() 64 (int32_t)(strtol(buffer, nullptr, DEC)); in ParseToMilliseconds()
|
H A D | js_fwk_common.h | 92 constexpr uint8_t DEC = 10; member
|
H A D | js_fwk_common.cpp | 205 int16_t intValue = static_cast<int16_t>(strtol(strValue, nullptr, DEC)); in IntegerOf() 1059 long value = strtol(token, nullptr, DEC); in ParseRgbaColor()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | picker_view_component.cpp | 39 uint32_t year = (picker.GetSelectYear() == nullptr) ? 0 : strtol(picker.GetSelectYear(), nullptr, DEC); in OnDatePickerStoped() 40 uint32_t month = (picker.GetSelectMonth() == nullptr) ? 0 : strtol(picker.GetSelectMonth(), nullptr, DEC); in OnDatePickerStoped() 41 uint32_t day = (picker.GetSelectDay() == nullptr) ? 0 : strtol(picker.GetSelectDay(), nullptr, DEC); in OnDatePickerStoped() 72 uint32_t hour = (picker.GetSelectHour() == nullptr) ? 0 : strtol(picker.GetSelectHour(), nullptr, DEC); in OnTimePickerStoped() 73 uint32_t minute = (picker.GetSelectMinute() == nullptr) ? 0 : strtol(picker.GetSelectMinute(), nullptr, DEC); in OnTimePickerStoped()
|
H A D | image_animator_component.cpp | 271 imageAnimator_->SetRepeatTimes(strtol(iteration, nullptr, DEC)); in ParseToIteration()
|
H A D | component.cpp | 1099 isOpacity ? (strtod(value, nullptr) * ALPHA_MAX) : static_cast<int32_t>(strtol(value, nullptr, DEC)); in GetAnimatorValue() 1947 return strtol(style->GetStrValue(), nullptr, DEC); in GetStylePixelValue() 1962 return strtol(style->GetStrValue(), nullptr, DEC); in GetStyleDegValue()
|
H A D | chart_component.cpp | 975 uint16_t size = strtol(sizeVal, nullptr, DEC); in GetSizeVal()
|
H A D | canvas_component.cpp | 550 component->fontStyle_.fontSize = strtol(mallocSubFont, nullptr, DEC); in FontSetter()
|
/foundation/resourceschedule/device_standby/utils/policy/src/ |
H A D | standby_config_manager.cpp | 51 const int DEC = 10; member 268 int ret = (strtol(segB[i].c_str(), nullptr, DEC) < strtol(segA[i].c_str(), nullptr, DEC)) ? 1 : 0; in CompareVersion()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/animation/ |
H A D | transition_impl.cpp | 341 long value = strtol(iterations, nullptr, DEC); in GetNumIterations()
|
Completed in 18 milliseconds