Home
last modified time | relevance | path

Searched refs:type (Results 1 – 20 of 20) sorted by relevance

/appcompat/appcompat/src/main/java/androidx/appcompat/widget/
DContentFrameLayout.java107 if (tvw != null && tvw.type != TypedValue.TYPE_NULL) { in onMeasure()
109 if (tvw.type == TypedValue.TYPE_DIMENSION) { in onMeasure()
111 } else if (tvw.type == TypedValue.TYPE_FRACTION) { in onMeasure()
126 if (tvh != null && tvh.type != TypedValue.TYPE_NULL) { in onMeasure()
128 if (tvh.type == TypedValue.TYPE_DIMENSION) { in onMeasure()
130 } else if (tvh.type == TypedValue.TYPE_FRACTION) { in onMeasure()
151 if (tv != null && tv.type != TypedValue.TYPE_NULL) { in onMeasure()
153 if (tv.type == TypedValue.TYPE_DIMENSION) { in onMeasure()
155 } else if (tv.type == TypedValue.TYPE_FRACTION) { in onMeasure()
DActionBarOverlayLayout.java593 int dyUnconsumed, int type, int[] consumed) { in onNestedScroll() argument
594 onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, type); in onNestedScroll()
600 public boolean onStartNestedScroll(View child, View target, int axes, int type) { in onStartNestedScroll() argument
601 return type == ViewCompat.TYPE_TOUCH && onStartNestedScroll(child, target, axes); in onStartNestedScroll()
605 public void onNestedScrollAccepted(View child, View target, int axes, int type) { in onNestedScrollAccepted() argument
606 if (type == ViewCompat.TYPE_TOUCH) { in onNestedScrollAccepted()
612 public void onStopNestedScroll(View target, int type) { in onStopNestedScroll() argument
613 if (type == ViewCompat.TYPE_TOUCH) { in onStopNestedScroll()
620 int dyUnconsumed, int type) { in onNestedScroll() argument
621 if (type == ViewCompat.TYPE_TOUCH) { in onNestedScroll()
[all …]
DActivityChooserModel.java978 int type = XmlPullParser.START_DOCUMENT; in readHistoricalDataImpl() local
979 while (type != XmlPullParser.END_DOCUMENT && type != XmlPullParser.START_TAG) { in readHistoricalDataImpl()
980 type = parser.next(); in readHistoricalDataImpl()
992 type = parser.next(); in readHistoricalDataImpl()
993 if (type == XmlPullParser.END_DOCUMENT) { in readHistoricalDataImpl()
996 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) { in readHistoricalDataImpl()
DActionBarContainer.java255 android.view.ActionMode.Callback callback, int type) { in startActionModeForChild() argument
256 if (type != android.view.ActionMode.TYPE_PRIMARY) { in startActionModeForChild()
257 return super.startActionModeForChild(child, callback, type); in startActionModeForChild()
DTooltipPopup.java67 mLayoutParams.type = WindowManager.LayoutParams.TYPE_APPLICATION_SUB_PANEL; in TooltipPopup()
191 && (((WindowManager.LayoutParams) lp).type in getAppRootView()
DTintTypedArray.java234 return mTypedValue.type; in getType()
DAppCompatTextHelper.java320 if (peekValue != null && peekValue.type == TypedValue.TYPE_DIMENSION) { in loadFromAttributes()
/appcompat/appcompat-resources/src/main/java/androidx/appcompat/graphics/drawable/
DAnimatedStateListDrawableCompat.java141 int type; in create() local
143 while ((type = parser.next()) != XmlPullParser.START_TAG in create()
144 && type != XmlPullParser.END_DOCUMENT) { in create()
147 if (type != XmlPullParser.START_TAG) { in create()
476 int type; in inflateChildElements() local
479 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT in inflateChildElements()
481 || type != XmlPullParser.END_TAG)) { in inflateChildElements()
482 if (type != XmlPullParser.START_TAG) { in inflateChildElements()
522 int type; in parseTransition() local
524 while ((type = parser.next()) == XmlPullParser.TEXT) { in parseTransition()
[all …]
DStateListDrawableCompat.java178 int type; in inflateChildElements() local
180 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT in inflateChildElements()
182 || type != XmlPullParser.END_TAG)) { in inflateChildElements()
183 if (type != XmlPullParser.START_TAG) { in inflateChildElements()
205 while ((type = parser.next()) == XmlPullParser.TEXT) { in inflateChildElements()
208 if (type != XmlPullParser.START_TAG) { in inflateChildElements()
/appcompat/appcompat-lint/src/main/kotlin/androidx/appcompat/widget/
DSwitchUsageCodeDetector.kt57 node.uastSuperTypes.forEach { checkAndReport(it.type, it) } in getApplicableUastTypes()
59 override fun visitVariable(node: UVariable) = checkAndReport(node.type, node) in getApplicableUastTypes()
61 private fun checkAndReport(type: PsiType, node: UElement) { in getApplicableUastTypes()
62 if (context.evaluator.typeMatches(type, "android.widget.Switch")) { in getApplicableUastTypes()
/appcompat/appcompat/src/main/java/androidx/appcompat/view/
DWindowCallbackWrapper.java159 public ActionMode onWindowStartingActionMode(ActionMode.Callback callback, int type) { in onWindowStartingActionMode() argument
160 return Api23Impl.onWindowStartingActionMode(mWrapped, callback, type); in onWindowStartingActionMode()
/appcompat/appcompat-resources/src/main/java/androidx/appcompat/widget/
DResourceManagerInternal.java271 int type; in loadDrawableFromDelegates() local
272 while ((type = parser.next()) != XmlPullParser.START_TAG && in loadDrawableFromDelegates()
273 type != XmlPullParser.END_DOCUMENT) { in loadDrawableFromDelegates()
276 if (type != XmlPullParser.START_TAG) { in loadDrawableFromDelegates()
/appcompat/appcompat/src/androidTest/java/androidx/appcompat/app/
DLayoutInflaterFactoryTestCase.java239 assertTrue(colorAccentValue.type >= TypedValue.TYPE_FIRST_COLOR_INT in assertThemedContext()
240 && colorAccentValue.type <= TypedValue.TYPE_LAST_COLOR_INT); in assertThemedContext()
/appcompat/appcompat-benchmark/
Dbuild.gradle41 type = SoftwareType.BENCHMARK
/appcompat/appcompat-lint/
Dbuild.gradle50 type = SoftwareType.LINT
/appcompat/appcompat/src/androidTest/java/androidx/appcompat/widget/
DAppCompatEditTextTest.java95 public void setText(CharSequence text, BufferType type) { in setText() argument
97 super.setText(text, type); in setText()
/appcompat/appcompat-resources/
Dbuild.gradle69 type = SoftwareType.PUBLISHED_LIBRARY
/appcompat/appcompat/src/main/java/androidx/appcompat/view/menu/
DMenuDialogHelper.java85 lp.type = WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG; in show()
/appcompat/appcompat/
Dbuild.gradle110 type = SoftwareType.PUBLISHED_LIBRARY
/appcompat/appcompat/src/main/java/androidx/appcompat/app/
DAppCompatDelegateImpl.java3491 android.view.ActionMode.Callback callback, int type) {
3493 switch (type) {
3500 return super.onWindowStartingActionMode(callback, type);