Home
last modified time | relevance | path

Searched refs:currentState (Results 1 – 11 of 11) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
DCellLayout.java1351 int[] direction, ItemConfiguration currentState) { in addViewToTempLocation() argument
1352 CellAndSpan c = currentState.map.get(v); in addViewToTempLocation()
1604 int[] direction, View dragView, ItemConfiguration currentState) { in pushViewsToTempLocation() argument
1606 ViewCluster cluster = new ViewCluster(views, currentState); in pushViewsToTempLocation()
1635 CellAndSpan c = currentState.map.get(v); in pushViewsToTempLocation()
1642 currentState.save(); in pushViewsToTempLocation()
1650 for (View v: currentState.sortedViews) { in pushViewsToTempLocation()
1663 CellAndSpan c = currentState.map.get(v); in pushViewsToTempLocation()
1686 currentState.restore(); in pushViewsToTempLocation()
1691 CellAndSpan c = currentState.map.get(v); in pushViewsToTempLocation()
[all …]
/packages/apps/Launcher2/src/com/android/launcher2/
DCellLayout.java1571 int[] direction, ItemConfiguration currentState) { in addViewToTempLocation() argument
1572 CellAndSpan c = currentState.map.get(v); in addViewToTempLocation()
1824 int[] direction, View dragView, ItemConfiguration currentState) { in pushViewsToTempLocation() argument
1826 ViewCluster cluster = new ViewCluster(views, currentState); in pushViewsToTempLocation()
1855 CellAndSpan c = currentState.map.get(v); in pushViewsToTempLocation()
1862 currentState.save(); in pushViewsToTempLocation()
1870 for (View v: currentState.sortedViews) { in pushViewsToTempLocation()
1883 CellAndSpan c = currentState.map.get(v); in pushViewsToTempLocation()
1906 currentState.restore(); in pushViewsToTempLocation()
1911 CellAndSpan c = currentState.map.get(v); in pushViewsToTempLocation()
[all …]
/packages/apps/Contacts/src/com/android/contacts/editor/
DContactEditorFragment.java450 final RawContactDelta currentState, BaseRawContactEditorView editor) { in addAccountSwitcher() argument
452 currentState.getAccountName(), in addAccountSwitcher()
453 currentState.getAccountType(), in addAccountSwitcher()
454 currentState.getDataSet()); in addAccountSwitcher()
481 rebindEditorsForNewContact(currentState, currentAccount, newAccount); in addAccountSwitcher()
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
DA2dpSinkStateMachine.java607 IState currentState = getCurrentState(); in getConnectionState() local
608 if (currentState == mPending) { in getConnectionState()
621 if (currentState == mConnected) { in getConnectionState()
627 loge("Bad currentState: " + currentState); in getConnectionState()
DA2dpStateMachine.java625 IState currentState = getCurrentState(); in getConnectionState() local
626 if (currentState == mPending) { in getConnectionState()
639 if (currentState == mConnected) { in getConnectionState()
645 loge("Bad currentState: " + currentState); in getConnectionState()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
DHeadsetStateMachine.java2080 IState currentState = getCurrentState(); in getConnectionState() local
2081 if (DBG) Log.d(TAG, "currentState = " + currentState); in getConnectionState()
2082 if (currentState == mPending) { in getConnectionState()
2095 if (currentState == mMultiHFPending) { in getConnectionState()
2113 if (currentState == mConnected || currentState == mAudioOn) { in getConnectionState()
2119 Log.e(TAG, "Bad currentState: " + currentState); in getConnectionState()
3299 IState currentState = getCurrentState(); in isConnected() local
3300 return (currentState == mConnected || currentState == mAudioOn); in isConnected()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
DHeadsetClientStateMachine.java2264 IState currentState = getCurrentState(); in getConnectionState() local
2265 if (currentState == mConnecting) { in getConnectionState()
2269 if (currentState == mConnected || currentState == mAudioOn) { in getConnectionState()
2273 Log.e(TAG, "Bad currentState: " + currentState); in getConnectionState()
2357 IState currentState = getCurrentState(); in isConnected() local
2358 return (currentState == mConnected || currentState == mAudioOn); in isConnected()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DKeyboardSwitcher.java338 KeyboardSwitchState currentState = getKeyboardSwitchState(); in onToggleKeyboard() local
339 Log.w(TAG, "onToggleKeyboard() : Current = " + currentState + " : Toggle = " + toggleState); in onToggleKeyboard()
340 if (currentState == toggleState) { in onToggleKeyboard()
/packages/apps/Camera2/src/com/android/camera/ui/
DModeListView.java1413 ModeListState currentState = mCurrentStateManager.getCurrentState(); in draw() local
1414 AnimationEffects currentEffects = currentState.getCurrentAnimationEffects(); in draw()
1560 ModeListState currentState = mCurrentStateManager.getCurrentState(); in setVisibility() local
1561 if (currentState != null && !currentState.shouldHandleVisibilityChange(visibility)) { in setVisibility()
/packages/services/Telecomm/src/com/android/server/telecom/
DCallsManager.java1164 for (int currentState : states) { in getFirstCallWithState()
1166 if (mForegroundCall != null && mForegroundCall.getState() == currentState) { in getFirstCallWithState()
1180 if (currentState == call.getState()) { in getFirstCallWithState()
/packages/apps/Settings/src/com/android/settings/widget/
DSettingsAppWidgetProvider.java136 int currentState = getTriState(context); in toggleState() local
138 switch (currentState) { in toggleState()