Searched refs:windowId (Results 1 – 8 of 8) sorted by relevance
/packages/apps/Car/RotaryController/src/com/android/car/rotary/ |
D | WindowCache.java | 52 void saveFocusedNode(int windowId, @NonNull AccessibilityNodeInfo focusedNode) { in saveFocusedNode() argument 53 if (mFocusedNodes.containsKey(windowId)) { in saveFocusedNode() 55 AccessibilityNodeInfo oldNode = mFocusedNodes.remove(windowId); in saveFocusedNode() 58 mFocusedNodes.put(windowId, copyNode(focusedNode)); in saveFocusedNode() 65 void saveWindowType(int windowId, int windowType) { in saveWindowType() argument 66 Integer id = windowId; in saveWindowType() 73 mWindowTypes.put(windowId, windowType); in saveWindowType() 79 void remove(int windowId) { in remove() argument 80 Integer id = windowId; in remove() 92 Integer getWindowType(int windowId) { in getWindowType() argument [all …]
|
D | RotaryService.java | 1324 int windowId = event.getWindowId(); in handleWindowRemovedEvent() local 1326 Integer type = mWindowCache.getWindowType(windowId); in handleWindowRemovedEvent() 1328 mWindowCache.remove(windowId); in handleWindowRemovedEvent() 1340 L.w("No window type found in cache for window ID: " + windowId); in handleWindowRemovedEvent() 1350 if (mFocusedNode == null || mFocusedNode.getWindowId() != windowId) { in handleWindowRemovedEvent() 1368 int windowId = event.getWindowId(); in handleWindowAddedEvent() local 1370 AccessibilityWindowInfo window = Utils.findWindowWithId(windows, windowId); in handleWindowAddedEvent() 1377 mWindowCache.saveWindowType(windowId, window.getType()); in handleWindowAddedEvent() 1386 if (mFocusedNode != null && mFocusedNode.getWindowId() == windowId) { in handleWindowAddedEvent()
|
D | Utils.java | 370 int windowId) { in findWindowWithId() argument 372 if (window.getId() == windowId) { in findWindowWithId()
|
/packages/apps/TV/tuner/src/com/android/tv/tuner/cc/ |
D | CaptionTrackRenderer.java | 194 private void setCurrentWindowLayout(int windowId) { in setCurrentWindowLayout() argument 195 if (windowId < 0 || windowId >= mCaptionWindowLayouts.length) { in setCurrentWindowLayout() 198 CaptionWindowLayout windowLayout = mCaptionWindowLayouts[windowId]; in setCurrentWindowLayout() 203 Log.d(TAG, "setCurrentWindowLayout to " + windowId); in setCurrentWindowLayout() 301 int windowId = window.id; in defineWindow() local 302 if (windowId < 0 || windowId >= mCaptionWindowLayouts.length) { in defineWindow() 305 CaptionWindowLayout windowLayout = mCaptionWindowLayouts[windowId]; in defineWindow() 310 mCurrentWindowLayout = mCaptionWindowLayouts[windowId] = windowLayout; in defineWindow()
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/vehiclectrl/ |
D | VehicleCtrlFragment.java | 132 private void moveWindow(int windowId, int speed) { in moveWindow() argument 133 Log.i(TAG, "Moving window " + windowId + " with speed " + speed); in moveWindow() 134 mPropMgr.setIntProperty(VehiclePropertyIds.WINDOW_MOVE, windowId, speed); in moveWindow() 137 private void updateWindowPos(int windowId, int pos) { in updateWindowPos() argument 138 TextView view = mWindowPosWidgets.get(windowId); in updateWindowPos()
|
/packages/apps/TV/tuner/src/com/android/tv/tuner/data/ |
D | Cea708Parser.java | 491 int windowId = mCommand - Cea708Data.CODE_C1_CW0; in parseC1() local 492 emitCaptionEvent(new CaptionEvent(CAPTION_EMIT_TYPE_COMMAND_CWX, windowId)); in parseC1() 494 Log.d(TAG, String.format("CaptionCommand CWX windowId: %d", windowId)); in parseC1() 758 int windowId = mCommand - Cea708Data.CODE_C1_DF0; in parseC1() local 776 windowId, in parseC1() 798 windowId, in parseC1()
|
/packages/apps/Car/RotaryController/tests/unit/src/com/android/car/rotary/ |
D | NodeBuilder.java | 215 NodeBuilder setWindowId(int windowId) { in setWindowId() argument 216 mWindowId = windowId; in setWindowId()
|
/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/ |
D | SystemBarConfigsImpl.java | 215 int windowId = getWindowIdBySide(side); in getWindowLayoutBySide() local 216 if (windowId == 0) { in getWindowLayoutBySide() 223 window.setId(windowId); in getWindowLayoutBySide()
|