Home
last modified time | relevance | path

Searched refs:presentation (Results 1 – 25 of 36) sorted by relevance

12

/frameworks/av/media/extractors/mp4/
DAC4Parser.cpp292 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/
DDataset.java212 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 …]
DFillResponse.java277 @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/
DKeyguardDisplayManager.java76 final Presentation presentation = mPresentations.get(displayId);
77 if (presentation != null && !presentation.getDisplay().equals(display)) {
125 Presentation presentation = mPresentations.get(displayId); in showPresentation() local
126 if (presentation == null) { in showPresentation()
127 presentation = new KeyguardPresentation(mContext, display, mInjectableInflater); in showPresentation()
128 presentation.setOnDismissListener(dialog -> { in showPresentation()
134 presentation.show(); in showPresentation()
137 presentation = null; in showPresentation()
139 if (presentation != null) { in showPresentation()
140 mPresentations.append(displayId, presentation); in showPresentation()
[all …]
/frameworks/native/opengl/specs/
DEGL_ANDROID_presentation_time.txt41 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/telephony/java/android/telephony/ims/stub/
DImsUtImplBase.java113 public int updateCOLR(int presentation) throws RemoteException {
114 return ImsUtImplBase.this.updateCOLR(presentation);
295 public int updateCOLR(int presentation) { in updateCOLR() argument
296 return updateColr(presentation); in updateCOLR()
324 public int updateColr(int presentation) { in updateColr() argument
/frameworks/base/core/java/android/provider/
DCallLog.java628 int presentation, int callType, int features, in addCall() argument
632 presentation, callType, features, accountHandle, start, duration, in addCall()
668 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument
671 return addCall(ci, context, number, postDialDigits, viaNumber, presentation, callType, in addCall()
717 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument
730 int numberPresentation = getLogNumberPresentation(number, presentation); in addCall()
1039 private static int getLogNumberPresentation(String number, int presentation) { in getLogNumberPresentation() argument
1040 if (presentation == PhoneConstants.PRESENTATION_RESTRICTED) { in getLogNumberPresentation()
1041 return presentation; in getLogNumberPresentation()
1044 if (presentation == PhoneConstants.PRESENTATION_PAYPHONE) { in getLogNumberPresentation()
[all …]
/frameworks/base/telecomm/java/android/telecom/
DConference.java70 public void onAddressChanged(Conference c, Uri newAddress, int presentation) {} in onAddressChanged() argument
73 Conference c, String callerDisplayName, int presentation) {} in onCallerDisplayNameChanged() argument
992 public final void setAddress(Uri address, int presentation) { in setAddress() argument
995 mAddressPresentation = presentation; in setAddress()
997 l.onAddressChanged(this, address, presentation); in setAddress()
1064 public final void setCallerDisplayName(String callerDisplayName, int presentation) { in setCallerDisplayName() argument
1067 mCallerDisplayNamePresentation = presentation; in setCallerDisplayName()
1069 l.onCallerDisplayNameChanged(this, callerDisplayName, presentation); in setCallerDisplayName()
DRemoteConnection.java152 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()
DConnectionServiceAdapter.java383 void setAddress(String callId, Uri address, int presentation) { in setAddress() argument
386 adapter.setAddress(callId, address, presentation, Log.getExternalSession()); in setAddress()
392 void setCallerDisplayName(String callId, String callerDisplayName, int presentation) { in setCallerDisplayName() argument
395 adapter.setCallerDisplayName(callId, callerDisplayName, presentation, in setCallerDisplayName()
DConnection.java872 public void onAddressChanged(Connection c, Uri newAddress, int presentation) {} in onAddressChanged() argument
874 Connection c, String callerDisplayName, int presentation) {} in onCallerDisplayNameChanged() argument
2120 public final void setAddress(Uri address, int presentation) { in setAddress() argument
2124 mAddressPresentation = presentation; in setAddress()
2126 l.onAddressChanged(this, address, presentation); in setAddress()
2137 public final void setCallerDisplayName(String callerDisplayName, int presentation) { in setCallerDisplayName() argument
2141 mCallerDisplayNamePresentation = presentation; in setCallerDisplayName()
2143 l.onCallerDisplayNameChanged(this, callerDisplayName, presentation); in setCallerDisplayName()
DRemoteConnectionService.java331 public void setAddress(String callId, Uri address, int presentation,
334 .setAddress(address, presentation);
339 int presentation, Session.Info sessionInfo) {
341 .setCallerDisplayName(callerDisplayName, presentation);
/frameworks/base/libs/input/
DPointerController.cpp92 mLocked.presentation = PRESENTATION_POINTER; in PointerController()
257 void PointerController::setPresentation(Presentation presentation) { in setPresentation() argument
260 if (presentation == PRESENTATION_POINTER && mLocked.additionalMouseResources.empty()) { in setPresentation()
265 if (mLocked.presentation != presentation) { in setPresentation()
266 mLocked.presentation = presentation; in setPresentation()
269 if (presentation != PRESENTATION_SPOT) { in setPresentation()
653 if (mLocked.presentation == PRESENTATION_POINTER) { in updatePointerLocked()
766 if (mLocked.presentation == PRESENTATION_POINTER) { in loadResourcesLocked()
DPointerController.h104 virtual void setPresentation(Presentation presentation);
165 Presentation presentation; member
/frameworks/base/core/tests/coretests/src/android/hardware/display/
DVirtualDisplayTest.java289 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/
DMyAutofillService.java214 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/
DImsCallProfile.java696 public static int presentationToOIR(int presentation) { in presentationToOIR() argument
697 switch (presentation) { in presentationToOIR()
716 public static int presentationToOir(int presentation) { in presentationToOir() argument
717 return presentationToOIR(presentation); in presentationToOir()
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsUt.aidl103 int updateCOLR(int presentation); in updateCOLR() argument
/frameworks/native/services/inputflinger/include/
DPointerControllerInterface.h85 virtual void setPresentation(Presentation presentation) = 0;
/frameworks/base/telecomm/java/com/android/internal/telecom/
DIConnectionServiceAdapter.aidl92 void setAddress(String callId, in Uri address, int presentation, in Session.Info sessionInfo); in setAddress() argument
94 void setCallerDisplayName(String callId, String callerDisplayName, int presentation, in setCallerDisplayName() argument
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
DDemoPresentation.java17 package com.android.accessorydisplay.source.presentation;
DCubeRenderer.java17 package com.android.accessorydisplay.source.presentation;
DCube.java17 package com.android.accessorydisplay.source.presentation;
/frameworks/base/telephony/java/com/android/ims/
DImsUtInterface.java188 public void updateCOLR(int presentation, Message result); in updateCOLR() argument
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsUt.java516 public void updateCOLR(int presentation, Message result) { in updateCOLR() argument
518 log("updateCOLR :: Ut=" + miUt + ", presentation=" + presentation); in updateCOLR()
523 int id = miUt.updateCOLR(presentation); in updateCOLR()

12