/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 | 212 public Builder(@NonNull RemoteViews presentation) { in Builder() argument 213 Preconditions.checkNotNull(presentation, "presentation must be non-null"); in Builder() 214 mPresentation = presentation; in Builder() 353 @NonNull RemoteViews presentation) { in setValue() argument 355 Preconditions.checkNotNull(presentation, "presentation cannot be null"); in setValue() 356 setLifeTheUniverseAndEverything(id, value, presentation, null); in setValue() 424 @Nullable Pattern filter, @NonNull RemoteViews presentation) { in setValue() argument 426 Preconditions.checkNotNull(presentation, "presentation cannot be null"); in setValue() 427 setLifeTheUniverseAndEverything(id, value, presentation, in setValue() 433 @Nullable AutofillValue value, @Nullable RemoteViews presentation, in setLifeTheUniverseAndEverything() argument [all …]
|
D | FillResponse.java | 277 @Nullable IntentSender authentication, @Nullable RemoteViews presentation) { in setAuthentication() argument 284 if (authentication == null ^ presentation == null) { in setAuthentication() 289 mPresentation = presentation; in setAuthentication() 693 final RemoteViews presentation = parcel.readParcelable(null); 695 builder.setAuthentication(authenticationIds, authentication, presentation);
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardDisplayManager.java | 77 final Presentation presentation = mPresentations.get(displayId); 78 if (presentation != null && !presentation.getDisplay().equals(display)) { 126 Presentation presentation = mPresentations.get(displayId); in showPresentation() local 127 if (presentation == null) { in showPresentation() 128 presentation = new KeyguardPresentation(mContext, display, mInjectableInflater); in showPresentation() 129 presentation.setOnDismissListener(dialog -> { in showPresentation() 135 presentation.show(); in showPresentation() 138 presentation = null; in showPresentation() 140 if (presentation != null) { in showPresentation() 141 mPresentations.append(displayId, presentation); in showPresentation() [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 | 185 public int updateCOLR(int presentation) throws RemoteException { 186 return ImsUtImplBase.this.updateCOLR(presentation); 383 public int updateCOLR(int presentation) { in updateCOLR() argument 384 return updateColr(presentation); in updateCOLR() 412 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 1073 @TelecomManager.Presentation int presentation) { in setAddress() argument 1076 mAddressPresentation = presentation; in setAddress() 1078 l.onAddressChanged(this, address, presentation); in setAddress() 1160 @TelecomManager.Presentation int presentation) { in setCallerDisplayName() argument 1163 mCallerDisplayNamePresentation = presentation; in setCallerDisplayName() 1165 l.onCallerDisplayNameChanged(this, callerDisplayName, presentation); in setCallerDisplayName()
|
D | RemoteConnection.java | 152 public void onAddressChanged(RemoteConnection connection, Uri address, int presentation) {} in onAddressChanged() argument 164 RemoteConnection connection, String callerDisplayName, int presentation) {} in onCallerDisplayNameChanged() argument 1394 void setAddress(final Uri address, final int presentation) { in setAddress() argument 1396 mAddressPresentation = presentation; in setAddress() 1403 callback.onAddressChanged(connection, address, presentation); in setAddress() 1410 void setCallerDisplayName(final String callerDisplayName, final int presentation) { in setCallerDisplayName() argument 1412 mCallerDisplayNamePresentation = presentation; in setCallerDisplayName() 1420 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 | 339 public void setAddress(String callId, Uri address, int presentation, 342 .setAddress(address, presentation); 347 int presentation, Session.Info sessionInfo) { 349 .setCallerDisplayName(callerDisplayName, presentation);
|
D | Connection.java | 1079 public void onAddressChanged(Connection c, Uri newAddress, int presentation) {} in onAddressChanged() argument 1081 Connection c, String callerDisplayName, int presentation) {} in onCallerDisplayNameChanged() argument 2334 public final void setAddress(Uri address, int presentation) { in setAddress() argument 2337 mAddressPresentation = presentation; in setAddress() 2339 l.onAddressChanged(this, address, presentation); in setAddress() 2350 public final void setCallerDisplayName(String callerDisplayName, int presentation) { in setCallerDisplayName() argument 2354 mCallerDisplayNamePresentation = presentation; in setCallerDisplayName() 2356 l.onCallerDisplayNameChanged(this, callerDisplayName, presentation); in setCallerDisplayName()
|
D | ConnectionServiceAdapterServant.java | 555 public final void setAddress(String connectionId, Uri address, int presentation, 560 args.argi1 = presentation; 566 String connectionId, String callerDisplayName, int presentation, 571 args.argi1 = presentation;
|
/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() 670 if (mLocked.presentation == Presentation::POINTER) { in updatePointerLocked() 787 if (mLocked.presentation == Presentation::POINTER) { in loadResourcesLocked()
|
D | PointerController.h | 103 virtual void setPresentation(Presentation presentation); 180 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/telephony/java/android/telephony/ims/ |
D | ImsCallProfile.java | 812 public static int presentationToOIR(int presentation) { in presentationToOIR() argument 813 switch (presentation) { in presentationToOIR() 832 public static int presentationToOir(int presentation) { in presentationToOir() argument 833 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;
|
D | Cube.java | 17 package com.android.accessorydisplay.source.presentation;
|
/frameworks/base/telephony/java/com/android/ims/ |
D | ImsUtInterface.java | 198 public void updateCOLR(int presentation, Message result); in updateCOLR() argument
|