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

/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/keystore/java/android/security/keystore/
H A DDelegatingX509Certificate.java40 private final X509Certificate mDelegate; field in class:DelegatingX509Certificate
43 mDelegate = delegate;
48 return mDelegate.getCriticalExtensionOIDs();
53 return mDelegate.getExtensionValue(oid);
58 return mDelegate.getNonCriticalExtensionOIDs();
63 return mDelegate.hasUnsupportedCriticalExtension();
69 mDelegate.checkValidity();
75 mDelegate.checkValidity(date);
80 return mDelegate.getBasicConstraints();
85 return mDelegate
[all...]
H A DAndroidKeyStoreECDSASignatureSpi.java60 private final KeyStoreCryptoOperationStreamer mDelegate; field in class:AndroidKeyStoreECDSASignatureSpi.NONE.TruncateToFieldSizeMessageStreamer
68 mDelegate = delegate;
93 return mDelegate.doFinal(bufferedInput,
106 return mDelegate.getProducedOutputSizeBytes();
H A DAndroidKeyStoreAuthenticatedAESCipherSpi.java348 private final KeyStoreCryptoOperationStreamer mDelegate; field in class:AndroidKeyStoreAuthenticatedAESCipherSpi.BufferAllOutputUntilDoFinalStreamer
353 mDelegate = delegate;
359 byte[] output = mDelegate.update(input, inputOffset, inputLength);
373 byte[] output = mDelegate.doFinal(input, inputOffset, inputLength, signature,
390 return mDelegate.getConsumedInputSizeBytes();
/frameworks/base/core/java/android/net/http/
H A DX509TrustManagerExtensions.java37 final TrustManagerImpl mDelegate; field in class:X509TrustManagerExtensions
47 mDelegate = (TrustManagerImpl) tm;
49 mDelegate = null;
67 return mDelegate.checkServerTrusted(chain, authType, host);
81 return mDelegate.isUserAddedCertificate(cert);
/frameworks/base/core/java/android/widget/
H A DCalendarView.java65 private final CalendarViewDelegate mDelegate; field in class:CalendarView
105 mDelegate = new CalendarViewLegacyDelegate(
109 mDelegate = new CalendarViewMaterialDelegate(
127 mDelegate.setShownWeekCount(count);
140 return mDelegate.getShownWeekCount();
153 mDelegate.setSelectedWeekBackgroundColor(color);
167 return mDelegate.getSelectedWeekBackgroundColor();
180 mDelegate.setFocusedMonthDateColor(color);
194 return mDelegate.getFocusedMonthDateColor();
207 mDelegate
[all...]
H A DTimePicker.java46 private final TimePickerDelegate mDelegate; field in class:TimePicker
83 mDelegate = new TimePickerClockDelegate(
88 mDelegate = new TimePickerSpinnerDelegate(
101 mDelegate.setCurrentHour(hour);
111 return mDelegate.getCurrentHour();
121 mDelegate.setCurrentMinute(minute);
131 return mDelegate.getCurrentMinute();
151 return mDelegate.getCurrentHour();
161 mDelegate.setCurrentMinute(currentMinute);
171 return mDelegate
[all...]
H A DDatePicker.java98 private final DatePickerDelegate mDelegate; field in class:DatePicker
140 mDelegate = createCalendarUIDelegate(context, attrs, defStyleAttr, defStyleRes);
144 mDelegate = createSpinnerUIDelegate(context, attrs, defStyleAttr, defStyleRes);
176 mDelegate.init(year, monthOfYear, dayOfMonth, onDateChangedListener);
187 mDelegate.updateDate(year, month, dayOfMonth);
194 return mDelegate.getYear();
201 return mDelegate.getMonth();
208 return mDelegate.getDayOfMonth();
222 return mDelegate.getMinDate().getTimeInMillis();
233 mDelegate
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DConnectionServiceAdapterServant.java66 private final IConnectionServiceAdapter mDelegate; field in class:ConnectionServiceAdapterServant
83 mDelegate.handleCreateConnectionComplete(
93 mDelegate.setActive((String) msg.obj);
96 mDelegate.setRinging((String) msg.obj);
99 mDelegate.setDialing((String) msg.obj);
104 mDelegate.setDisconnected((String) args.arg1, (DisconnectCause) args.arg2);
111 mDelegate.setOnHold((String) msg.obj);
114 mDelegate.setRingbackRequested((String) msg.obj, msg.arg1 == 1);
117 mDelegate.setConnectionCapabilities((String) msg.obj, msg.arg1);
122 mDelegate
[all...]
H A DVideoCallbackServant.java43 private final IVideoCallback mDelegate; field in class:VideoCallbackServant
58 mDelegate.receiveSessionModifyRequest((VideoProfile) msg.obj);
64 mDelegate.receiveSessionModifyResponse(
76 mDelegate.handleCallSessionEvent(args.argi1);
85 mDelegate.changePeerDimensions(args.argi1, args.argi2);
94 mDelegate.changeCallDataUsage((long) args.arg1);
101 mDelegate.changeCameraCapabilities((VideoProfile.CameraCapabilities) msg.obj);
105 mDelegate.changeVideoQuality(msg.arg1);
165 mDelegate = delegate;
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatDialog.java35 private AppCompatDelegate mDelegate; field in class:AppCompatDialog
141 if (mDelegate == null) {
142 mDelegate = AppCompatDelegate.create(this, this);
144 return mDelegate;
H A DAppCompatActivity.java55 private AppCompatDelegate mDelegate; field in class:AppCompatActivity
455 if (mDelegate == null) {
456 mDelegate = AppCompatDelegate.create(this, this);
458 return mDelegate;
/frameworks/base/libs/hwui/
H A DAssetAtlas.cpp99 DelegateTexture(Caches& caches, Texture* delegate): Texture(caches), mDelegate(delegate) { }
103 mDelegate->setWrapST(wrapS, wrapT, bindTexture, force, renderTarget);
108 mDelegate->setFilterMinMag(min, mag, bindTexture, force, renderTarget);
112 Texture* const mDelegate; member in struct:android::uirenderer::DelegateTexture
/frameworks/base/core/java/android/hardware/display/
H A DDisplayManagerGlobal.java469 private VirtualDisplayCallbackDelegate mDelegate; field in class:DisplayManagerGlobal.VirtualDisplayCallback
473 mDelegate = new VirtualDisplayCallbackDelegate(callback, handler);
479 if (mDelegate != null) {
480 mDelegate.sendEmptyMessage(VirtualDisplayCallbackDelegate.MSG_DISPLAY_PAUSED);
486 if (mDelegate != null) {
487 mDelegate.sendEmptyMessage(VirtualDisplayCallbackDelegate.MSG_DISPLAY_RESUMED);
493 if (mDelegate != null) {
494 mDelegate.sendEmptyMessage(VirtualDisplayCallbackDelegate.MSG_DISPLAY_STOPPED);

Completed in 5351 milliseconds