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

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
CompoundPropertyEditorPresentation.java 11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
39 public void add(PropertyEditorPresentation presentation) {
40 m_presentations.add(presentation);
56 for (PropertyEditorPresentation presentation : m_presentations) {
57 int presentationWidth = presentation.show(propertyTable, property, x, y, width, height);
66 for (PropertyEditorPresentation presentation : m_presentations) {
67 presentation.hide(propertyTable, property);
ButtonPropertyEditorPresentationImplMac.java 11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
33 public ButtonPropertyEditorPresentationImplMac(ButtonPropertyEditorPresentation presentation) {
34 super(presentation);
PropertyEditorPresentation.java 11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
18 * Implementations of {@link PropertyEditorPresentation} are used to show some presentation for
26 * Shows presentation for given {@link Property}.
28 * @return the width that this presentation occupies on the right of given rectangle.
38 * Hides presentation.
ButtonPropertyEditorPresentation.java 11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
ButtonPropertyEditorPresentationImpl.java 11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
43 public ButtonPropertyEditorPresentationImpl(ButtonPropertyEditorPresentation presentation) {
44 m_presentation = presentation;
153 * @return the 'parent' presentation. Internal usage only.
  /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;
  /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...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PresentationActivity.java 25 import android.app.Presentation;
53 * <h3>Presentation Activity</h3>
57 * on a secondary display using a {@link Presentation}.
60 * When the user selects a display, the activity opens a {@link Presentation}
61 * on that display. We show a different photograph in each presentation
69 * checkbox to show a presentation on that display.
81 private static final String PRESENTATION_KEY = "presentation";
83 // The content that we want to show on the presentation.
97 // List of presentation contents indexed by displayId.
98 // This state persists so that we can restore the old presentation
177 DemoPresentation presentation = mActivePresentations.valueAt(i); local
204 DemoPresentation presentation = new DemoPresentation(this, display, contents); local
215 DemoPresentation presentation = mActivePresentations.get(displayId); local
    [all...]
  /frameworks/base/libs/input/
PointerController.h 91 virtual void setPresentation(Presentation presentation);
147 Presentation presentation; member in struct:android::PointerController::Locked
  /packages/services/Telecomm/src/com/android/server/telecom/
CallLogManager.java 48 * @param presentation Number presentation of the phone number to be logged.
58 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
63 this.presentation = presentation;
76 public final int presentation; field in class:CallLogManager.AddCallArgs
143 final int presentation = getPresentation(call); local
148 logCall(call.getCallerInfo(), logNumber, presentation, callLogType, callFeatures, local
157 * @param presentation
167 int presentation,
    [all...]
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnection.java 280 int presentation = mOriginalConnection.getNumberPresentation(); local
282 presentation != getAddressPresentation()) {
284 setAddress(address, presentation);
  /cts/tests/tests/display/src/android/display/cts/
VirtualDisplayTest.java 19 import android.app.Presentation;
129 // Show a private presentation on the display.
130 assertDisplayCanShowPresentation("private presentation window",
140 * Ensures that an application can create a private presentation virtual display and show
154 // Show a private presentation on the display.
155 assertDisplayCanShowPresentation("private presentation window",
182 // Show a private presentation on the display.
183 assertDisplayCanShowPresentation("private presentation window",
213 assertNotNull("display must be registered as a presentation display",
217 assertNull("display must not be registered as a presentation display"
235 final TestPresentation[] presentation = new TestPresentation[1]; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/hardware/display/
VirtualDisplayTest.java 19 import android.app.Presentation;
121 // 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",
190 // Presentation case.
191 // Show a normal presentation on the display.
192 assertDisplayCanShowPresentation("presentation window",
196 // Presentation case with secure window (but display is not secure)
288 final TestPresentation[] presentation = new TestPresentation[1]; local
    [all...]
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogFragmentTest.java 375 int presentation = getPhoneNumberPresentationForListEntry(i); local
376 if (presentation == Calls.PRESENTATION_RESTRICTED ||
377 presentation == Calls.PRESENTATION_UNKNOWN) {
432 /** Returns the number presentation associated with the given entry in {{@link #mList}. */
497 * @param presentation Number representing display rules for "allowed",
503 private void insert(String number, int presentation, long date, int duration, int type) {
504 insertValues(getValuesToInsert(number, presentation, date, duration, type));
517 * @param presentation Number representing display rules for "allowed",
523 private Object[] getValuesToInsert(String number, int presentation,
528 values[CallLogQuery.NUMBER_PRESENTATION] = presentation;
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTable.java 48 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
49 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
567 PropertyEditorPresentation presentation = editor.getPresentation(); local
568 if (presentation instanceof ButtonPropertyEditorPresentation) {
570 (ButtonPropertyEditorPresentation) presentation;
619 // update bounds using presentation
621 PropertyEditorPresentation presentation = m_activeEditor.getPresentation(); local
622 if (presentation != null) {
624 presentation.show(
798 // hide presentation
800 PropertyEditorPresentation presentation = property.getEditor().getPresentation(); local
1191 PropertyEditorPresentation presentation = property.getEditor().getPresentation(); local
1517 PropertyEditorPresentation presentation = local
    [all...]