Searched refs:mMethodList (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/wifi/java/android/net/wifi/hotspot2/ |
D | OsuProvider.java | 77 private final List<Integer> mMethodList; field in OsuProvider 92 mMethodList = new ArrayList<>(); in OsuProvider() 94 mMethodList = new ArrayList<>(methodList); in OsuProvider() 111 mMethodList = new ArrayList<>(); in OsuProvider() 121 if (source.mMethodList == null) { in OsuProvider() 122 mMethodList = new ArrayList<>(); in OsuProvider() 124 mMethodList = new ArrayList<>(source.mMethodList); in OsuProvider() 150 return Collections.unmodifiableList(mMethodList); in getMethodList() 169 dest.writeList(mMethodList); in writeToParcel() 188 && (mMethodList == null ? that.mMethodList == null in equals() [all …]
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/ |
D | OsuProviderInfo.java | 75 private final List<Integer> mMethodList; field in OsuProviderInfo 85 mMethodList = methodList; in OsuProviderInfo() 157 return Collections.unmodifiableList(mMethodList); in getMethodList() 207 && (mMethodList == null ? that.mMethodList == null in equals() 208 : mMethodList.equals(that.mMethodList)) in equals() 218 return Objects.hash(mFriendlyNames, mServerUri, mMethodList, mIconInfoList, in hashCode() 227 + ", mMethodList=" + mMethodList in toString()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/inputmethod/ |
D | InputMethodSettingValuesWrapper.java | 47 private final ArrayList<InputMethodInfo> mMethodList = new ArrayList<>(); field in InputMethodSettingValuesWrapper 76 mMethodMap, mMethodList, getDefaultCurrentUserId(), false /* copyOnWrite */); in InputMethodSettingValuesWrapper() 83 mMethodList.clear(); in refreshAllInputMethodAndSubtypes() 86 mMethodList.addAll(imms); in refreshAllInputMethodAndSubtypes() 115 return mMethodList; in getInputMethodList()
|
/frameworks/base/services/core/java/com/android/server/ |
D | InputMethodManagerService.java | 315 final ArrayList<InputMethodInfo> mMethodList = new ArrayList<>(); field in InputMethodManagerService 951 for (InputMethodInfo info : mMethodList) { in startVrInputMethodNoCheck() 1045 final int N = mMethodList.size(); in onHandleForceStop() 1048 InputMethodInfo imi = mMethodList.get(i); in onHandleForceStop() 1163 final int N = mMethodList.size(); in onFinishPackageChangesInternal() 1166 InputMethodInfo imi = mMethodList.get(i); in onFinishPackageChangesInternal() 1396 mRes, context.getContentResolver(), mMethodMap, mMethodList, userId, !mSystemReady); in InputMethodManagerService() 1653 for (InputMethodInfo info : mMethodList) { in getInputMethodList() 3625 mMethodList.clear(); in buildInputMethodListLocked() 3660 mMethodList.add(p); in buildInputMethodListLocked() [all …]
|