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:directionVal
(Results
1 - 6
of
6
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H
A
D
js_relative_container.cpp
80
JSRef<JSVal>
directionVal
= barrierInfoObj->GetProperty("direction");
in ParseBarrierInfo()
local
88
if (
directionVal
->IsNumber()) {
in ParseBarrierInfo()
89
auto direction =
directionVal
->ToNumber<int32_t>();
in ParseBarrierInfo()
143
JSRef<JSVal>
directionVal
= guildLineInfoObj->GetProperty("direction");
in ParseGuideline()
local
150
if (
directionVal
->IsNumber()) {
in ParseGuideline()
151
auto direction =
directionVal
->ToNumber<int32_t>();
in ParseGuideline()
H
A
D
js_flex_impl.cpp
63
JSRef<JSVal>
directionVal
= obj->GetProperty("direction");
in CreateFlexComponent()
local
67
if (
directionVal
->IsNumber()) {
in CreateFlexComponent()
68
auto direction =
directionVal
->ToNumber<int32_t>();
in CreateFlexComponent()
134
JSRef<JSVal>
directionVal
= obj->GetProperty("direction");
in WrapComponent()
local
139
if (
directionVal
->IsNumber()) {
in WrapComponent()
140
auto direction =
directionVal
->ToNumber<int32_t>();
in WrapComponent()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H
A
D
arkts_native_relative_container_bridge.cpp
96
Local<JSValueRef>
directionVal
= panda::ArrayRef::GetValueAt(vm, directionsArr, i);
in SetGuideLine()
local
97
if (
directionVal
->IsNumber()) {
in SetGuideLine()
98
info.direction =
directionVal
->Int32Value(vm);
in SetGuideLine()
154
Local<JSValueRef>
directionVal
= panda::ArrayRef::GetValueAt(vm, directionsArr, i);
in SetBarrier()
local
160
if (
directionVal
->IsNumber()) {
in SetBarrier()
161
info.direction =
directionVal
->Int32Value(vm);
in SetBarrier()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid_row/
H
A
D
grid_row_layout_algorithm.cpp
279
auto
directionVal
= layoutProperty->GetDirectionValue();
in Layout()
local
294
if (((
directionVal
== V2::GridRowDirection::RowReverse) && (textDirection == TextDirection::LTR)) ||
in Layout()
295
((
directionVal
== V2::GridRowDirection::Row) && (textDirection == TextDirection::RTL))) {
in Layout()
/foundation/arkui/ace_engine/test/unittest/core/pattern/grid_row/old_cases/
H
A
D
grid_row_test_ng.cpp
1604
auto
directionVal
= V2::GridRowDirection::Row;
in HWTEST_F()
local
1606
gridRowModelNG.Create(colVal, gutterVal, breakpointsVal,
directionVal
);
in HWTEST_F()
/foundation/arkui/ace_engine/test/unittest/interfaces/
H
A
D
native_node_test.cpp
628
auto
directionVal
= nodeAPI->getAttribute(rootNode, NODE_DIRECTION);
in HWTEST_F()
local
629
EXPECT_EQ(
directionVal
->value[0].i32, static_cast<int32_t>(ARKUI_DIRECTION_LTR));
in HWTEST_F()
Completed in 14 milliseconds