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:showHoliday
(Results
1 - 11
of
11
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/calendar/
H
A
D
calendar_model.h
30
virtual void SetShowHoliday(const bool
showHoliday
) = 0;
H
A
D
calendar_model_ng.h
38
void SetShowHoliday(const bool
showHoliday
) override;
H
A
D
calendar_model_ng.cpp
128
void CalendarModelNG::SetShowHoliday(const bool
showHoliday
)
in SetShowHoliday()
argument
140
calendarPaintProperty->UpdateShowHoliday(
showHoliday
);
in SetShowHoliday()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H
A
D
calendar_model_impl.h
27
void SetShowHoliday(const bool
showHoliday
) override;
H
A
D
calendar_model_impl.cpp
45
void CalendarModelImpl::SetShowHoliday(const bool
showHoliday
)
in SetShowHoliday()
argument
49
component->SetShowHoliday(
showHoliday
);
in SetShowHoliday()
/foundation/arkui/ace_engine/frameworks/core/components/calendar/
H
A
D
calendar_component.h
359
void SetShowHoliday(bool
showHoliday
)
in SetShowHoliday()
argument
361
showHoliday_ =
showHoliday
;
in SetShowHoliday()
H
A
D
render_calendar.cpp
396
if (showHoliday_ != attr.
showHoliday
|| showLunar_ != attr.showLunar) {
400
showHoliday_ = attr.
showHoliday
;
H
A
D
calendar_data_adapter.h
180
bool
showHoliday
= true;
member
H
A
D
calendar_element.cpp
235
attr.
showHoliday
= calendar->GetShowHoliday();
in UpdateAttr()
/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H
A
D
calendar_composed_element.cpp
27
{ "
showHoliday
", [](const CalendarComposedElement& inspector) { return inspector.GetShowHoliday(); } },
65
auto
showHoliday
= renderCalendar ? renderCalendar->GetShowHoliday() : true;
in GetShowHoliday()
local
66
return ConvertBoolToString(
showHoliday
);
in GetShowHoliday()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_calendar.cpp
72
JSClass<JSCalendar>::StaticMethod("
showHoliday
", &JSCalendar::SetShowHoliday, opt);
in JSBind()
247
bool
showHoliday
= true;
in SetShowHoliday()
local
249
showHoliday
= info[0]->ToBoolean();
in SetShowHoliday()
251
CalendarModel::GetInstance()->SetShowHoliday(
showHoliday
);
in SetShowHoliday()
Completed in 8 milliseconds