Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:hour24_
(Results
1 - 11
of
11
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/base/utils/
H
A
D
time_util.cpp
113
timeOfNow.
hour24_
=
in GetTimeOfNow()
116
(timeOfNow.
hour24_
< TWELVE_HOUR_BASE) ? timeOfNow.
hour24_
: (timeOfNow.
hour24_
- TWELVE_HOUR_BASE);
in GetTimeOfNow()
140
return GreatOrEqual(timeOfNow.
hour24_
, DAY_TIME_LOWER_LIMIT) &&
in IsDayTime()
141
LessNotEqual(timeOfNow.
hour24_
, DAY_TIME_UPPER_LIMIT);
in IsDayTime()
168
timeOfZone.
hour24_
=
in GetTimeOfZone()
171
(timeOfZone.
hour24_
< TWELVE_HOUR_BASE) ? timeOfZone.
hour24_
: (timeOfZone.
hour24_
in GetTimeOfZone()
[all...]
H
A
D
time_util.h
54
int32_t
hour24_
= 0; // 24-hour clock
member
75
int32_t
hour24_
= 0; // 24-hour clock
member
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/time_picker/
H
A
D
timepicker_column_layout_algorithm.h
43
hour24_
= value;
in SetHour24()
48
return
hour24_
;
in GetHour24()
68
bool
hour24_
= SystemProperties::Is24HourClock();
member in OHOS::Ace::NG::TimePickerColumnLayoutAlgorithm
H
A
D
timepicker_row_pattern.h
214
isForceUpdate_ = value !=
hour24_
;
in SetHour24()
215
hour24_
= value;
in SetHour24()
221
CHECK_NULL_RETURN(timePickerLayoutProperty,
hour24_
);
in GetHour24()
222
return timePickerLayoutProperty->GetIsUseMilitaryTimeValue(
hour24_
);
in GetHour24()
632
bool
hour24_
= SystemProperties::Is24HourClock();
member in OHOS::Ace::NG::TimePickerRowPattern
H
A
D
timepicker_column_pattern.h
208
hour24_
= value;
in SetHour24()
213
return
hour24_
;
in GetHour24()
383
bool
hour24_
= SystemProperties::Is24HourClock();
member in OHOS::Ace::NG::TimePickerColumnPattern
/foundation/arkui/ace_engine/frameworks/core/components/picker/
H
A
D
picker_time_component.h
52
return
hour24_
;
in GetHour24()
56
hour24_
= value;
in SetHour24()
104
bool
hour24_
= !Localization::GetInstance()->IsAmPmHour();
member in OHOS::Ace::PickerTimeComponent
H
A
D
picker_time_component.cpp
79
if (
hour24_
) {
in HandleHourColumnBuilding()
124
if (
hour24_
) {
in OnDataLinking()
195
if (
hour24_
) {
in GetCurrentTime()
217
if (!
hour24_
) {
in OnColumnsCreating()
/foundation/arkui/ace_engine/frameworks/core/components/clock/
H
A
D
rosen_render_clock.cpp
169
accessibilityTimeCallback_(timeOfNow.
hour24_
, timeOfNow.minute_);
in PerformLayout()
174
auto hour = static_cast<int32_t>(timeOfNow.
hour24_
);
in PerformLayout()
H
A
D
render_clock.cpp
148
UpdateAccessibilityInfo(timeOfNow.
hour24_
, timeOfNow.minute_);
in Update()
/foundation/arkui/ace_engine/frameworks/core/components/text_clock/
H
A
D
render_text_clock.cpp
122
dateTime.hour = static_cast<uint32_t>(timeOfNow.
hour24_
);
in GetDateTime()
/foundation/arkui/ace_engine/test/unittest/base/
H
A
D
base_utils_test.cpp
221
ASSERT_EQ(theTimeOfNow.
hour24_
, localTimeHour24);
in HWTEST_F()
226
ASSERT_EQ(theTimeOfZone.
hour24_
, localTimeHour24);
in HWTEST_F()
260
ASSERT_EQ(theTimeOfNow.
hour24_
, localTimeHour24);
in HWTEST_F()
265
ASSERT_EQ(theTimeOfZone.
hour24_
, localTimeHour24);
in HWTEST_F()
Completed in 16 milliseconds