Searched refs:shouldExist (Results 1 – 4 of 4) sorted by relevance
203 private void checkFingerExistence(int id, boolean shouldExist) { in checkFingerExistence() argument204 if (shouldExist != mFingers.containsKey(id)) { in checkFingerExistence()206 shouldExist ? "Finger does not exist" : "Finger already exists"); in checkFingerExistence()
198 private void checkFingerExistence(int id, boolean shouldExist) { in checkFingerExistence() argument199 if (shouldExist != (mFingers.get(id, null) != null)) { in checkFingerExistence()201 shouldExist ? "Finger does not exist" : "Finger already exists"); in checkFingerExistence()
193 private void setupExpansionView(boolean shouldExist, boolean collapsed) { in setupExpansionView() argument200 mExpansionViewContainer.setVisibility(shouldExist ? View.VISIBLE : View.INVISIBLE); in setupExpansionView()
216 private void setupLabelButton(boolean shouldExist) { in setupLabelButton() argument217 if (shouldExist) { in setupLabelButton()