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:tempView
(Results
1 - 13
of
13
) sorted by relevance
/foundation/ability/ability_lite/frameworks/ability_lite/example/entry/src/main/cpp/
H
A
D
root_view_helper.cpp
26
UIView *
tempView
= view;
in DeleteViewChildren()
local
28
if (
tempView
->IsViewGroup()) {
in DeleteViewChildren()
29
DeleteViewChildren(dynamic_cast<UIViewGroup *>(
tempView
)->GetChildrenHead());
in DeleteViewChildren()
31
if (
tempView
->GetParent()) {
in DeleteViewChildren()
32
dynamic_cast<UIViewGroup *>(
tempView
->GetParent())->Remove(
tempView
);
in DeleteViewChildren()
34
delete
tempView
;
in DeleteViewChildren()
/foundation/arkui/ui_lite/frameworks/dock/
H
A
D
pointer_input_device.h
67
UIView*
tempView
= targetView;
in GetDraggableView()
local
68
while ((
tempView
!= nullptr) &&
tempView
->IsDragParentInstead()) {
in GetDraggableView()
69
tempView
=
tempView
->GetParent();
in GetDraggableView()
71
if ((
tempView
== nullptr) || !
tempView
->IsDraggable()) {
in GetDraggableView()
74
return
tempView
;
in GetDraggableView()
H
A
D
pointer_input_device.cpp
79
UIView*
tempView
= nullptr;
in DispatchPressEvent()
local
80
rootView->GetTargetView(curPos_, &
tempView
, &targetView_);
in DispatchPressEvent()
81
if (
tempView
!= touchableView_) {
in DispatchPressEvent()
164
UIView*
tempView
= nullptr;
in DispatchReleaseEvent()
local
165
rootView->GetTargetView(curPos_, &
tempView
, &targetView_);
in DispatchReleaseEvent()
166
if (
tempView
!= touchableView_) {
in DispatchReleaseEvent()
/foundation/arkui/ui_lite/test/framework/include/
H
A
D
ui_test.h
82
UIView*
tempView
= view;
in DeleteChildren()
local
84
if (
tempView
->IsViewGroup() && (
tempView
->GetViewType() != UI_DIGITAL_CLOCK)) {
in DeleteChildren()
85
DeleteChildren(static_cast<UIViewGroup*>(
tempView
)->GetChildrenHead());
in DeleteChildren()
87
if (
tempView
->GetParent()) {
in DeleteChildren()
88
static_cast<UIViewGroup*>(
tempView
->GetParent())->Remove(
tempView
);
in DeleteChildren()
90
delete
tempView
;
in DeleteChildren()
/foundation/arkui/ui_lite/test/framework/src/
H
A
D
test_case_list_adapter.cpp
59
UIView*
tempView
= rootView_->GetChildById(g_uiTestId);
variable
60
if (
tempView
!= nullptr) {
61
rootView_->Remove(
tempView
);
119
UIView*
tempView
= const_cast<UIView*>(uiTest_->GetTestView());
variable
120
if (
tempView
!= nullptr) {
121
tempView
->SetViewId(g_uiTestId);
122
tempView
->SetPosition(
tempView
->GetX(),
tempView
->GetY() + backBtn_->GetHeight());
123
rootView_->Add(
tempView
);
[all...]
/foundation/arkui/ui_lite/test/uitest/test_chart/
H
A
D
ui_test_chart_pillar.cpp
58
UIView*
tempView
= view;
in InnerDeleteChildren()
local
60
if (
tempView
->IsViewGroup()) {
in InnerDeleteChildren()
61
InnerDeleteChildren(static_cast<UIViewGroup*>(
tempView
)->GetChildrenHead());
in InnerDeleteChildren()
63
if (
tempView
->GetViewType() == UI_AXIS) {
in InnerDeleteChildren()
66
if (
tempView
->GetParent()) {
in InnerDeleteChildren()
67
static_cast<UIViewGroup*>(
tempView
->GetParent())->Remove(
tempView
);
in InnerDeleteChildren()
69
delete
tempView
;
in InnerDeleteChildren()
H
A
D
ui_test_chart_polyline.cpp
69
UIView*
tempView
= view;
in InnerDeleteChildren()
local
71
if (
tempView
->IsViewGroup()) {
in InnerDeleteChildren()
72
InnerDeleteChildren(static_cast<UIViewGroup*>(
tempView
)->GetChildrenHead());
in InnerDeleteChildren()
74
if (
tempView
->GetViewType() == UI_AXIS) {
in InnerDeleteChildren()
77
if (
tempView
->GetParent()) {
in InnerDeleteChildren()
78
static_cast<UIViewGroup*>(
tempView
->GetParent())->Remove(
tempView
);
in InnerDeleteChildren()
80
delete
tempView
;
in InnerDeleteChildren()
/foundation/arkui/ui_lite/test/uitest/test_input_event/
H
A
D
ui_test_input_event.cpp
49
UIView*
tempView
= view;
in DeleteChildrenAndListener()
local
51
if (
tempView
->IsViewGroup()) {
in DeleteChildrenAndListener()
52
DeleteChildrenAndListener(static_cast<UIViewGroup*>(
tempView
)->GetChildrenHead());
in DeleteChildrenAndListener()
54
if (
tempView
->GetParent()) {
in DeleteChildrenAndListener()
55
static_cast<UIViewGroup*>(
tempView
->GetParent())->Remove(
tempView
);
in DeleteChildrenAndListener()
58
if (
tempView
->GetOnClickListener()) {
in DeleteChildrenAndListener()
59
delete
tempView
->GetOnClickListener();
in DeleteChildrenAndListener()
61
if (
tempView
->GetOnDragListener()) {
in DeleteChildrenAndListener()
62
delete
tempView
in DeleteChildrenAndListener()
[all...]
/foundation/arkui/ui_lite/test/uitest/test_digital_clock/
H
A
D
ui_test_digital_clock.cpp
46
UIView*
tempView
= view;
in TearDown()
local
48
if (
tempView
->GetParent()) {
in TearDown()
49
static_cast<UIViewGroup*>(
tempView
->GetParent())->Remove(
tempView
);
in TearDown()
51
delete
tempView
;
in TearDown()
/foundation/arkui/ui_lite/test/unittest/events/
H
A
D
event_bubble_unit_test.cpp
218
UIView*
tempView
= view;
in DeleteChildren()
local
220
if (
tempView
->IsViewGroup()) {
in DeleteChildren()
221
DeleteChildren(static_cast<UIViewGroup*>(
tempView
)->GetChildrenHead());
in DeleteChildren()
223
if (
tempView
->GetParent()) {
in DeleteChildren()
224
static_cast<UIViewGroup*>(
tempView
->GetParent())->Remove(
tempView
);
in DeleteChildren()
226
delete
tempView
;
in DeleteChildren()
/foundation/arkui/ui_lite/test/unittest/dfx/
H
A
D
event_injector_unit_test.cpp
191
UIView*
tempView
= view;
in DeleteChildren()
local
193
if (
tempView
->IsViewGroup()) {
in DeleteChildren()
194
DeleteChildren(static_cast<UIViewGroup*>(
tempView
)->GetChildrenHead());
in DeleteChildren()
196
if (
tempView
->GetParent()) {
in DeleteChildren()
197
static_cast<UIViewGroup*>(
tempView
->GetParent())->Remove(
tempView
);
in DeleteChildren()
199
delete
tempView
;
in DeleteChildren()
/foundation/arkui/ui_lite/test/unittest/components/
H
A
D
ui_view_unit_test.cpp
185
UIView*
tempView
= new UIView();
in HWTEST_F()
local
186
if (
tempView
== nullptr) {
in HWTEST_F()
190
view_->SetNextSibling(
tempView
);
in HWTEST_F()
191
EXPECT_EQ(view_->GetNextSibling(),
tempView
);
in HWTEST_F()
193
delete
tempView
;
in HWTEST_F()
1214
UIView*
tempView
= new UIView();
in HWTEST_F()
local
1215
view->SetNextRenderSibling(
tempView
);
in HWTEST_F()
1216
EXPECT_EQ(view->GetNextRenderSibling(),
tempView
);
in HWTEST_F()
1219
viewGroup->SetNextRenderSibling(
tempView
);
in HWTEST_F()
1220
EXPECT_EQ(viewGroup->GetNextRenderSibling(),
tempView
);
in HWTEST_F()
[all...]
/foundation/arkui/ui_lite/frameworks/components/
H
A
D
root_view.cpp
784
UIView*
tempView
= parentView;
in Render()
local
786
if (!
tempView
->IsTransInvalid()) {
in Render()
Completed in 9 milliseconds