Home
last modified time | relevance | path

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

12

/frameworks/av/media/module/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.java205 RemoteViews presentation, in Dataset() argument
220 mPresentation = presentation; in Dataset()
474 public Builder(@NonNull RemoteViews presentation) { in Builder() argument
475 Objects.requireNonNull(presentation, "presentation must be non-null"); in Builder()
476 mPresentation = presentation; in Builder()
756 @NonNull RemoteViews presentation) { in setValue() argument
758 Objects.requireNonNull(presentation, "presentation cannot be null"); in setValue()
759 setLifeTheUniverseAndEverything(id, value, presentation, null, null, null, null); in setValue()
834 @Nullable Pattern filter, @NonNull RemoteViews presentation) { in setValue() argument
836 Objects.requireNonNull(presentation, "presentation cannot be null"); in setValue()
[all …]
DInlineSuggestionRenderService.java132 InlinePresentation presentation, int width, int height, IBinder hostInputToken, in handleRenderSuggestion() argument
146 final View suggestionView = onRenderSuggestion(presentation, width, height); in handleRenderSuggestion()
158 presentation.getInlinePresentationSpec().getMinSize(), in handleRenderSuggestion()
159 presentation.getInlinePresentationSpec().getMaxSize()); in handleRenderSuggestion()
341 @NonNull InlinePresentation presentation, int width, int height, in onBind()
346 InlineSuggestionRenderService.this, callback, presentation, in onBind()
397 public View onRenderSuggestion(@NonNull InlinePresentation presentation, int width,
DFillResponse.java157 RemoteViews presentation, InlinePresentation inlinePresentation, in FillResponse() argument
170 mPresentation = presentation; in FillResponse()
502 @Nullable IntentSender authentication, @Nullable RemoteViews presentation) { in setAuthentication() argument
509 if (authentication == null ^ presentation == null) { in setAuthentication()
514 mPresentation = presentation; in setAuthentication()
565 @Nullable IntentSender authentication, @Nullable RemoteViews presentation, in setAuthentication() argument
567 return setAuthentication(ids, authentication, presentation, inlinePresentation, null); in setAuthentication()
585 @Nullable IntentSender authentication, @Nullable RemoteViews presentation, in setAuthentication() argument
590 return setAuthentication(ids, authentication, presentation, in setAuthentication()
683 @Nullable IntentSender authentication, @Nullable RemoteViews presentation, in setAuthentication() argument
[all …]
DIInlineSuggestionRenderService.aidl31 in InlinePresentation presentation, int width, int height, in renderSuggestion() argument
/frameworks/base/libs/input/
DPointerController.cpp109 mLocked.presentation = Presentation::SPOT; in PointerController()
173 void PointerController::setPresentation(Presentation presentation) { in setPresentation() argument
176 if (mLocked.presentation == presentation) { in setPresentation()
180 mLocked.presentation = presentation; in setPresentation()
186 if (presentation == Presentation::POINTER || presentation == Presentation::STYLUS_HOVER) { in setPresentation()
189 mCursorController.setStylusHoverMode(presentation == Presentation::STYLUS_HOVER); in setPresentation()
244 if (mLocked.presentation == PointerController::Presentation::POINTER || in reloadPointerResources()
245 mLocked.presentation == PointerController::Presentation::STYLUS_HOVER) { in reloadPointerResources()
263 if (mLocked.presentation == PointerController::Presentation::POINTER || in setDisplayViewport()
264 mLocked.presentation == PointerController::Presentation::STYLUS_HOVER) { in setDisplayViewport()
[all …]
DPointerController.h63 void setPresentation(Presentation presentation) override;
108 Presentation presentation; member
/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/packages/SystemUI/src/com/android/keyguard/
DKeyguardDisplayManager.java176 Presentation presentation = mPresentations.get(displayId); in showPresentation() local
177 if (presentation == null) { in showPresentation()
184 presentation = newPresentation; in showPresentation()
186 presentation.show(); in showPresentation()
189 presentation = null; in showPresentation()
191 if (presentation != null) { in showPresentation()
192 mPresentations.append(displayId, presentation); in showPresentation()
211 final Presentation presentation = mPresentations.get(displayId); in hidePresentation() local
212 if (presentation != null) { in hidePresentation()
213 presentation.dismiss(); in hidePresentation()
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
DDialogFillUi.java212 final RemoteViews presentation = in setHeader() local
214 if (presentation == null) { in setHeader()
226 final View content = presentation.applyWithTheme( in setHeader()
248 RemoteViews presentation = Helper.sanitizeRemoteView( in initialAuthenticationLayout() local
250 if (presentation == null) { in initialAuthenticationLayout()
251 presentation = Helper.sanitizeRemoteView(response.getPresentation()); in initialAuthenticationLayout()
253 if (presentation == null) { in initialAuthenticationLayout()
265 final View content = presentation.applyWithTheme( in initialAuthenticationLayout()
295 RemoteViews presentation = Helper.sanitizeRemoteView( in createDatasetItems() local
297 if (presentation == null) { in createDatasetItems()
[all …]
/frameworks/base/core/java/android/provider/
DCallLog.java472 public @NonNull AddCallParametersBuilder setPresentation(int presentation) { in setPresentation() argument
473 mPresentation = presentation; in setPresentation()
686 String viaNumber, int presentation, int callType, int features, in AddCallParams() argument
698 mPresentation = presentation; in AddCallParams()
1553 int presentation, int callType, int features, in addCall() argument
1558 presentation, callType, features, accountHandle, start, duration, in addCall()
1596 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument
1600 return addCall(ci, context, number, postDialDigits, viaNumber, presentation, callType, in addCall()
1650 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument
1662 builder.setPresentation(presentation); in addCall()
[all …]
/frameworks/base/telephony/java/android/telephony/ims/stub/
DImsUtImplBase.java217 public int updateCOLR(int presentation) throws RemoteException {
218 return executeMethodAsyncForResult(() -> ImsUtImplBase.this.updateCOLR(presentation),
470 public int updateCOLR(int presentation) { in updateCOLR() argument
471 return updateColr(presentation); in updateCOLR()
499 public int updateColr(int presentation) { in updateColr() argument
/frameworks/base/telecomm/java/android/telecom/
DConference.java72 public void onAddressChanged(Conference c, Uri newAddress, int presentation) {} in onAddressChanged() argument
75 Conference c, String callerDisplayName, int presentation) {} in onCallerDisplayNameChanged() argument
1142 @TelecomManager.Presentation int presentation) { in setAddress() argument
1145 mAddressPresentation = presentation; in setAddress()
1147 l.onAddressChanged(this, address, presentation); in setAddress()
1228 @TelecomManager.Presentation int presentation) { in setCallerDisplayName() argument
1231 mCallerDisplayNamePresentation = presentation; in setCallerDisplayName()
1233 l.onCallerDisplayNameChanged(this, callerDisplayName, presentation); in setCallerDisplayName()
DRemoteConnection.java155 public void onAddressChanged(RemoteConnection connection, Uri address, int presentation) {} in onAddressChanged() argument
167 RemoteConnection connection, String callerDisplayName, int presentation) {} in onCallerDisplayNameChanged() argument
1515 void setAddress(final Uri address, final int presentation) { in setAddress() argument
1517 mAddressPresentation = presentation; in setAddress()
1524 callback.onAddressChanged(connection, address, presentation); in setAddress()
1531 void setCallerDisplayName(final String callerDisplayName, final int presentation) { in setCallerDisplayName() argument
1533 mCallerDisplayNamePresentation = presentation; in setCallerDisplayName()
1541 connection, callerDisplayName, presentation); in setCallerDisplayName()
DConnectionServiceAdapter.java403 void setAddress(String callId, Uri address, int presentation) { in setAddress() argument
406 adapter.setAddress(callId, address, presentation, Log.getExternalSession()); in setAddress()
412 void setCallerDisplayName(String callId, String callerDisplayName, int presentation) { in setCallerDisplayName() argument
415 adapter.setCallerDisplayName(callId, callerDisplayName, presentation, in setCallerDisplayName()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/dagger/
DKeyguardStatusViewComponent.java37 KeyguardStatusViewComponent build(@BindsInstance KeyguardStatusView presentation); in build() argument
/frameworks/base/apct-tests/perftests/autofill/src/android/view/autofill/
DMyAutofillService.java242 RemoteViews presentation = in newDatasetPresentation() local
244 presentation.setTextViewText(R.id.text, text); in newDatasetPresentation()
245 return presentation; in newDatasetPresentation()
/frameworks/base/services/autofill/java/com/android/server/autofill/
DRemoteInlineSuggestionRenderService.java90 @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/com/android/ims/internal/
DIImsUt.aidl103 int updateCOLR(int presentation); in updateCOLR() argument
/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/area/
DWindowAreaComponentImpl.java440 ExtensionWindowAreaPresentation presentation = null; in getRearDisplayPresentation() local
442 presentation = mRearDisplayPresentationController.getWindowAreaPresentation(); in getRearDisplayPresentation()
444 return presentation; in getRearDisplayPresentation()
/frameworks/base/telephony/java/android/telephony/ims/
DImsCallProfile.java991 public static int presentationToOIR(int presentation) { in presentationToOIR() argument
992 switch (presentation) { in presentationToOIR()
1013 public static int presentationToOir(int presentation) { in presentationToOir() argument
1014 return presentationToOIR(presentation); in presentationToOir()
/frameworks/native/services/inputflinger/include/
DPointerControllerInterface.h96 virtual void setPresentation(Presentation presentation) = 0;
/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;
/frameworks/base/telecomm/java/com/android/internal/telecom/
DIConnectionServiceAdapter.aidl100 void setAddress(String callId, in Uri address, int presentation, in Session.Info sessionInfo); in setAddress() argument
102 void setCallerDisplayName(String callId, String callerDisplayName, int presentation, in setCallerDisplayName() argument

12