Home
last modified time | relevance | path

Searched refs:mMethod (Results 1 – 6 of 6) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
DCompatUtils.java171 private final Method mMethod; field in CompatUtils.ToObjectMethodWrapper
174 mMethod = method; in ToObjectMethodWrapper()
179 return (T) CompatUtils.invoke(receiver, mDefaultValue, mMethod, args); in invoke()
184 private final Method mMethod; field in CompatUtils.ToIntMethodWrapper
187 mMethod = method; in ToIntMethodWrapper()
191 return (int) CompatUtils.invoke(receiver, mDefaultValue, mMethod, args); in invoke()
196 private final Method mMethod; field in CompatUtils.ToFloatMethodWrapper
199 mMethod = method; in ToFloatMethodWrapper()
203 return (float) CompatUtils.invoke(receiver, mDefaultValue, mMethod, args); in invoke()
208 private final Method mMethod; field in CompatUtils.ToBooleanMethodWrapper
[all …]
/packages/services/Telephony/testapps/TelephonyManagerTestApp/src/com/android/phone/testapps/telephonymanagertestapp/
DCallingMethodActivity.java42 private Method mMethod; field in CallingMethodActivity
56 mMethod = TelephonyManagerTestApp.sCurrentMethod; in onCreate()
62 mParameterTypes = mMethod.getParameterTypes(); in onCreate()
67 String tags = Modifier.toString(mMethod.getModifiers()) + ' ' in onCreate()
68 + TelephonyManagerTestApp.getShortTypeName(mMethod.getReturnType().toString()); in onCreate()
70 ((TextView) findViewById(R.id.method_name)).setText(mMethod.getName()); in onCreate()
95 Log.d(TelephonyManagerTestApp.TAG, "Invoking method " + mMethod.getName()); in executeCallMethod()
97 mMethod.setAccessible(true); in executeCallMethod()
98 if (!mMethod.getReturnType().equals(Void.TYPE)) { in executeCallMethod()
99 Object result = mMethod.invoke(new TelephonyManager(this, subId), mParameterValues); in executeCallMethod()
[all …]
/packages/services/Telephony/testapps/EmbmsTestStreamingApp/src/com/android/phone/testapps/embmsfrontend/
DStreamingServiceTracker.java52 private int mMethod = StreamingService.UNICAST_METHOD; field in StreamingServiceTracker
85 return mMethod; in getMethod()
101 if (mMethod != method) { in onStreamMethodUpdated()
102 mMethod = method; in onStreamMethodUpdated()
/packages/services/Telephony/testapps/EmbmsServiceTestApp/src/com/android/phone/testapps/embmsmw/
DAppActiveStreams.java32 private int mMethod; field in AppActiveStreams.StreamCallbackWithState
38 mMethod = method; in StreamCallbackWithState()
54 return mMethod; in getMethod()
58 mMethod = method; in setMethod()
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DWnmData.java52 private final int mMethod; field in WnmData
60 mMethod = method; in WnmData()
141 return mMethod; in getMethod()
/packages/apps/Car/Settings/src/com/android/car/settings/common/
DExtraSettingsPreferenceController.java278 private final String mMethod; field in ExtraSettingsPreferenceController.DynamicDataObserver
285 mMethod = method; in DynamicDataObserver()
303 switch (mMethod) { in onChange()