Home
last modified time | relevance | path

Searched refs:vh (Results 1 – 23 of 23) sorted by relevance

/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
DTimeZoneResultAdapter.java70 ViewHolder vh = new ViewHolder(); in setupViewHolder() local
71 vh.timeZone = (TextView) v.findViewById(R.id.time_zone); in setupViewHolder()
72 vh.timeOffset = (TextView) v.findViewById(R.id.time_offset); in setupViewHolder()
73 vh.location = (TextView) v.findViewById(R.id.location); in setupViewHolder()
74 v.setTag(vh); in setupViewHolder()
281 ViewHolder vh = (ViewHolder) v.getTag(); in getView() local
286 vh.timeZone.setText(tzi.mDisplayName); in getView()
288 vh.timeOffset.setText(tzi.getGmtDisplayName(mContext)); in getView()
292 vh.location.setVisibility(View.INVISIBLE); in getView()
294 vh.location.setText(location); in getView()
[all …]
DTimeZoneFilterTypeAdapter.java56 ViewHolder vh = new ViewHolder(); in setupViewHolder() local
57 vh.strTextView = (TextView) v.findViewById(R.id.value); in setupViewHolder()
58 v.setTag(vh); in setupViewHolder()
121 ViewHolder vh = (ViewHolder) v.getTag(); in getView() local
129 vh.filterType = filter.type; in getView()
130 vh.str = filter.constraint; in getView()
131 vh.time = filter.time; in getView()
132 vh.strTextView.setText(filter.constraint); in getView()
151 ViewHolder vh = (ViewHolder) v.getTag(); in onClick() local
152 mListener.onSetFilter(vh.filterType, vh.str, vh.time); in onClick()
/frameworks/base/core/java/com/android/internal/widget/
DViewInfoStore.java88 ItemHolderInfo popFromPreLayout(ViewHolder vh) { in popFromPreLayout() argument
89 return popFromLayoutStep(vh, FLAG_PRE); in popFromPreLayout()
99 ItemHolderInfo popFromPostLayout(ViewHolder vh) { in popFromPostLayout() argument
100 return popFromLayoutStep(vh, FLAG_POST); in popFromPostLayout()
103 private ItemHolderInfo popFromLayoutStep(ViewHolder vh, int flag) { in popFromLayoutStep() argument
104 int index = mLayoutHolderMap.indexOfKey(vh); in popFromLayoutStep()
DRecyclerView.java731 final ViewHolder vh = getChildViewHolderInt(child); in initChildrenHelper()
732 if (vh != null) { in initChildrenHelper()
733 if (!vh.isTmpDetached() && !vh.shouldIgnore()) { in initChildrenHelper()
735 + " detached: " + vh); in initChildrenHelper()
738 Log.d(TAG, "reAttach " + vh); in initChildrenHelper()
740 vh.clearTmpDetachFlag(); in initChildrenHelper()
749 final ViewHolder vh = getChildViewHolderInt(view); in initChildrenHelper()
750 if (vh != null) { in initChildrenHelper()
751 if (vh.isTmpDetached() && !vh.shouldIgnore()) { in initChildrenHelper()
753 + " detached child " + vh); in initChildrenHelper()
[all …]
DAdapterHelper.java139 RecyclerView.ViewHolder vh = mCallback.findViewHolder(position); in applyRemove() local
140 if (vh != null || canFindInPreLayout(position)) { in applyRemove()
192 RecyclerView.ViewHolder vh = mCallback.findViewHolder(position); in applyUpdate() local
193 if (vh != null || canFindInPreLayout(position)) { // deferred in applyUpdate()
DResolverDrawerLayout.java387 final RecyclerView.ViewHolder vh = in isNestedRecyclerChildScrolled() local
389 return vh == null || vh.itemView.getTop() < 0; in isNestedRecyclerChildScrolled()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleOverflowContainerView.java332 public void onBindViewHolder(ViewHolder vh, int index) { in onBindViewHolder() argument
335 vh.iconView.setRenderedBubble(b); in onBindViewHolder()
336 vh.iconView.removeDotSuppressionFlag(BadgedImageView.SuppressionFlag.FLYOUT_VISIBLE); in onBindViewHolder()
337 vh.iconView.setOnClickListener(view -> { in onBindViewHolder()
347 vh.iconView.setContentDescription(mContext.getResources().getString( in onBindViewHolder()
350 vh.iconView.setAccessibilityDelegate( in onBindViewHolder()
369 vh.textView.setText(label); in onBindViewHolder()
/frameworks/base/packages/SystemUI/src/com/android/systemui/battery/unified/
DBatteryLayersDrawable.kt184 val vh = Metrics.ViewportHeight in setAttrRects() constant
191 vh - full.bottom, in setAttrRects()
197 vh - side.bottom, in setAttrRects()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/controller/
DMediaControlPanel.java452 public void attachPlayer(MediaViewHolder vh) { in attachPlayer() argument
453 mMediaViewHolder = vh; in attachPlayer()
454 TransitionLayout player = vh.getPlayer(); in attachPlayer()
456 mSeekBarObserver = new SeekBarObserver(vh); in attachPlayer()
458 mSeekBarViewModel.attachTouchHandlers(vh.getSeekBar()); in attachPlayer()
463 vh.getPlayer().setOnLongClickListener(v -> { in attachPlayer()
486 MultiRippleView multiRippleView = vh.getMultiRippleView(); in attachPlayer()
489 TurbulenceNoiseView turbulenceNoiseView = vh.getTurbulenceNoiseView(); in attachPlayer()
491 LoadingEffectView loadingEffectView = vh.getLoadingEffectView(); in attachPlayer()
519 public void attachRecommendation(RecommendationViewHolder vh) { in attachRecommendation() argument
[all …]
/frameworks/base/core/java/com/android/internal/widget/helper/
DItemTouchHelper.java950 final ViewHolder vh = findSwipedView(motionEvent); in checkSelectForSwipe() local
951 if (vh == null) { in checkSelectForSwipe()
954 final int movementFlags = mCallback.getAbsoluteMovementFlags(mRecyclerView, vh); in checkSelectForSwipe()
996 select(vh, ACTION_STATE_SWIPE); in checkSelectForSwipe()
2251 ViewHolder vh = mRecyclerView.getChildViewHolder(child); in onLongPress() local
2252 if (vh != null) { in onLongPress()
2253 if (!mCallback.hasDragFlag(mRecyclerView, vh)) { in onLongPress()
2272 select(vh, ACTION_STATE_DRAG); in onLongPress()
/frameworks/base/core/java/android/view/inputmethod/
DInputMethodManager.java3177 Handler vh = view.getHandler(); in startInputInner() local
3178 if (vh == null) { in startInputInner()
3187 if (vh.getLooper() != Looper.myLooper()) { in startInputInner()
3191 vh.post(() -> startInputOnWindowFocusGainInternal(startInputReason, null, 0, 0, 0)); in startInputInner()
3274 icHandler != null ? icHandler.getLooper() : vh.getLooper(), ic, this, view); in startInputInner()
/frameworks/av/services/audioflinger/
DThreads.cpp5780 const float vh = track->getVolumeHandler()->getVolume( in prepareTracks_l() local
5782 volume *= vh; in prepareTracks_l()
5794 vh == 0.f}); in prepareTracks_l()
5949 const float vh = track->getVolumeHandler()->getVolume( in prepareTracks_l() local
5982 vh == 0.f}); in prepareTracks_l()
5985 vlf *= v * vh; in prepareTracks_l()
5986 vrf *= v * vh; in prepareTracks_l()
/frameworks/base/services/tests/mockingservicestests/res/raw/
Dbackup_telephony_with_password55 y�Gi $��[DB��*�!'�p�3@/A�c��f/gi�����%hA���,.�vh�:��k�1v�5���䠲)t�^�A>���Â��� ��)GvO�0�����…
/frameworks/av/media/libstagefright/httplive/fuzzer/corpus/
Daudio316 [j�e�C6�Ky��~�vh�w
572 [j�e�C6�Ky��~�vh�w
Dmaster_playlist608 [j�e�C6�Ky��~�vh�w
2252 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W
2561 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
Dindex91456 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W
1765 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
Dindex131455 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W
1764 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
Dindex151468 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W
1777 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
Dindex111456 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W
1765 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
Dindex101460 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W
1769 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
Dindex181454 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W
1763 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
Dindex161473 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W
1782 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
Dindex121459 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W
1768 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����