HomeSort by relevance Sort by last modified time
    Searched defs:presentation (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
RemoteViewsHelper.java 38 RemoteViews presentation = new RemoteViews(packageName, local
40 presentation.setTextViewText(R.id.text, remoteViewsText);
41 presentation.setImageViewResource(R.id.icon, drawableId);
42 return presentation;
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
AutofillHelper.java 77 RemoteViews presentation = local
79 presentation.setTextViewText(R.id.text, remoteViewsText);
80 presentation.setImageViewResource(R.id.icon, drawableId);
81 return presentation;
MyAutofillService.java 94 RemoteViews presentation = AutofillHelper local
98 .setAuthentication(autofillIds, sender, presentation);
  /packages/experimental/FillService/src/foo/bar/fill/
AuthActivity.java 56 RemoteViews presentation = new RemoteViews(getPackageName(), R.layout.list_item); local
57 presentation.setTextViewText(R.id.text1,FillService.DATASET2_NAME);
59 dataset = new Dataset.Builder(presentation)
FillService.java 113 RemoteViews presentation = new RemoteViews(getPackageName(), R.layout.pathology); local
115 // presentation.setTextViewText(R.id.text1, "First");
117 // presentation.setOnClickPendingIntent(R.id.text1, PendingIntent.getActivity(
120 // presentation.setTextViewText(R.id.text2, "Second");
122 // presentation.setOnClickPendingIntent(R.id.text2, PendingIntent.getActivity(
127 password.getAutofillId()}, sender, presentation)
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
DemoPresentation.java 17 package com.android.accessorydisplay.source.presentation;
22 import android.app.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
40 public final class DemoPresentation extends Presentation {
57 // Get the resources for the context of the presentation.
58 // Notice that we are getting the resources from the context of the presentation.
Cube.java 17 package com.android.accessorydisplay.source.presentation;
CubeRenderer.java 17 package com.android.accessorydisplay.source.presentation;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
YamlDocument.java 29 private String presentation; field in class:YamlDocument
44 presentation = output.toString(charset.name());
49 // try to read generated presentation to prove that the presentation
51 Object result = yaml.load(presentation);
53 throw new RuntimeException("Generated presentation is not valid: " + presentation);
70 return presentation;
YamlStream.java 41 String presentation; local
43 presentation = output.toString("UTF-8");
47 // try to read generated presentation to prove that the presentation
50 for (Object document : yaml.loadAll(presentation)) {
87 throw new AssertionFailedError("Generated presentation is not the same: "
88 + presentation);
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/simple/
BasicService.java 97 RemoteViews presentation = newDatasetPresentation(packageName, displayValue); local
98 dataset.setValue(id, AutofillValue.forText(value), presentation);
195 * Helper method to create a dataset presentation with the given text.
200 RemoteViews presentation = local
202 presentation.setTextViewText(R.id.text, text);
203 presentation.setImageViewResource(R.id.icon, R.mipmap.ic_launcher);
204 return presentation;
  /cts/tests/tests/media/src/android/media/cts/
AudioPresentationTest.java 42 AudioPresentation presentation = new AudioPresentation( local
51 assertEquals(PRESENTATION_ID, presentation.getPresentationId());
52 assertEquals(PROGRAM_ID, presentation.getProgramId());
54 presentation.getLabels().toString().toLowerCase());
56 presentation.getLocale().toString().toLowerCase());
57 assertEquals(MASTERING_INDICATION, presentation.getMasteringIndication());
58 assertEquals(HAS_AUDIO_DESCRIPTION, presentation.hasAudioDescription());
59 assertEquals(HAS_SPOKEN_SUBTITLES, presentation.hasSpokenSubtitles());
60 assertEquals(HAS_DIALOGUE_ENHANCEMENT, presentation.hasDialogueEnhancement());
  /packages/services/Telephony/src/com/android/phone/
CallLogger.java 71 // TODO: In getLogNumber we use the presentation from
76 final int presentation = getPresentation(c, ci); local
83 logCall(ci, logNumber, presentation, callLogType, date, duration);
110 public void logCall(CallerInfo ci, String number, int presentation, int callType, long start,
143 * Apply the Call Name Presentation (CNAP) transform in the connection on the number.
176 int presentation = conn.getNumberPresentation(); local
180 number, presentation);
191 * Get the presentation from the callerinfo if not null otherwise,
196 * @return The presentation to use in the logs.
199 int presentation; local
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
AutoFillServiceTestCase.java 206 final RemoteViews presentation = new RemoteViews(getContext() local
208 presentation.setTextViewText(R.id.text1, message);
209 return presentation;
CustomDescriptionWithLinkTestCase.java 253 final RemoteViews presentation = new RemoteViews(mPackageName, local
255 return presentation;
271 final RemoteViews presentation = newTemplate(); local
273 presentation.setOnClickPendingIntent(R.id.link, pendingIntent);
274 return new CustomDescription.Builder(presentation);
CheckoutActivityTest.java 272 final RemoteViews presentation = new RemoteViews(packageName, local
288 final CustomDescription customDescription = new CustomDescription.Builder(presentation)
352 final RemoteViews presentation = new RemoteViews(packageName, local
360 final CustomDescription customDescription = new CustomDescription.Builder(presentation)
CustomDescriptionTest.java 105 RemoteViews presentation = newTemplate(R.layout.two_horizontal_text_fields);
116 return new CustomDescription.Builder(presentation)
126 RemoteViews presentation = newTemplate(R.layout.two_horizontal_text_fields);
140 return new CustomDescription.Builder(presentation)
152 RemoteViews presentation = newTemplate(R.layout.two_horizontal_text_fields);
178 return new CustomDescription.Builder(presentation)
263 final RemoteViews presentation =
282 return new CustomDescription.Builder(presentation)
312 final RemoteViews presentation =
330 return new CustomDescription.Builder(presentation)
450 RemoteViews presentation = newTemplate(R.layout.two_horizontal_text_fields); local
    [all...]
LoginActivityTest.java 2270 RemoteViews presentation = new RemoteViews(mPackageName, R.layout.list_item); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PresentationActivity.java 25 import android.app.Presentation;
57 * <h3>Presentation Activity</h3>
61 * on a secondary display using a {@link Presentation}.
64 * When the user selects a display, the activity opens a {@link Presentation}
65 * on that display. We show a different photograph in each presentation
73 * checkbox to show a presentation on that display.
85 private static final String PRESENTATION_KEY = "presentation";
87 // The content that we want to show on the presentation.
101 // List of presentation contents indexed by displayId.
102 // This state persists so that we can restore the old presentation
181 DemoPresentation presentation = mActivePresentations.valueAt(i); local
208 DemoPresentation presentation = new DemoPresentation(this, display, contents); local
219 DemoPresentation presentation = mActivePresentations.get(displayId); local
236 DemoPresentation presentation = mActivePresentations.get(displayId); local
387 DemoPresentation presentation = mActivePresentations.get(displayId); local
    [all...]
  /frameworks/base/libs/input/
PointerController.h 103 virtual void setPresentation(Presentation presentation);
166 Presentation presentation; member in struct:android::PointerController::Locked
  /packages/services/Telecomm/src/com/android/server/telecom/callfiltering/
AsyncBlockCheckFilter.java 63 int presentation = mIncomingCall.getHandlePresentation(); local
64 if (presentation == TelecomManager.PRESENTATION_ALLOWED) {
70 execute(number, String.valueOf(presentation),
80 this.execute(number, String.valueOf(presentation));
  /packages/services/Telephony/src/com/android/services/telephony/
ConferenceParticipantConnection.java 68 int presentation = getParticipantPresentation(participant); local
70 if (presentation != PhoneConstants.PRESENTATION_ALLOWED) {
76 setAddress(address, presentation);
77 setCallerDisplayName(participant.getDisplayName(), presentation); local
164 * Determines the number presentation for a conference participant. Per RFC5767, if the host
169 * @return The number presentation.
178 // If no number, bail early and set restricted presentation.
202 // If the hostname portion of the SIP URI is the invalid host string, presentation is
PstnIncomingCallNotifier.java 145 int presentation = connection.getNumberPresentation(); local
147 if (presentation != PhoneConstants.PRESENTATION_ALLOWED
148 && presentation == ccwi.numberPresentation) {
149 // Presentation of number not allowed, but the presentation of the Connection
150 // and the call waiting presentation match.
152 + "presentation = %d", presentation);
155 // Presentation of the number is allowed, so we ensure the number matches the
161 Log.w(this, "handleCdmaCallWaiting: presentation or number do not match, not
    [all...]
  /packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/
InstrumentClusterController.java 21 import android.app.Presentation;
101 Presentation presentation = new InstrumentClusterPresentation(mContext, display); local
102 presentation.setContentView(mClusterView);
129 presentation.show();
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnection.java 311 int presentation = mOriginalConnection.getNumberPresentation(); local
313 presentation != getAddressPresentation()) {
315 setAddress(address, presentation);

Completed in 426 milliseconds

1 2 3 4