Home
last modified time | relevance | path

Searched refs:SetJustifyContent (Results 1 – 25 of 34) sorted by relevance

12

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_flex.cpp63 void JSFlex::SetJustifyContent(int32_t value) in SetJustifyContent() function in OHOS::Ace::Framework::JSFlex
70 FlexModel::GetInstance()->SetJustifyContent(value); in SetJustifyContent()
72 FlexModel::GetInstance()->SetJustifyContent(static_cast<int32_t>(FlexAlign::FLEX_START)); in SetJustifyContent()
H A Djs_row.cpp93 void JSRow::SetJustifyContent(int32_t value) in SetJustifyContent() function in OHOS::Ace::Framework::JSRow
100 RowModel::GetInstance()->SetJustifyContent(static_cast<FlexAlign>(value)); in SetJustifyContent()
102 RowModel::GetInstance()->SetJustifyContent(FlexAlign::FLEX_START); in SetJustifyContent()
124 JSClass<JSRow>::StaticMethod("justifyContent", &JSRow::SetJustifyContent, opt); in JSBind()
H A Djs_column.cpp103 void JSColumn::SetJustifyContent(int32_t value) in SetJustifyContent() function in OHOS::Ace::Framework::JSColumn
110 ColumnModel::GetInstance()->SetJustifyContent(static_cast<FlexAlign>(value)); in SetJustifyContent()
112 ColumnModel::GetInstance()->SetJustifyContent(FlexAlign::FLEX_START); in SetJustifyContent()
133 JSClass<JSColumn>::StaticMethod("justifyContent", &JSColumn::SetJustifyContent, opt); in JSBind()
H A Djs_flex.h42 static void SetJustifyContent(int32_t value);
H A Djs_row.h29 static void SetJustifyContent(int32_t value);
H A Djs_column.h31 static void SetJustifyContent(int32_t value);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/linear_layout/
H A Dcolumn_model_ng.h29 void SetJustifyContent(FlexAlign flexAlign) override;
33 static void SetJustifyContent(FrameNode* frameNode, FlexAlign flexAlign);
H A Drow_model_ng.h29 void SetJustifyContent(FlexAlign flexAlign) override;
33 static void SetJustifyContent(FrameNode* frameNode, FlexAlign flexAlign);
H A Dcolumn_model_ng.cpp74 void ColumnModelNG::SetJustifyContent(FlexAlign flexAlign) in SetJustifyContent() function in OHOS::Ace::NG::ColumnModelNG
89 void ColumnModelNG::SetJustifyContent(FrameNode* frameNode, FlexAlign flexAlign) in SetJustifyContent() function in OHOS::Ace::NG::ColumnModelNG
H A Drow_model_ng.cpp70 void RowModelNG::SetJustifyContent(FlexAlign flexAlign) in SetJustifyContent() function in OHOS::Ace::NG::RowModelNG
85 void RowModelNG::SetJustifyContent(FrameNode* frameNode, FlexAlign flexAlign) in SetJustifyContent() function in OHOS::Ace::NG::RowModelNG
H A Dcolumn_model.h40 virtual void SetJustifyContent(FlexAlign flexAlign) = 0;
H A Drow_model.h40 virtual void SetJustifyContent(FlexAlign flexAlign) = 0;
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Drow_model_impl.cpp49 void RowModelImpl::SetJustifyContent(FlexAlign flexAlign) in SetJustifyContent() function in OHOS::Ace::Framework::RowModelImpl
51 FlexModel::GetInstance()->SetJustifyContent(static_cast<int32_t>(flexAlign)); in SetJustifyContent()
H A Dcolumn_model_impl.cpp53 void ColumnModelImpl::SetJustifyContent(FlexAlign flexAlign) in SetJustifyContent() function in OHOS::Ace::Framework::ColumnModelImpl
55 FlexModel::GetInstance()->SetJustifyContent(static_cast<int32_t>(flexAlign)); in SetJustifyContent()
H A Dcolumn_model_impl.h28 void SetJustifyContent(FlexAlign flexAlign) override;
H A Drow_model_impl.h28 void SetJustifyContent(FlexAlign flexAlign) override;
H A Dflex_model_impl.h47 void SetJustifyContent(int32_t value) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Drow_modifier.cpp30 RowModelNG::SetJustifyContent(frameNode, static_cast<FlexAlign>(flexAlign)); in SetRowJustifyContent()
37 RowModelNG::SetJustifyContent(frameNode, DEFAULT_ROW_JUSTIFY_CONTENT); in ResetRowJustifyContent()
H A Dcolumn_modifier.cpp32 ColumnModelNG::SetJustifyContent(frameNode, static_cast<FlexAlign>(flexAlign)); in SetColumnJustifyContent()
39 ColumnModelNG::SetJustifyContent(frameNode, DEFAULT_JUSTIFY_CONTENT); in ResetColumnJustifyContent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_column_bridge.h24 static ArkUINativeModuleValue SetJustifyContent(ArkUIRuntimeCallInfo* runtimeCallInfo);
H A Darkts_native_row_bridge.h24 static ArkUINativeModuleValue SetJustifyContent(ArkUIRuntimeCallInfo* runtimeCallInfo);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_column_ffi.cpp66 ColumnModel::GetInstance()->SetJustifyContent(FLEX_ALIGNS[justifyContent]); in FfiOHOSAceFrameworkColumnSetJustifyContent()
H A Dcj_row_ffi.cpp68 RowModel::GetInstance()->SetJustifyContent(FLEX_ALIGNS[justifyContent]); in FfiOHOSAceFrameworkRowSetJustifyContent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/flex/
H A Dflex_model.h71 virtual void SetJustifyContent(int32_t value) = 0;
H A Dflex_model_ng.h49 void SetJustifyContent(int32_t value) override;

12