Home
last modified time | relevance | path

Searched refs:flow (Results 1 – 6 of 6) sorted by relevance

/constraintlayout/constraintlayout-core/src/test/java/androidx/constraintlayout/core/
DFlowTest.java91 Flow flow = new Flow(); in testFlowBaseline() local
98 flow.setDebugName("Flow"); in testFlowBaseline()
100 flow.setVerticalAlign(Flow.VERTICAL_ALIGN_BASELINE); in testFlowBaseline()
101 flow.add(a); in testFlowBaseline()
102 flow.add(b); in testFlowBaseline()
105 flow.setHeight(30); in testFlowBaseline()
106 flow.setHorizontalDimensionBehaviour(ConstraintWidget.DimensionBehaviour.MATCH_CONSTRAINT); in testFlowBaseline()
107 flow.setVerticalDimensionBehaviour(ConstraintWidget.DimensionBehaviour.FIXED); in testFlowBaseline()
108 flow.connect(ConstraintAnchor.Type.LEFT, root, ConstraintAnchor.Type.LEFT); in testFlowBaseline()
109 flow.connect(ConstraintAnchor.Type.RIGHT, root, ConstraintAnchor.Type.RIGHT); in testFlowBaseline()
[all …]
/constraintlayout/constraintlayout-core/src/main/java/androidx/constraintlayout/core/state/
DConstraintSetParser.java1099 FlowReference flow = state.getFlow(flowName, isVertical); in parseFlowType() local
1134 flow.addFlowElement(id, weight, preMargin, postMargin); in parseFlowType()
1137 flow.add(chainElement.content()); in parseFlowType()
1143 flow.setOrientation(HORIZONTAL); in parseFlowType()
1145 flow.setOrientation(VERTICAL); in parseFlowType()
1150 flow.setWrapMode(State.Wrap.getValueByString(wrapValue)); in parseFlowType()
1154 flow.setVerticalGap(vGapValue); in parseFlowType()
1158 flow.setHorizontalGap(hGapValue); in parseFlowType()
1162 flow.setMaxElementsWrap(maxElementValue); in parseFlowType()
1190 flow.setPaddingLeft(Math.round(toPix(state, paddingLeft))); in parseFlowType()
[all …]
/constraintlayout/constraintlayout-compose/integration-tests/demos/src/main/java/androidx/constraintlayout/compose/demos/
DPuzzleDemo.kt80 val flow = in <lambda>() constant
86 constrain(flow) { in <lambda>()
99 val flow = in <lambda>() constant
105 constrain(flow) { in <lambda>()
/constraintlayout/constraintlayout-compose/src/androidInstrumentedTest/kotlin/androidx/constraintlayout/compose/
DFlowTest.kt247 val flow = in <lambda>() constant
256 constrain(flow) { in <lambda>()
332 val flow = in <lambda>() constant
341 constrain(flow) { in <lambda>()
/constraintlayout/constraintlayout-compose/src/androidMain/kotlin/androidx/constraintlayout/compose/carousel/
DCarouselSwipeable.kt59 import kotlinx.coroutines.flow.Flow in <lambda>()
60 import kotlinx.coroutines.flow.filter in <lambda>()
61 import kotlinx.coroutines.flow.take in <lambda>()
/constraintlayout/constraintlayout/src/main/java/androidx/constraintlayout/helper/widget/
DFlow.java208 androidx.constraintlayout.core.widgets.Flow flow = in loadParameters() local
211 flow.setOrientation(layoutParams.orientation); in loadParameters()