Home
last modified time | relevance | path

Searched refs:arrow (Results 1 – 16 of 16) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
DCollapsedAlarmViewHolder.kt60 arrow.setOnClickListener { _ -> in <lambda>()
159 arrow.visibility = View.VISIBLE in <lambda>()
160 arrow.setTranslationY(0f) in <lambda>()
162 arrow.jumpDrawablesToCurrentState() in <lambda>()
171 arrow.visibility = View.INVISIBLE in <lambda>()
211 val oldArrow: View = oldHolder.arrow in <lambda>()
213 val newArrowRect = Rect(0, 0, arrow.getWidth(), arrow.getHeight()) in <lambda>()
214 (newView as ViewGroup).offsetDescendantRectToMyCoords(arrow, newArrowRect) in <lambda>()
217 arrow.setTranslationY(arrowTranslationY) in <lambda>()
218 arrow.visibility = View.VISIBLE in <lambda>()
[all …]
DExpandedAlarmViewHolder.kt100 arrow.setOnClickListener { _ -> in <lambda>()
255 ObjectAnimator.ofFloat(arrow, TRANSLATION_Y, 0f)) in <lambda>()
278 arrow.setTranslationY(translationY) in <lambda>()
305 arrow.visibility = View.VISIBLE in <lambda>()
306 arrow.setTranslationY(0f) in <lambda>()
308 arrow.jumpDrawablesToCurrentState() in <lambda>()
315 arrow.visibility = View.INVISIBLE in <lambda>()
393 val oldArrow: View = oldHolder.arrow in <lambda>()
395 val newArrowRect = Rect(0, 0, arrow.getWidth(), arrow.getHeight()) in <lambda>()
396 (newView as ViewGroup).offsetDescendantRectToMyCoords(arrow, newArrowRect) in <lambda>()
[all …]
DAlarmItemViewHolder.kt41 val arrow: ImageView = itemView.findViewById(R.id.arrow) as ImageView in <lambda>() constant
/packages/apps/DocumentsUI/src/com/android/documentsui/sorting/
DHeaderCell.java80 ImageView arrow = (ImageView) findViewById(R.id.sort_arrow); in onBind() local
83 arrow.setVisibility(View.GONE); in onBind()
86 showArrow(arrow, R.animator.arrow_rotate_up, in onBind()
90 showArrow(arrow, R.animator.arrow_rotate_down, in onBind()
104 ImageView arrow, @AnimatorRes int anim, @StringRes int contentDescriptionId) { in showArrow() argument
105 arrow.setVisibility(View.VISIBLE); in showArrow()
108 arrow.setContentDescription(description); in showArrow()
112 animator.setTarget(arrow.getDrawable().mutate()); in showArrow()
/packages/inputmethods/LatinIME/dictionaries/
Den_emoji.combined.gz ... 146 shortcut=✎,f=14 147 word=arrow,f=105,not_a_word=true 148 shortcut ...
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...
Dda_wordlist.combined.gz1dictionary=main:da,locale=da,description=Dansk,date=1393228134, ...
Dpl_wordlist.combined.gz1dictionary=main:pl,locale=pl,description=Polski,date=1414726264, ...
Dfi_wordlist.combined.gz
Dfr_wordlist.combined.gz1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ...
/packages/apps/Car/libs/car-ui-lib/
DREADME.md32 …module and "Virtual Device" is selected in your Android Studio toolbar, then click the green arrow:
46 … car-ui-lib > java > com.android.car.ui (androidTest) and click the green arrow next to one of the…
/packages/apps/Car/DebuggingRestrictionController/server/functions/
D.eslintrc.json110 // Prefer using arrow functions for callbacks
/packages/apps/Launcher3/src/com/android/launcher3/views/
DArrowTipView.java115 mArrowView = findViewById(R.id.arrow); in init()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DExpandingEntryCardView.java307 mExpandCollapseArrow = (ImageView) mExpandCollapseButton.findViewById(R.id.arrow); in ExpandingEntryCardView()