/packages/apps/Launcher3/ |
D | fill_screens.py | 36 rv = os.system("adb pull" 39 if rv != 0: 45 rv = os.system("adb push" 48 if rv != 0:
|
D | print_db.py | 45 rv = os.system("adb pull" 48 if rv != 0:
|
/packages/apps/Launcher2/ |
D | fill_screens.py | 36 rv = os.system("adb pull" 39 if rv != 0: 45 rv = os.system("adb push" 48 if rv != 0:
|
D | print_db.py | 34 rv = os.system("adb pull" 37 if rv != 0:
|
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/ |
D | ConversationFastScroller.java | 65 public static ConversationFastScroller addTo(RecyclerView rv, int position) { in addTo() argument 67 return new ConversationFastScroller(rv, position); in addTo() 122 private ConversationFastScroller(RecyclerView rv, int position) { in ConversationFastScroller() argument 123 mContext = rv.getContext(); in ConversationFastScroller() 124 mRv = rv; in ConversationFastScroller() 155 mOverlay = rv.getOverlay(); in ConversationFastScroller() 330 public boolean onInterceptTouchEvent(RecyclerView rv, MotionEvent e) { in onInterceptTouchEvent() argument 372 public void onTouchEvent(RecyclerView rv, MotionEvent e) { in onTouchEvent() argument
|
/packages/apps/Gallery2/jni/filters/ |
D | hsv.c | 45 short rv,rs,rh; in rgb2hsv() local 57 rv = (short)( iMax << ABITS); in rgb2hsv() 60 if (rv == 0) in rgb2hsv() 77 hsv[hsvOff+0] = rv; in rgb2hsv()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | BaseRecyclerViewFastScrollBar.java | 79 public BaseRecyclerViewFastScrollBar(BaseRecyclerView rv, Resources res) { in BaseRecyclerViewFastScrollBar() argument 80 mRv = rv; in BaseRecyclerViewFastScrollBar() 81 mPopup = new BaseRecyclerViewFastScrollPopup(rv, res); in BaseRecyclerViewFastScrollBar() 83 mTrackPaint.setColor(rv.getFastScrollerTrackColor(Color.BLACK)); in BaseRecyclerViewFastScrollBar() 85 mThumbInactiveColor = rv.getFastScrollerThumbInactiveColor( in BaseRecyclerViewFastScrollBar()
|
D | BaseRecyclerView.java | 115 public boolean onInterceptTouchEvent(RecyclerView rv, MotionEvent ev) { in onInterceptTouchEvent() argument 120 public void onTouchEvent(RecyclerView rv, MotionEvent ev) { in onTouchEvent() argument
|
D | BaseRecyclerViewFastScrollPopup.java | 52 public BaseRecyclerViewFastScrollPopup(BaseRecyclerView rv, Resources res) { in BaseRecyclerViewFastScrollPopup() argument 54 mRv = rv; in BaseRecyclerViewFastScrollPopup()
|
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/ |
D | WidgetService.java | 110 RemoteViews rv = new RemoteViews( in getLoadingView() local 113 rv.setProgressBar(R.id.appwidget_loading_item, 0, 0, true); in getLoadingView() 114 return rv; in getLoadingView()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
D | saturation.rs | 111 short rv,rs,rh; 121 rv = (short) (iMax << ABITS); 123 if (rv == 0) {
|
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
D | LapsAdapter.java | 115 void updateCurrentLap(RecyclerView rv, long totalTime) { in updateCurrentLap() argument 121 final View currentLapView = rv.getChildAt(0); in updateCurrentLap() 126 final LapItemHolder holder = (LapItemHolder) rv.getChildViewHolder(currentLapView); in updateCurrentLap()
|
/packages/apps/Settings/src/com/android/settings/localepicker/ |
D | LocaleDragAndDropAdapter.java | 138 public void setRecyclerView(RecyclerView rv) { in setRecyclerView() argument 139 mParentView = rv; in setRecyclerView() 140 mItemTouchHelper.attachToRecyclerView(rv); in setRecyclerView()
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
D | AllAppsFastScrollHelper.java | 85 public AllAppsFastScrollHelper(AllAppsRecyclerView rv, AlphabeticalAppsList apps) { in AllAppsFastScrollHelper() argument 86 mRv = rv; in AllAppsFastScrollHelper()
|
/packages/services/Car/car-ui-provider/src/android/car/ui/provider/ |
D | DrawerController.java | 469 RecyclerView rv = mListView.getRecyclerView(); in updateDayNightMode() local 471 mAdapter.setDayNightModeColors(rv.findViewHolderForAdapterPosition(i)); in updateDayNightMode() 642 RecyclerView rv = mListView.getRecyclerView(); in onChildChanged() local 643 RecyclerView.ViewHolder holder = rv.findViewHolderForItemId(id.hashCode()); in onChildChanged()
|
/packages/services/Car/car-support-lib/src/android/support/car/ui/ |
D | CarLayoutManager.java | 1018 RecyclerView rv = (RecyclerView) getChildAt(0).getParent(); in offsetRowsIndividually() local 1020 rv.getLocationInWindow(locs); in offsetRowsIndividually() 1021 int listTopInWindow = locs[1] + rv.getPaddingTop(); in offsetRowsIndividually() 1092 RecyclerView rv = (RecyclerView) getChildAt(0).getParent(); in offsetRowsByPage() local 1094 rv.getLocationInWindow(locs); in offsetRowsByPage() 1095 int listTopInWindow = locs[1] + rv.getPaddingTop(); in offsetRowsByPage()
|
/packages/apps/Protips/src/com/android/protips/ |
D | ProtipWidget.java | 159 RemoteViews rv = buildUpdate(mContext); in refresh() local 161 mWidgetManager.updateAppWidget(i, rv); in refresh()
|
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
D | StopwatchModel.java | 319 private static void setTextViewDrawable(RemoteViews rv, int viewId, int drawableId) { in setTextViewDrawable() argument 320 rv.setTextViewCompoundDrawablesRelative(viewId, drawableId, 0, 0, 0); in setTextViewDrawable()
|
/packages/apps/ExactCalculator/src/com/android/calculator2/ |
D | Evaluator.java | 205 InitialResult(CR v, BoundedRational rv, String s, int p, int idp) { in InitialResult() argument 208 ratVal = rv; in InitialResult()
|
D | CalculatorExpr.java | 1129 EvalResult (CR v, BoundedRational rv) { in EvalResult() argument 1131 ratVal = rv; in EvalResult()
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | lv_wordlist.combined.gz | 1dictionary=main:lv,locale=lv,description=Latviešu,date=1393228136, ... |
D | da_wordlist.combined.gz | 1dictionary=main:da,locale=da,description=Dansk,date=1393228134, ... |
D | nb_wordlist.combined.gz | 1dictionary=main:nb,locale=nb,description=Norsk bokmål,date=1393228136 ... |
D | cs_wordlist.combined.gz | 1dictionary=main:cs,locale=cs,description=Čeština,date=1393228134, ... |
D | sl_wordlist.combined.gz | 1dictionary=main:sl,locale=sl,description=Slovenščina,date=1393228152, ... |