Searched refs:presentation (Results 1 - 22 of 22) sorted by relevance

/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsUt.aidl102 int updateCOLR(int presentation);
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DIConnectionServiceAdapter.aidl77 void setAddress(String callId, in Uri address, int presentation);
79 void setCallerDisplayName(String callId, String callerDisplayName, int presentation);
/frameworks/native/services/inputflinger/
H A DPointerControllerInterface.h85 virtual void setPresentation(Presentation presentation) = 0;
/frameworks/base/core/java/android/provider/
H A DCallLog.java194 public static final String NUMBER_PRESENTATION = "presentation";
373 * @param presentation enum value from PhoneConstants.PRESENTATION_xxx, which
388 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
390 return addCall(ci, context, number, presentation, callType, features, accountHandle,
402 * @param presentation enum value from PhoneConstants.PRESENTATION_xxx, which
420 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
425 // Remap network specified number presentation types
426 // PhoneConstants.PRESENTATION_xxx to calllog number presentation types
429 // If the number field is empty set the presentation type to Unknown.
430 if (presentation
387 addCall(CallerInfo ci, Context context, String number, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage) argument
419 addCall(CallerInfo ci, Context context, String number, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage, boolean addForAllUsers) argument
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DRemoteConnection.java136 * @param presentation The presentation requirements for the address.
139 public void onAddressChanged(RemoteConnection connection, Uri address, int presentation) {} argument
147 * @param presentation The presentation requirements for the handle.
151 RemoteConnection connection, String callerDisplayName, int presentation) {}
546 * Obtains the presentation requirements for the address of this {@code RemoteConnection}.
548 * @return The presentation requirements for the address. See
565 * Obtains the presentation requirements for this {@code RemoteConnection}'s
568 * @return The presentation requirement
150 onCallerDisplayNameChanged( RemoteConnection connection, String callerDisplayName, int presentation) argument
924 setAddress(Uri address, int presentation) argument
933 setCallerDisplayName(String callerDisplayName, int presentation) argument
[all...]
H A DConnectionServiceAdapter.java308 void setAddress(String callId, Uri address, int presentation) { argument
311 adapter.setAddress(callId, address, presentation);
317 void setCallerDisplayName(String callId, String callerDisplayName, int presentation) { argument
320 adapter.setCallerDisplayName(callId, callerDisplayName, presentation);
H A DConnection.java252 public void onAddressChanged(Connection c, Uri newAddress, int presentation) {} argument
254 Connection c, String callerDisplayName, int presentation) {}
689 * @return The presentation requirements for the address.
704 * @return The presentation requirements for the handle.
861 * @param presentation The presentation requirements for the address.
864 public final void setAddress(Uri address, int presentation) { argument
868 mAddressPresentation = presentation;
870 l.onAddressChanged(this, address, presentation);
878 * @param presentation Th
253 onCallerDisplayNameChanged( Connection c, String callerDisplayName, int presentation) argument
881 setCallerDisplayName(String callerDisplayName, int presentation) argument
[all...]
H A DConnectionServiceAdapterServant.java352 public final void setAddress(String connectionId, Uri address, int presentation) {
356 args.argi1 = presentation;
362 String connectionId, String callerDisplayName, int presentation) {
366 args.argi1 = presentation;
H A DRemoteConnectionService.java265 public void setAddress(String callId, Uri address, int presentation) {
267 .setAddress(address, presentation);
272 int presentation) {
274 .setCallerDisplayName(callerDisplayName, presentation);
H A DConnectionService.java462 public void onAddressChanged(Connection c, Uri address, int presentation) {
464 mAdapter.setAddress(id, address, presentation);
469 Connection c, String callerDisplayName, int presentation) {
471 mAdapter.setCallerDisplayName(id, callerDisplayName, presentation);
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
H A DDemoPresentation.java17 package com.android.accessorydisplay.source.presentation;
33 * The presentation to show on the accessory display.
36 * the main activity is showing so we must be careful to use the presentation's
57 // Get the resources for the context of the presentation.
58 // Notice that we are getting the resources from the context of the presentation.
H A DCube.java17 package com.android.accessorydisplay.source.presentation;
H A DCubeRenderer.java17 package com.android.accessorydisplay.source.presentation;
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsUtInterface.java173 public void updateCOLR(int presentation, Message result); argument
H A DImsUt.java459 public void updateCOLR(int presentation, Message result) { argument
461 log("updateCOLR :: Ut=" + miUt + ", presentation=" + presentation);
466 int id = miUt.updateCOLR(presentation);
/frameworks/base/libs/input/
H A DPointerController.cpp67 mLocked.presentation = PRESENTATION_POINTER;
228 void PointerController::setPresentation(Presentation presentation) { argument
231 if (mLocked.presentation != presentation) {
232 mLocked.presentation = presentation;
235 if (presentation != PRESENTATION_SPOT) {
497 mLocked.pointerSprite->setIcon(mLocked.presentation == PRESENTATION_POINTER
H A DPointerController.h91 virtual void setPresentation(Presentation presentation);
147 Presentation presentation; member in struct:android::PointerController::Locked
/frameworks/base/core/tests/coretests/src/android/hardware/display/
H A DVirtualDisplayTest.java121 // Show a private presentation on the display.
122 assertDisplayCanShowPresentation("private presentation window",
132 * Ensures that an application can create a private presentation virtual display and show
145 // Show a private presentation on the display.
146 assertDisplayCanShowPresentation("private presentation window",
191 // Show a normal presentation on the display.
192 assertDisplayCanShowPresentation("presentation window",
197 // Show a normal presentation on the display. It should be replaced with black.
198 assertDisplayCanShowPresentation("secure presentation window on non-secure display",
238 // Show a normal presentation o
[all...]
/frameworks/base/telephony/java/com/android/ims/
H A DImsCallProfile.java123 * oir : Rule for originating identity (number) presentation, MO/MT.
127 * cnap : Rule for calling name presentation
358 * Translate presentation value to OIR value
359 * @param presentation
362 public static int presentationToOIR(int presentation) { argument
363 switch (presentation) {
374 * Translate OIR value to presentation value
376 * @return presentation value
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
H A DSourceActivity.java20 import com.android.accessorydisplay.source.presentation.DemoPresentation;
/frameworks/av/media/libstagefright/
H A DACodec.cpp1875 OMX_AUDIO_PARAM_ANDROID_AACPRESENTATIONTYPE presentation; local
1876 presentation.nMaxOutputChannels = maxOutputChannelCount;
1877 presentation.nDrcCut = drc.drcCut;
1878 presentation.nDrcBoost = drc.drcBoost;
1879 presentation.nHeavyCompression = drc.heavyCompression;
1880 presentation.nTargetReferenceLevel = drc.targetRefLevel;
1881 presentation.nEncodedTargetLevel = drc.encodedTargetLevel;
1882 presentation.nPCMLimiterEnable = pcmLimiterEnable;
1888 &presentation, sizeof(presentation));
[all...]
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp113 virtual void setPresentation(Presentation presentation) { argument

Completed in 1785 milliseconds