Searched refs:windowId (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Car/RotaryController/src/com/android/car/rotary/ |
D | WindowCache.java | 55 void saveFocusedNode(int windowId, @NonNull AccessibilityNodeInfo focusedNode) { in saveFocusedNode() argument 56 if (mFocusedNodes.containsKey(windowId)) { in saveFocusedNode() 58 AccessibilityNodeInfo oldNode = mFocusedNodes.remove(windowId); in saveFocusedNode() 61 mFocusedNodes.put(windowId, copyNode(focusedNode)); in saveFocusedNode() 68 void saveWindowType(int windowId, int windowType) { in saveWindowType() argument 69 Integer id = windowId; in saveWindowType() 76 mWindowTypes.put(windowId, windowType); in saveWindowType() 82 void remove(int windowId) { in remove() argument 83 Integer id = windowId; in remove() 95 Integer getWindowType(int windowId) { in getWindowType() argument [all …]
|
D | RotaryService.java | 1228 int windowId = event.getWindowId(); in handleWindowRemovedEvent() local 1230 Integer type = mWindowCache.getWindowType(windowId); in handleWindowRemovedEvent() 1232 mWindowCache.remove(windowId); in handleWindowRemovedEvent() 1244 L.w("No window type found in cache for window ID: " + windowId); in handleWindowRemovedEvent() 1254 if (mFocusedNode == null || mFocusedNode.getWindowId() != windowId) { in handleWindowRemovedEvent() 1272 int windowId = event.getWindowId(); in handleWindowAddedEvent() local 1274 AccessibilityWindowInfo window = Utils.findWindowWithId(windows, windowId); in handleWindowAddedEvent() 1279 mWindowCache.saveWindowType(windowId, window.getType()); in handleWindowAddedEvent() 1289 if (mFocusedNode != null && mFocusedNode.getWindowId() == windowId) { in handleWindowAddedEvent()
|
D | Utils.java | 337 int windowId) { in findWindowWithId() argument 339 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 | 131 private void moveWindow(int windowId, int speed) { in moveWindow() argument 132 Log.i(TAG, "Moving window " + windowId + " with speed " + speed); in moveWindow() 133 mPropMgr.setIntProperty(VehiclePropertyIds.WINDOW_MOVE, windowId, speed); in moveWindow() 136 private void updateWindowPos(int windowId, int pos) { in updateWindowPos() argument 137 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()
|