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

/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsUt.aidl103 int updateCOLR(int presentation);
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DIConnectionServiceAdapter.aidl80 void setAddress(String callId, in Uri address, int presentation);
82 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.java199 public static final String NUMBER_PRESENTATION = "presentation";
406 * @param presentation enum value from PhoneConstants.PRESENTATION_xxx, which
421 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
423 return addCall(ci, context, number, presentation, callType, features, accountHandle,
435 * @param presentation enum value from PhoneConstants.PRESENTATION_xxx, which
453 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
455 return addCall(ci, context, number, presentation, callType, features, accountHandle,
466 * @param presentation enum value from PhoneConstants.PRESENTATION_xxx, which
486 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
507 // Remap network specified number presentation type
420 addCall(CallerInfo ci, Context context, String number, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage) argument
452 addCall(CallerInfo ci, Context context, String number, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage, boolean addForAllUsers) argument
485 addCall(CallerInfo ci, Context context, String number, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage, boolean addForAllUsers, boolean is_read) argument
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DConnectionServiceAdapter.java335 void setAddress(String callId, Uri address, int presentation) { argument
338 adapter.setAddress(callId, address, presentation);
344 void setCallerDisplayName(String callId, String callerDisplayName, int presentation) { argument
347 adapter.setCallerDisplayName(callId, callerDisplayName, presentation);
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) {}
740 * Obtains the presentation requirements for the address of this {@code RemoteConnection}.
742 * @return The presentation requirements for the address. See
759 * Obtains the presentation requirements for this {@code RemoteConnection}'s
762 * @return The presentation requirement
150 onCallerDisplayNameChanged( RemoteConnection connection, String callerDisplayName, int presentation) argument
1213 setAddress(final Uri address, final int presentation) argument
1229 setCallerDisplayName(final String callerDisplayName, final int presentation) argument
[all...]
H A DConnectionServiceAdapterServant.java379 public final void setAddress(String connectionId, Uri address, int presentation) {
383 args.argi1 = presentation;
389 String connectionId, String callerDisplayName, int presentation) {
393 args.argi1 = presentation;
H A DRemoteConnectionService.java278 public void setAddress(String callId, Uri address, int presentation) {
280 .setAddress(address, presentation);
285 int presentation) {
287 .setCallerDisplayName(callerDisplayName, presentation);
H A DConnection.java398 public void onAddressChanged(Connection c, Uri newAddress, int presentation) {} argument
400 Connection c, String callerDisplayName, int presentation) {}
1097 * @return The presentation requirements for the address.
1112 * @return The presentation requirements for the handle.
1301 * @param presentation The presentation requirements for the address.
1304 public final void setAddress(Uri address, int presentation) { argument
1308 mAddressPresentation = presentation;
1310 l.onAddressChanged(this, address, presentation);
1318 * @param presentation Th
399 onCallerDisplayNameChanged( Connection c, String callerDisplayName, int presentation) argument
1321 setCallerDisplayName(String callerDisplayName, int presentation) argument
[all...]
H A DConnectionService.java486 public void onAddressChanged(Connection c, Uri address, int presentation) {
488 mAdapter.setAddress(id, address, presentation);
493 Connection c, String callerDisplayName, int presentation) {
495 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.java460 public void updateCOLR(int presentation, Message result) { argument
462 log("updateCOLR :: Ut=" + miUt + ", presentation=" + presentation);
467 int id = miUt.updateCOLR(presentation);
/frameworks/base/libs/input/
H A DPointerController.cpp70 mLocked.presentation = PRESENTATION_POINTER;
231 void PointerController::setPresentation(Presentation presentation) { argument
234 if (mLocked.presentation != presentation) {
235 mLocked.presentation = presentation;
238 if (presentation != PRESENTATION_SPOT) {
500 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
392 * Translate presentation value to OIR value
393 * @param presentation
396 public static int presentationToOIR(int presentation) { argument
397 switch (presentation) {
412 * Translate OIR value to presentation value
414 * @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.cpp2420 OMX_AUDIO_PARAM_ANDROID_AACPRESENTATIONTYPE presentation; local
2421 presentation.nMaxOutputChannels = maxOutputChannelCount;
2422 presentation.nDrcCut = drc.drcCut;
2423 presentation.nDrcBoost = drc.drcBoost;
2424 presentation.nHeavyCompression = drc.heavyCompression;
2425 presentation.nTargetReferenceLevel = drc.targetRefLevel;
2426 presentation.nEncodedTargetLevel = drc.encodedTargetLevel;
2427 presentation.nPCMLimiterEnable = pcmLimiterEnable;
2433 &presentation, sizeof(presentation));
[all...]

Completed in 8855 milliseconds