Searched refs:toBeFound (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/
H A DWifiEnterpriseConfig.java975 * Returns the index at which the toBeFound string is found in the array.
977 * @param toBeFound string to be found
981 private int getStringIndex(String arr[], String toBeFound, int defaultIndex) { argument
982 if (TextUtils.isEmpty(toBeFound)) return defaultIndex;
984 if (toBeFound.equals(arr[i])) return i;

Completed in 86 milliseconds