Home
last modified time | relevance | path

Searched refs:getBoolean (Results 1 – 25 of 28) sorted by relevance

12

/constraintlayout/constraintlayout-compose/src/androidInstrumentedTest/kotlin/androidx/constraintlayout/compose/
DDesignInfoProviderTest.kt87 assertEquals(1, viewInfoList.filter { it.getBoolean("isRoot") }.size) in withConstraintSet()
88 val helpers = viewInfoList.filter { it.getBoolean("isHelper") } in withConstraintSet()
108 assertEquals(1, viewInfoList.filter { it.getBoolean("isRoot") }.size) in withDsl()
109 val helpers = viewInfoList.filter { it.getBoolean("isHelper") } in withDsl()
/constraintlayout/constraintlayout-core/src/main/java/androidx/constraintlayout/core/parser/
DCLContainer.java198 public boolean getBoolean(String name) throws CLParsingException { in getBoolean() method in CLContainer
201 return ((CLToken) element).getBoolean(); in getBoolean()
326 public boolean getBoolean(int index) throws CLParsingException { in getBoolean() method in CLContainer
329 return ((CLToken) element).getBoolean(); in getBoolean()
DCLToken.java23 public boolean getBoolean() throws CLParsingException { in getBoolean() method in CLToken
/constraintlayout/constraintlayout/src/main/java/androidx/constraintlayout/motion/widget/
DMotionHelper.java68 mUseOnShow = a.getBoolean(attr, mUseOnShow); in init()
70 mUseOnHide = a.getBoolean(attr, mUseOnHide); in init()
DKeyTrigger.java458 c.mPostLayout = a.getBoolean(attr, c.mPostLayout); in read()
DViewTransition.java288 mDisabled = a.getBoolean(attr, mDisabled);
DTouchResponse.java214 mMoveWhenScrollAtTop = a.getBoolean(attr, mMoveWhenScrollAtTop); in fill()
DMotionScene.java1160 mDisable = a.getBoolean(attr, mDisable); in fill()
DMotionLayout.java4026 apply = a.getBoolean(attr, apply);
4029 mDebugPath = a.getBoolean(attr, false) ? DEBUG_SHOW_PATH : 0;
/constraintlayout/constraintlayout/src/main/java/androidx/constraintlayout/utils/widget/
DMockView.java78 mDrawDiagonals = a.getBoolean(attr, mDrawDiagonals); in init()
86 mDrawLabel = a.getBoolean(attr, mDrawLabel); in init()
DImageFilterButton.java143 setOverlay(a.getBoolean(attr, mOverlay)); in init()
DImageFilterView.java562 setOverlay(a.getBoolean(attr, mOverlay)); in init()
/constraintlayout/constraintlayout/src/main/java/androidx/constraintlayout/widget/
DReactiveGuide.java74 mAnimateChange = a.getBoolean(attr, mAnimateChange); in init()
80 mApplyToAllConstraintSets = a.getBoolean(attr, mApplyToAllConstraintSets); in init()
DBarrier.java203 mBarrier.setAllowsGoneWidget(a.getBoolean(attr, true)); in init()
DConstraintSet.java1596 guidelineUseRtl = a.getBoolean(attr, guidelineUseRtl); in fillFromAttributeList()
1723 constrainedWidth = a.getBoolean(attr, constrainedWidth); in fillFromAttributeList()
1726 constrainedHeight = a.getBoolean(attr, constrainedHeight); in fillFromAttributeList()
1746 mBarrierAllowsGoneWidgets = a.getBoolean(attr, mBarrierAllowsGoneWidgets); in fillFromAttributeList()
4738 delta.add(GUIDELINE_USE_RTL, a.getBoolean(attr, c.layout.guidelineUseRtl)); in populateOverride()
4840 delta.add(CONSTRAINED_WIDTH, a.getBoolean(attr, c.layout.constrainedWidth)); in populateOverride()
4843 delta.add(CONSTRAINED_HEIGHT, a.getBoolean(attr, c.layout.constrainedHeight)); in populateOverride()
5033 delta.add(BARRIER_ALLOWS_GONE_WIDGETS, a.getBoolean(attr, in populateOverride()
5551 c.layout.constrainedWidth = a.getBoolean(attr, c.layout.constrainedWidth); in populateConstraint()
5554 c.layout.constrainedHeight = a.getBoolean(attr, c.layout.constrainedHeight); in populateConstraint()
[all …]
DConstraintAttribute.java512 value = a.getBoolean(attr, false); in parse()
DConstraintLayout.java3332 guidelineUseRtl = a.getBoolean(attr, guidelineUseRtl); in LayoutParams()
3477 constrainedWidth = a.getBoolean(attr, constrainedWidth); in LayoutParams()
3481 constrainedHeight = a.getBoolean(attr, constrainedHeight); in LayoutParams()
/constraintlayout/constraintlayout-core/src/test/java/androidx/constraintlayout/core/parser/
DCLParserBenchmarkTest.java93 assertEquals(true, parsedContent.getBoolean("isAlive")); in parseAndeCheck()
DCLParserTest.java60 assertEquals(false, parsedContent.getBoolean("value")); in testValue()
/constraintlayout/constraintlayout-core/src/main/java/androidx/constraintlayout/core/motion/parse/
DKeyParser.java68 bundle.add(id, parsedContent.getBoolean(i)); in parse()
/constraintlayout/constraintlayout/src/main/java/androidx/constraintlayout/helper/widget/
DGrid.java229 mValidateInputs = a.getBoolean(attr, false); in init()
232 mUseRtl = a.getBoolean(attr, false); in init()
DMotionEffect.java107 mMotionEffectStrictMove = a.getBoolean(attr, mMotionEffectStrictMove); in init()
DCarousel.java127 mInfiniteCarousel = a.getBoolean(attr, mInfiniteCarousel); in init()
/constraintlayout/constraintlayout-core/api/
D1.1.0-beta01.txt1884 …method public boolean getBoolean(int) throws androidx.constraintlayout.core.parser.CLParsingExcept…
1885 …method public boolean getBoolean(String!) throws androidx.constraintlayout.core.parser.CLParsingEx…
1986 …method public boolean getBoolean() throws androidx.constraintlayout.core.parser.CLParsingException;
Drestricted_1.1.0-beta01.txt1884 …method public boolean getBoolean(int) throws androidx.constraintlayout.core.parser.CLParsingExcept…
1885 …method public boolean getBoolean(String!) throws androidx.constraintlayout.core.parser.CLParsingEx…
1986 …method public boolean getBoolean() throws androidx.constraintlayout.core.parser.CLParsingException;

12