Home
last modified time | relevance | path

Searched refs:shouldExist (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Launcher3/tests/src/com/android/launcher3/testcomponent/
DTouchEventGenerator.java203 private void checkFingerExistence(int id, boolean shouldExist) { in checkFingerExistence() argument
204 if (shouldExist != mFingers.containsKey(id)) { in checkFingerExistence()
206 shouldExist ? "Finger does not exist" : "Finger already exists"); in checkFingerExistence()
/packages/apps/Launcher3/src/com/android/launcher3/touch/
DTouchEventTranslator.java198 private void checkFingerExistence(int id, boolean shouldExist) { in checkFingerExistence() argument
199 if (shouldExist != (mFingers.get(id, null) != null)) { in checkFingerExistence()
201 shouldExist ? "Finger does not exist" : "Finger already exists"); in checkFingerExistence()
/packages/apps/Contacts/src/com/android/contacts/editor/
DTextFieldsEditorView.java193 private void setupExpansionView(boolean shouldExist, boolean collapsed) { in setupExpansionView() argument
200 mExpansionViewContainer.setVisibility(shouldExist ? View.VISIBLE : View.INVISIBLE); in setupExpansionView()
DLabeledEditorView.java216 private void setupLabelButton(boolean shouldExist) { in setupLabelButton() argument
217 if (shouldExist) { in setupLabelButton()