Searched refs:mDelegate (Results 1 - 12 of 12) sorted by relevance

/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
H A DSingleThreadedMediaPlayerProxy.java30 private final MediaPlayerProxy mDelegate; field in class:SingleThreadedMediaPlayerProxy
33 mDelegate = delegate;
38 mDelegate.setOnErrorListener(listener);
43 mDelegate.setOnCompletionListener(listener);
48 mDelegate.release();
53 mDelegate.reset();
58 mDelegate.setDataSource(path);
64 mDelegate.setDataSource(context, intentUri);
69 mDelegate.prepare();
74 return mDelegate
[all...]
/frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
H A DVisibleRecipientChip.java30 private final SimpleRecipientChip mDelegate; field in class:VisibleRecipientChip
34 mDelegate = new SimpleRecipientChip(entry);
39 mDelegate.setSelected(selected);
44 return mDelegate.isSelected();
49 return mDelegate.getDisplay();
54 return mDelegate.getValue();
59 return mDelegate.getContactId();
64 return mDelegate.getDirectoryId();
69 return mDelegate.getLookupKey();
74 return mDelegate
[all...]
H A DInvisibleRecipientChip.java31 private final SimpleRecipientChip mDelegate; field in class:InvisibleRecipientChip
36 mDelegate = new SimpleRecipientChip(entry);
41 mDelegate.setSelected(selected);
46 return mDelegate.isSelected();
51 return mDelegate.getDisplay();
56 return mDelegate.getValue();
61 return mDelegate.getContactId();
66 return mDelegate.getDirectoryId();
71 return mDelegate.getLookupKey();
76 return mDelegate
[all...]
/frameworks/base/core/java/android/widget/
H A DCalendarView.java64 private final CalendarViewDelegate mDelegate; field in class:CalendarView
104 mDelegate = new CalendarViewLegacyDelegate(
108 mDelegate = new CalendarViewMaterialDelegate(
124 mDelegate.setShownWeekCount(count);
135 return mDelegate.getShownWeekCount();
146 mDelegate.setSelectedWeekBackgroundColor(color);
157 return mDelegate.getSelectedWeekBackgroundColor();
168 mDelegate.setFocusedMonthDateColor(color);
179 return mDelegate.getFocusedMonthDateColor();
190 mDelegate
[all...]
H A DTimePicker.java52 private final TimePickerDelegate mDelegate; field in class:TimePicker
89 mDelegate = new TimePickerClockDelegate(
94 mDelegate = new TimePickerSpinnerDelegate(
104 mDelegate.setCurrentHour(currentHour);
111 return mDelegate.getCurrentHour();
118 mDelegate.setCurrentMinute(currentMinute);
125 return mDelegate.getCurrentMinute();
134 mDelegate.setIs24HourView(is24HourView);
141 return mDelegate.is24HourView();
150 mDelegate
[all...]
H A DDatePicker.java99 private final DatePickerDelegate mDelegate; field in class:DatePicker
141 mDelegate = createCalendarUIDelegate(context, attrs, defStyleAttr, defStyleRes);
145 mDelegate = createSpinnerUIDelegate(context, attrs, defStyleAttr, defStyleRes);
177 mDelegate.init(year, monthOfYear, dayOfMonth, onDateChangedListener);
188 mDelegate.updateDate(year, month, dayOfMonth);
195 return mDelegate.getYear();
202 return mDelegate.getMonth();
209 return mDelegate.getDayOfMonth();
223 return mDelegate.getMinDate().getTimeInMillis();
234 mDelegate
[all...]
/frameworks/base/core/java/android/net/http/
H A DX509TrustManagerExtensions.java39 TrustManagerImpl mDelegate; field in class:X509TrustManagerExtensions
49 mDelegate = (TrustManagerImpl) tm;
68 return mDelegate.checkServerTrusted(chain, authType, host);
82 return mDelegate.isUserAddedCertificate(cert);
/frameworks/base/telecomm/java/android/telecom/
H A DVideoCallbackServant.java42 private final IVideoCallback mDelegate; field in class:VideoCallbackServant
57 mDelegate.receiveSessionModifyRequest((VideoProfile) msg.obj);
63 mDelegate.receiveSessionModifyResponse(
75 mDelegate.handleCallSessionEvent(args.argi1);
84 mDelegate.changePeerDimensions(args.argi1, args.argi2);
93 mDelegate.changeCallDataUsage(args.argi1);
100 mDelegate.changeCameraCapabilities((CameraCapabilities) msg.obj);
154 mDelegate = delegate;
H A DConnectionServiceAdapterServant.java63 private final IConnectionServiceAdapter mDelegate; field in class:ConnectionServiceAdapterServant
80 mDelegate.handleCreateConnectionComplete(
90 mDelegate.setActive((String) msg.obj);
93 mDelegate.setRinging((String) msg.obj);
96 mDelegate.setDialing((String) msg.obj);
101 mDelegate.setDisconnected((String) args.arg1, (DisconnectCause) args.arg2);
108 mDelegate.setOnHold((String) msg.obj);
111 mDelegate.setRingbackRequested((String) msg.obj, msg.arg1 == 1);
114 mDelegate.setConnectionCapabilities((String) msg.obj, msg.arg1);
119 mDelegate
[all...]
/frameworks/base/libs/hwui/
H A DAssetAtlas.cpp98 DelegateTexture(Caches& caches, Texture* delegate): Texture(caches), mDelegate(delegate) { }
102 mDelegate->setWrapST(wrapS, wrapT, bindTexture, force, renderTarget);
107 mDelegate->setFilterMinMag(min, mag, bindTexture, force, renderTarget);
111 Texture* const mDelegate; member in struct:android::uirenderer::DelegateTexture
/frameworks/base/core/java/android/hardware/display/
H A DDisplayManagerGlobal.java480 private VirtualDisplayCallbackDelegate mDelegate; field in class:DisplayManagerGlobal.VirtualDisplayCallback
484 mDelegate = new VirtualDisplayCallbackDelegate(callback, handler);
490 if (mDelegate != null) {
491 mDelegate.sendEmptyMessage(VirtualDisplayCallbackDelegate.MSG_DISPLAY_PAUSED);
497 if (mDelegate != null) {
498 mDelegate.sendEmptyMessage(VirtualDisplayCallbackDelegate.MSG_DISPLAY_RESUMED);
504 if (mDelegate != null) {
505 mDelegate.sendEmptyMessage(VirtualDisplayCallbackDelegate.MSG_DISPLAY_STOPPED);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarActivity.java63 private ActionBarActivityDelegate mDelegate; field in class:ActionBarActivity
552 if (mDelegate == null) {
553 mDelegate = ActionBarActivityDelegate.createDelegate(this);
555 return mDelegate;

Completed in 307 milliseconds