Lines Matching refs:input
80 public static boolean handleChars(Context context, String input, EditText textField) { in handleChars() argument
81 return handleChars(context, input, false, textField); in handleChars()
84 static boolean handleChars(Context context, String input) { in handleChars() argument
85 return handleChars(context, input, false, null); in handleChars()
88 static boolean handleChars(Context context, String input, boolean useSystemWindow, in handleChars() argument
92 String dialString = PhoneNumberUtils.stripSeparators(input); in handleChars()
130 static boolean handleSecretCode(Context context, String input) { in handleSecretCode() argument
132 int len = input.length(); in handleSecretCode()
133 if (len > 8 && input.startsWith("*#*#") && input.endsWith("#*#*")) { in handleSecretCode()
135 Uri.parse("android_secret_code://" + input.substring(4, len - 4))); in handleSecretCode()
150 static boolean handleAdnEntry(Context context, String input, EditText textField) { in handleAdnEntry() argument
170 int len = input.length(); in handleAdnEntry()
171 if ((len > 1) && (len < 5) && (input.endsWith("#"))) { in handleAdnEntry()
174 int index = Integer.parseInt(input.substring(0, len-1)); in handleAdnEntry()
224 static boolean handlePinEntry(Context context, String input) { in handlePinEntry() argument
225 if ((input.startsWith("**04") || input.startsWith("**05")) && input.endsWith("#")) { in handlePinEntry()
228 .handlePinMmi(input); in handlePinEntry()
237 static boolean handleIMEIDisplay(Context context, String input, boolean useSystemWindow) { in handleIMEIDisplay() argument
240 if (telephonyManager != null && input.equals(MMI_IMEI_DISPLAY)) { in handleIMEIDisplay()