/frameworks/av/media/extractors/mp4/ |
D | AC4Parser.cpp | 292 for (uint32_t presentation = 0; presentation < n_presentations; presentation++) { in parse() local 293 mPresentations[presentation].mProgramID = short_program_id; in parse() 313 ALOGV("%u: pres_bytes = %u\n", presentation, pres_bytes); in parse() 337 ALOGV("%u: b_single_substream/group = %s\n", presentation, in parse() 339 ALOGV("%u: presentation_version = %u\n", presentation, presentation_version); in parse() 340 ALOGV("%u: presentation_config = %u (%s)\n", presentation, presentation_config, in parse() 347 ALOGV("%u: b_add_emdf_substreams = %s\n", presentation, BOOLSTR(b_add_emdf_substreams)); in parse() 351 ALOGV("%u: mdcompat = %d\n", presentation, mdcompat); in parse() 354 ALOGV("%u: b_presentation_group_index = %s\n", presentation, in parse() 358 mPresentations[presentation].mGroupIndex = mBitReader.getBits(5); in parse() [all …]
|
/frameworks/base/core/java/android/service/autofill/ |
D | Dataset.java | 236 public Builder(@NonNull RemoteViews presentation) { in Builder() argument 237 Preconditions.checkNotNull(presentation, "presentation must be non-null"); in Builder() 238 mPresentation = presentation; in Builder() 425 @NonNull RemoteViews presentation) { in setValue() argument 427 Preconditions.checkNotNull(presentation, "presentation cannot be null"); in setValue() 428 setLifeTheUniverseAndEverything(id, value, presentation, null, null); in setValue() 498 @Nullable Pattern filter, @NonNull RemoteViews presentation) { in setValue() argument 500 Preconditions.checkNotNull(presentation, "presentation cannot be null"); in setValue() 501 setLifeTheUniverseAndEverything(id, value, presentation, null, in setValue() 529 @NonNull RemoteViews presentation, @NonNull InlinePresentation inlinePresentation) { in setValue() argument [all …]
|
D | InlineSuggestionRenderService.java | 134 InlinePresentation presentation, int width, int height, IBinder hostInputToken, in handleRenderSuggestion() argument 148 final View suggestionView = onRenderSuggestion(presentation, width, height); in handleRenderSuggestion() 160 presentation.getInlinePresentationSpec().getMinSize(), in handleRenderSuggestion() 161 presentation.getInlinePresentationSpec().getMaxSize()); in handleRenderSuggestion() 343 @NonNull InlinePresentation presentation, int width, int height, in onBind() 348 InlineSuggestionRenderService.this, callback, presentation, in onBind() 399 public View onRenderSuggestion(@NonNull InlinePresentation presentation, int width,
|
D | FillResponse.java | 302 @Nullable IntentSender authentication, @Nullable RemoteViews presentation) { in setAuthentication() argument 309 if (authentication == null ^ presentation == null) { in setAuthentication() 314 mPresentation = presentation; in setAuthentication() 361 @Nullable IntentSender authentication, @Nullable RemoteViews presentation, in setAuthentication() argument 369 if (authentication == null ^ (presentation == null && inlinePresentation == null)) { in setAuthentication() 374 mPresentation = presentation; in setAuthentication() 819 final RemoteViews presentation = parcel.readParcelable(null); 822 builder.setAuthentication(authenticationIds, authentication, presentation,
|
D | IInlineSuggestionRenderService.aidl | 31 in InlinePresentation presentation, int width, int height, in renderSuggestion() argument
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardDisplayManager.java | 75 final Presentation presentation = mPresentations.get(displayId); 76 if (presentation != null && mShowing) { 127 Presentation presentation = mPresentations.get(displayId); in showPresentation() local 128 if (presentation == null) { in showPresentation() 136 presentation = newPresentation; in showPresentation() 138 presentation.show(); in showPresentation() 141 presentation = null; in showPresentation() 143 if (presentation != null) { in showPresentation() 144 mPresentations.append(displayId, presentation); in showPresentation() 155 final Presentation presentation = mPresentations.get(displayId); in hidePresentation() local [all …]
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_presentation_time.txt | 41 this desired presentation time to be specified for each frame rendered to 79 window system's use of the presentation time. In situations where 83 using the color buffer for video encoding, the presentation time of the 87 The presentation time may be set multiple times, with each call to 89 presentation time alone does not cause the color buffer to be made 91 or copied to a native pixmap then the presentation time of the surface at 94 If the surface presentation time is successfully set, EGL_TRUE is 102 1. How is the presentation time used? 104 RESOLVED: The uses of the presentation time are intentionally not specified 110 presentation time when an absolute time is needed be queried on Android? [all …]
|
/frameworks/base/core/java/android/provider/ |
D | CallLog.java | 629 int presentation, int callType, int features, in addCall() argument 633 presentation, callType, features, accountHandle, start, duration, in addCall() 669 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument 672 return addCall(ci, context, number, postDialDigits, viaNumber, presentation, callType, in addCall() 718 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument 731 int numberPresentation = getLogNumberPresentation(number, presentation); in addCall() 1057 private static int getLogNumberPresentation(String number, int presentation) { in getLogNumberPresentation() argument 1058 if (presentation == TelecomManager.PRESENTATION_RESTRICTED) { in getLogNumberPresentation() 1059 return presentation; in getLogNumberPresentation() 1062 if (presentation == TelecomManager.PRESENTATION_PAYPHONE) { in getLogNumberPresentation() [all …]
|
/frameworks/base/telephony/java/android/telephony/ims/stub/ |
D | ImsUtImplBase.java | 196 public int updateCOLR(int presentation) throws RemoteException { 197 return ImsUtImplBase.this.updateCOLR(presentation); 394 public int updateCOLR(int presentation) { in updateCOLR() argument 395 return updateColr(presentation); in updateCOLR() 423 public int updateColr(int presentation) { in updateColr() argument
|
/frameworks/base/telecomm/java/android/telecom/ |
D | Conference.java | 73 public void onAddressChanged(Conference c, Uri newAddress, int presentation) {} in onAddressChanged() argument 76 Conference c, String callerDisplayName, int presentation) {} in onCallerDisplayNameChanged() argument 1079 @TelecomManager.Presentation int presentation) { in setAddress() argument 1082 mAddressPresentation = presentation; in setAddress() 1084 l.onAddressChanged(this, address, presentation); in setAddress() 1166 @TelecomManager.Presentation int presentation) { in setCallerDisplayName() argument 1169 mCallerDisplayNamePresentation = presentation; in setCallerDisplayName() 1171 l.onCallerDisplayNameChanged(this, callerDisplayName, presentation); in setCallerDisplayName()
|
D | RemoteConnection.java | 155 public void onAddressChanged(RemoteConnection connection, Uri address, int presentation) {} in onAddressChanged() argument 167 RemoteConnection connection, String callerDisplayName, int presentation) {} in onCallerDisplayNameChanged() argument 1475 void setAddress(final Uri address, final int presentation) { in setAddress() argument 1477 mAddressPresentation = presentation; in setAddress() 1484 callback.onAddressChanged(connection, address, presentation); in setAddress() 1491 void setCallerDisplayName(final String callerDisplayName, final int presentation) { in setCallerDisplayName() argument 1493 mCallerDisplayNamePresentation = presentation; in setCallerDisplayName() 1501 connection, callerDisplayName, presentation); in setCallerDisplayName()
|
D | ConnectionServiceAdapter.java | 396 void setAddress(String callId, Uri address, int presentation) { in setAddress() argument 399 adapter.setAddress(callId, address, presentation, Log.getExternalSession()); in setAddress() 405 void setCallerDisplayName(String callId, String callerDisplayName, int presentation) { in setCallerDisplayName() argument 408 adapter.setCallerDisplayName(callId, callerDisplayName, presentation, in setCallerDisplayName()
|
D | RemoteConnectionService.java | 342 public void setAddress(String callId, Uri address, int presentation, 345 .setAddress(address, presentation); 350 int presentation, Session.Info sessionInfo) { 352 .setCallerDisplayName(callerDisplayName, presentation);
|
D | Connection.java | 1103 public void onAddressChanged(Connection c, Uri newAddress, int presentation) {} in onAddressChanged() argument 1105 Connection c, String callerDisplayName, int presentation) {} in onCallerDisplayNameChanged() argument 2358 public final void setAddress(Uri address, int presentation) { in setAddress() argument 2361 mAddressPresentation = presentation; in setAddress() 2363 l.onAddressChanged(this, address, presentation); in setAddress() 2374 public final void setCallerDisplayName(String callerDisplayName, int presentation) { in setCallerDisplayName() argument 2378 mCallerDisplayNamePresentation = presentation; in setCallerDisplayName() 2380 l.onCallerDisplayNameChanged(this, callerDisplayName, presentation); in setCallerDisplayName()
|
/frameworks/base/libs/input/ |
D | PointerController.cpp | 86 mLocked.presentation = PRESENTATION_POINTER; in PointerController() 251 void PointerController::setPresentation(Presentation presentation) { in setPresentation() argument 254 if (mLocked.presentation == presentation) { in setPresentation() 258 mLocked.presentation = presentation; in setPresentation() 265 if (presentation == PRESENTATION_POINTER) { in setPresentation() 658 if (mLocked.presentation == PRESENTATION_POINTER) { in updatePointerLocked() 775 if (mLocked.presentation == PRESENTATION_POINTER) { in loadResourcesLocked()
|
D | PointerController.h | 105 virtual void setPresentation(Presentation presentation); 165 Presentation presentation; member
|
/frameworks/base/core/tests/coretests/src/android/hardware/display/ |
D | VirtualDisplayTest.java | 289 final TestPresentation[] presentation = new TestPresentation[1]; in assertDisplayCanShowPresentation() local 295 presentation[0] = new TestPresentation(getContext(), display, in assertDisplayCanShowPresentation() 297 presentation[0].show(); in assertDisplayCanShowPresentation() 305 if (presentation[0] != null) { in assertDisplayCanShowPresentation() 309 presentation[0].dismiss(); in assertDisplayCanShowPresentation()
|
/frameworks/base/apct-tests/perftests/autofill/src/android/view/autofill/ |
D | MyAutofillService.java | 214 RemoteViews presentation = in newDatasetPresentation() local 216 presentation.setTextViewText(R.id.text, text); in newDatasetPresentation() 217 return presentation; in newDatasetPresentation()
|
/frameworks/base/services/autofill/java/com/android/server/autofill/ |
D | RemoteInlineSuggestionRenderService.java | 90 @NonNull InlinePresentation presentation, int width, int height, in renderSuggestion() argument 92 scheduleAsyncRequest((s) -> s.renderSuggestion(callback, presentation, width, height, in renderSuggestion()
|
/frameworks/base/telephony/java/android/telephony/ims/ |
D | ImsCallProfile.java | 828 public static int presentationToOIR(int presentation) { in presentationToOIR() argument 829 switch (presentation) { in presentationToOIR() 848 public static int presentationToOir(int presentation) { in presentationToOir() argument 849 return presentationToOIR(presentation); in presentationToOir()
|
/frameworks/native/services/inputflinger/include/ |
D | PointerControllerInterface.h | 86 virtual void setPresentation(Presentation presentation) = 0;
|
/frameworks/base/telephony/java/com/android/ims/internal/ |
D | IImsUt.aidl | 103 int updateCOLR(int presentation); in updateCOLR() argument
|
/frameworks/base/telecomm/java/com/android/internal/telecom/ |
D | IConnectionServiceAdapter.aidl | 98 void setAddress(String callId, in Uri address, int presentation, in Session.Info sessionInfo); in setAddress() argument 100 void setCallerDisplayName(String callId, String callerDisplayName, int presentation, in setCallerDisplayName() argument
|
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/ |
D | DemoPresentation.java | 17 package com.android.accessorydisplay.source.presentation;
|
D | CubeRenderer.java | 17 package com.android.accessorydisplay.source.presentation;
|