/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 | 70 // TODO: In getLogNumber we use the presentation from 75 final int presentation = getPresentation(c, ci); local 82 logCall(ci, logNumber, presentation, callLogType, date, duration); 109 public void logCall(CallerInfo ci, String number, int presentation, int callType, long start, 128 + "," + presentation + ", " + callType + ", " + start + ", " + duration); 132 presentation, callType, start, duration); 165 * Apply the Call Name Presentation (CNAP) transform in the connection on the number. 198 int presentation = conn.getNumberPresentation(); local 202 number, presentation); 213 * Get the presentation from the callerinfo if not null otherwise 221 int presentation; local [all...] |
RejectWithTextMessageManager.java | 172 * - a "call presentation" that doesn't allow the number to be revealed 227 // Finally, check the "call presentation": 228 int presentation = conn.getNumberPresentation(); local 229 if (DBG) log("- presentation: " + presentation); 230 if (presentation == PhoneConstants.PRESENTATION_RESTRICTED) {
|
NotificationMgr.java | 309 public int presentation; field in class:NotificationMgr.QueryHandler.NotificationInfo 401 notifyMissedCall(n.name, n.number, n.presentation, n.type, null, null, 418 notifyMissedCall(n.name, n.number, n.presentation, n.type, photo, photoIcon, n.date); 429 n.presentation = cursor.getInt(cursor.getColumnIndexOrThrow(Calls.NUMBER_PRESENTATION)); 437 if (n.presentation != Calls.PRESENTATION_ALLOWED) { 475 /* package */ void notifyMissedCall(String name, String number, int presentation, String type, 546 && (presentation == PhoneConstants.PRESENTATION_ALLOWED || 547 presentation == PhoneConstants.PRESENTATION_PAYPHONE)) { [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...] |
/packages/apps/PhoneCommon/src/com/android/phone/common/ |
CallLogAsync.java | 41 * this, ci, number, presentation, type, timestamp, duration); 64 * @param presentation Of the number. 73 int presentation, 97 this.presentation = presentation; 107 public final int presentation; field in class:CallLogAsync.AddCallArgs 164 c.ci, c.context, c.number, c.presentation,
|
/frameworks/base/services/input/ |
PointerController.h | 84 enum Presentation { 92 virtual void setPresentation(Presentation presentation) = 0; 168 virtual void setPresentation(Presentation presentation); 224 Presentation presentation; member in struct:android::PointerController::Locked
|
/cts/tests/tests/display/src/android/display/cts/ |
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", 172 assertNotNull("display must be registered as a presentation display", 176 assertNull("display must not be registered as a presentation display", 194 final TestPresentation[] presentation = new TestPresentation[1]; local 196 // Show the presentation [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...] |
/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...] |
/cts/tests/tests/media/src/android/media/cts/ |
EncodeVirtualDisplayTest.java | 19 import android.app.Presentation; 52 * just throwing a Presentation and a View at it. Further, it's possible that frames 482 final TestPresentation[] presentation = new TestPresentation[1]; local 487 // Want to create presentation on UI thread so it finds the right Looper 489 presentation[0] = new TestPresentation(getContext(), mDisplay, color); 491 presentation[0].show(); 495 // Give the presentation an opportunity to render. We don't have a way to 500 if (presentation[0] != null) { 504 presentation[0].dismiss(); 535 * Presentation we can show on a virtual display. The view is set to a single color value [all...] |
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/ |
CallLogFragmentTest.java | 380 int presentation = getPhoneNumberPresentationForListEntry(i); local 381 if (presentation == Calls.PRESENTATION_RESTRICTED || 382 presentation == Calls.PRESENTATION_UNKNOWN) { 447 /** Returns the number presentation associated with the given entry in {{@link #mList}. */ 512 * @param presentation Number representing display rules for "allowed", 518 private void insert(String number, int presentation, long date, int duration, int type) { 519 insertValues(getValuesToInsert(number, presentation, date, duration, type)); 532 * @param presentation Number representing display rules for "allowed", 538 private Object[] getValuesToInsert(String number, int presentation, 543 values[CallLogQuery.NUMBER_PRESENTATION] = presentation; [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar | |
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar | |
/prebuilts/tools/common/eclipse/ |
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar | |