/frameworks/opt/timezonepicker/src/com/android/timezonepicker/ |
D | TimeZoneResultAdapter.java | 70 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 …]
|
D | TimeZoneFilterTypeAdapter.java | 56 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/ |
D | ViewInfoStore.java | 88 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()
|
D | RecyclerView.java | 731 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 …]
|
D | AdapterHelper.java | 139 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()
|
D | ResolverDrawerLayout.java | 387 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/ |
D | BubbleOverflowContainerView.java | 332 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/ |
D | BatteryLayersDrawable.kt | 184 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/ |
D | MediaControlPanel.java | 452 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/ |
D | ItemTouchHelper.java | 950 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/ |
D | InputMethodManager.java | 3177 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/ |
D | Threads.cpp | 5780 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/ |
D | backup_telephony_with_password | 55 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/ |
D | audio | 316 [j�e�C6�Ky��~�vh�w 572 [j�e�C6�Ky��~�vh�w
|
D | master_playlist | 608 [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�']����
|
D | index9 | 1456 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W 1765 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
|
D | index13 | 1455 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W 1764 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
|
D | index15 | 1468 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W 1777 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
|
D | index11 | 1456 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W 1765 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
|
D | index10 | 1460 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W 1769 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
|
D | index18 | 1454 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W 1763 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
|
D | index16 | 1473 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W 1782 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
|
D | index12 | 1459 w���S���מ,�vh���ެ��bm!�lǮ����O>Q,~������G�M�i=�U[~���SE)W 1768 �=��ʃ^vh�b�~]L��.'�E4���n~�ĝ_�k�']����
|