Home | History | Annotate | Download | only in system

Lines Matching refs:inputId

373     private void handleHide(String inputId, boolean hide) {
374 if (DEBUG) Log.d(TAG, "Hide " + inputId + ": " + hide);
378 if (!mHiddenIds.contains(inputId)) {
379 mHiddenIds.add(inputId);
383 if (mHiddenIds.contains(inputId)) {
384 mHiddenIds.remove(inputId);
399 private void saveCustomLabel(String inputId, String label) {
400 if (DEBUG) Log.d(TAG, "Setting " + inputId + " => " + label);
403 mCustomLabels.put(inputId, label);
405 mCustomLabels.remove(inputId);
409 handleHide(inputId, false);
425 String inputId = data.getStringExtra(InputsCustomLabelActivity.KEY_ID);
427 saveCustomLabel(inputId, label);