/frameworks/base/services/java/com/android/server/display/ |
DisplayViewport.java | 34 public int displayId; 55 displayId = viewport.displayId; 67 + ", displayId=" + displayId
|
DisplayManagerService.java | 321 * @param displayId The logical display id. 325 int displayId, DisplayInfo info) { 327 LogicalDisplay display = mLogicalDisplays.get(displayId); 330 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_CHANGED); 386 * @param displayId The logical display id. 391 public DisplayInfo getDisplayInfo(int displayId) { 396 LogicalDisplay display = mLogicalDisplays.get(displayId); [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowDisplay.java | 16 private int displayId; 51 return displayId; 109 public void setDisplayId(int displayId) { 110 this.displayId = displayId;
|
/frameworks/base/cmds/screencap/ |
screencap.cpp | 95 int32_t displayId = DEFAULT_DISPLAY_ID; 103 displayId = atoi(optarg); 143 sp<IBinder> display = SurfaceComposerClient::getBuiltInDisplay(displayId);
|
/frameworks/base/services/java/com/android/server/input/ |
InputWindowHandle.java | 92 public final int displayId; 97 Object windowState, int displayId) { 100 this.displayId = displayId;
|
/frameworks/base/core/java/android/app/ |
ResourcesManager.java | 73 public DisplayMetrics getDisplayMetricsLocked(int displayId) { 74 return getDisplayMetricsLocked(displayId, DisplayAdjustments.DEFAULT_DISPLAY_ADJUSTMENTS); 77 public DisplayMetrics getDisplayMetricsLocked(int displayId, DisplayAdjustments daj) { 78 boolean isDefaultDisplay = (displayId == Display.DEFAULT_DISPLAY); 96 Display d = displayManager.getCompatibleDisplay(displayId, daj); 150 public Resources getTopLevelResources(String resDir, int displayId, 153 ResourcesKey key = new ResourcesKey(resDir, displayId, overrideConfiguration, scale, 184 DisplayMetrics dm = getDisplayMetricsLocked(displayId); 186 boolean isDefaultDisplay = (displayId == Display.DEFAULT_DISPLAY); 262 int displayId = key.mDisplayId [all...] |
ContextImpl.java | [all...] |
/frameworks/base/services/input/ |
InputListener.h | 91 int32_t displayId; 103 int32_t edgeFlags, int32_t displayId, uint32_t pointerCount,
|
InputWindow.h | 138 int32_t displayId;
|
InputDispatcher.h | 517 int32_t displayId; 527 nsecs_t downTime, int32_t displayId, uint32_t pointerCount, 705 bool isHovering(int32_t deviceId, uint32_t source, int32_t displayId) const; 761 int32_t displayId; 881 sp<InputWindowHandle> findTouchedWindowAtLocked(int32_t displayId, int32_t x, int32_t y); [all...] |
InputDispatcher.cpp | 171 static bool isMainDisplay(int32_t displayId) { 172 return displayId == ADISPLAY_ID_DEFAULT || displayId == ADISPLAY_ID_NONE; 438 int32_t displayId = motionEntry->displayId; 443 sp<InputWindowHandle> touchedWindowHandle = findTouchedWindowAtLocked(displayId, x, y); 468 sp<InputWindowHandle> InputDispatcher::findTouchedWindowAtLocked(int32_t displayId, 475 if (windowInfo->displayId == displayId) { 862 if (isMainDisplay(entry->displayId)) { [all...] |
InputReader.cpp | 208 if (viewport.displayId >= 0) { [all...] |
InputReader.h | 55 int32_t displayId; // -1 if invalid 69 displayId(ADISPLAY_ID_NONE), orientation(DISPLAY_ORIENTATION_0), 76 return displayId == other.displayId 95 return displayId >= 0; 99 displayId = ADISPLAY_ID_NONE; [all...] |
/frameworks/base/services/jni/ |
com_android_server_input_InputWindowHandle.cpp | 56 jfieldID displayId; 158 mInfo->displayId = env->GetIntField(obj, 159 gInputWindowHandleClassInfo.displayId); 304 GET_FIELD_ID(gInputWindowHandleClassInfo.displayId, clazz, 305 "displayId", "I");
|
/frameworks/base/services/java/com/android/server/wm/ |
DimLayer.java | 57 final int displayId = mDisplayContent.getDisplayId(); 58 if (DEBUG) Slog.v(TAG, "Ctor: displayId=" + displayId); 74 mDimSurface.setLayerStack(displayId);
|
WindowAnimator.java | 104 void addDisplayLocked(final int displayId) { 106 getDisplayContentsAnimatorLocked(displayId); 107 if (displayId == Display.DEFAULT_DISPLAY) { 112 void removeDisplayLocked(final int displayId) { 113 final DisplayContentsAnimator displayAnimator = mDisplayContentsAnimators.get(displayId); 121 mDisplayContentsAnimators.delete(displayId); 153 private void updateAppWindowsLocked(int displayId) { 154 final DisplayContent displayContent = mService.getDisplayContentLocked(displayId); 194 private void updateWindowsLocked(final int displayId) { 197 final WindowList windows = mService.getWindowListLocked(displayId); [all...] |
WindowStateAnimator.java | 370 final int displayId = mWin.mDisplayContent.getDisplayId(); 371 mAnimator.setPendingLayoutChanges(displayId, WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM); 373 "WindowStateAnimator", mAnimator.getPendingLayoutChanges(displayId)); [all...] |
WindowManagerService.java | [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
PresentationActivity.java | 97 // List of presentation contents indexed by displayId. 178 int displayId = mActivePresentations.keyAt(i); 179 mSavedPresentationContents.put(displayId, presentation.mContents); 196 final int displayId = display.getDisplayId(); 197 if (mActivePresentations.get(displayId) != null) { 202 + " on display #" + displayId + "."); 207 mActivePresentations.put(displayId, presentation); 214 final int displayId = display.getDisplayId(); 215 DemoPresentation presentation = mActivePresentations.get(displayId); 220 Log.d(TAG, "Dismissing presentation on display #" + displayId + ".") [all...] |
/frameworks/base/core/java/android/hardware/display/ |
DisplayManagerGlobal.java | 102 * @param displayId The logical display id. 106 public DisplayInfo getDisplayInfo(int displayId) { 111 info = mDisplayInfoCache.get(displayId); 117 info = mDm.getDisplayInfo(displayId); 123 mDisplayInfoCache.put(displayId, info); 128 Log.d(TAG, "getDisplayInfo: displayId=" + displayId + ", info=" + info); 171 * @param displayId The logical display id. 175 public Display getCompatibleDisplay(int displayId, DisplayAdjustments daj) { 176 DisplayInfo displayInfo = getDisplayInfo(displayId); [all...] |
/frameworks/base/services/java/com/android/server/media/ |
MediaRouterService.java | [all...] |
/development/samples/training/NavigationDrawer/libs/ |
android-support-v4.jar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/18.0.0/ |
support-v4-18.0.0.jar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/19.0.0/ |
support-v4-19.0.0.jar | |
/prebuilts/sdk/17/ |
android.jar | |