Home
last modified time | relevance | path

Searched defs:method (Results 1 – 25 of 161) sorted by relevance

1234567

/frameworks/base/core/java/android/view/inputmethod/
DInputConnectionInspector.java147 final Method method = clazz.getMethod("getSelectedText", int.class); in hasGetSelectedText() local
156 final Method method = clazz.getMethod("setComposingRegion", int.class, int.class); in hasSetComposingRegion() local
165 final Method method = clazz.getMethod("commitCorrection", CorrectionInfo.class); in hasCommitCorrection() local
174 final Method method = clazz.getMethod("requestCursorUpdates", int.class); in hasRequestCursorUpdate() local
183 final Method method = clazz.getMethod("deleteSurroundingTextInCodePoints", int.class, in hasDeleteSurroundingTextInCodePoints() local
193 final Method method = clazz.getMethod("getHandler"); in hasGetHandler() local
202 final Method method = clazz.getMethod("closeConnection"); in hasCloseConnection() local
211 final Method method = clazz.getMethod("commitContent", InputContentInfo.class, in hasCommitContent() local
/frameworks/base/tests/testables/src/android/testing/
DAndroidTestingRunner.java54 protected Statement methodInvoker(FrameworkMethod method, Object test) { in methodInvoker()
60 protected Statement withBefores(FrameworkMethod method, Object target, Statement statement) { in withBefores()
67 protected Statement withAfters(FrameworkMethod method, Object target, Statement statement) { in withAfters()
74 protected Statement withPotentialTimeout(FrameworkMethod method, Object test, Statement next) { in withPotentialTimeout()
87 protected List<FrameworkMethod> looperWrap(FrameworkMethod method, Object test, in looperWrap()
101 protected FrameworkMethod looperWrap(FrameworkMethod method, Object test, in looperWrap()
111 public boolean shouldRunOnUiThread(FrameworkMethod method) { in shouldRunOnUiThread()
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
DFindMethodBindingObject.java28 public String method() { return "no arg"; } in method() method in FindMethodBindingObject
30 public String method(int i) { return String.valueOf(i); } in method() method in FindMethodBindingObject
32 public String method(float f) { return String.valueOf(f); } in method() method in FindMethodBindingObject
34 public String method(String value) { return value; } in method() method in FindMethodBindingObject
87 public T method(T value) { return value; } in method() method in FindMethodBindingObject.Bar
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DTelephonyTestUtils.java65 public static Object invokeStaticMethod(Class<?> clazz, String method, Object... params) { in invokeStaticMethod()
88 public static Object invokeStaticMethodThrowsException(Class<?> clazz, String method, in invokeStaticMethodThrowsException()
112 public static Object invokeNonStaticMethod(Class<?> clazz, Object caller, String method, in invokeNonStaticMethod()
137 String method, Object... params) in invokeNonStaticMethodThrowsException()
/frameworks/support/media/version-compat-tests/previous/service/src/androidTest/java/android/support/mediacompat/service/
DServiceBroadcastReceiver.java73 int method = extras.getInt(KEY_METHOD_ID, 0); in onReceive() local
101 int method = extras.getInt(KEY_METHOD_ID, 0); in onReceive() local
/frameworks/support/media/version-compat-tests/current/service/src/androidTest/java/android/support/mediacompat/service/
DServiceBroadcastReceiver.java74 int method = extras.getInt(KEY_METHOD_ID, 0); in onReceive() local
102 int method = extras.getInt(KEY_METHOD_ID, 0); in onReceive() local
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
DCallbackWrapper.java35 public final ModelMethod method; field in CallbackWrapper
43 public CallbackWrapper(ModelClass klass, ModelMethod method) { in CallbackWrapper()
76 public static String uniqueKey(ModelClass klass, ModelMethod method) { in uniqueKey()
/frameworks/support/room/compiler/src/test/kotlin/androidx/room/processor/
DDaoProcessorTest.kt90 val method = dao.queryMethods.first() in <lambda>() constant
104 val method = dao.queryMethods.first() in <lambda>() constant
120 val method = dao.queryMethods.first() in <lambda>() constant
137 val method = dao.queryMethods.first() in <lambda>() constant
/frameworks/support/lifecycle/compiler/src/main/kotlin/androidx/lifecycle/model/
DEventMethod.kt24 data class EventMethod(val method: ExecutableElement, constant in androidx.lifecycle.model.EventMethod
31 data class EventMethodCall(val method: EventMethod, val syntheticAccess: TypeElement? = null) constant in androidx.lifecycle.model.EventMethodCall
/frameworks/base/media/mca/filterfw/jni/
Djni_util.cpp137 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "booleanValue", "()Z"); in ToCValue() local
140 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "intValue", "()I"); in ToCValue() local
143 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "floatValue", "()F"); in ToCValue() local
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
DANQPMatcherTest.java174 EAPMethod method = new EAPMethod(eapMethodID, new HashMap<Integer, Set<AuthParam>>()); in matchNAIRealmWithMethodMatch() local
197 EAPMethod method = new EAPMethod(eapMethodID, new HashMap<Integer, Set<AuthParam>>()); in matchNAIRealmWithRealmMethodMatch() local
226 EAPMethod method = new EAPMethod(eapMethodID, authMap); in matchNAIRealmWithExactMatch() local
254 EAPMethod method = new EAPMethod(eapMethodID, authMap); in matchNAIRealmWithEAPMethodMismatch() local
283 EAPMethod method = new EAPMethod(eapMethodID, authMap); in matchNAIRealmWithAuthTypeMismatch() local
/frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/app/
DMenuBuilderTest.java43 Method method = MenuBuilder.class in setOptionalIconsVisibleMethodShouldRemainPublic() local
/frameworks/support/webkit-codegen/src/test/resources/codegen-expected/
DWebKitTypeAsMethodReturnBoundaryInterface.java6 InvocationHandler method(); in method() method
DSingleClassAndMethodBoundaryInterface.java4 void method(boolean param); in method() method
/frameworks/support/webkit-codegen/src/test/resources/codegen/
DWebKitTypeAsMethodReturn.java20 public WebViewClient method() { in method() method in WebKitTypeAsMethodReturn
DSingleClassAndMethod.java20 public void method(boolean param) { in method() method in SingleClassAndMethod
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
DCallable.java39 public final ModelMethod method; field in Callable
46 int parameterCount, int flags, ModelMethod method) { in Callable()
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
DBindingMethod.java43 String method(); in method() method
DInverseBindingMethod.java97 String method() default ""; in method() method
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
DUiAutomatorTestCaseFilter.java31 public boolean accept(Method method) { in accept()
DTestCaseCollector.java105 protected void addSingleTestMethod(Class<?> clazz, String method) { in addSingleTestMethod()
143 public boolean accept(Method method); in accept()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
DDataConnectionTest.java247 Method method = StateMachine.class.getDeclaredMethod("getCurrentState"); in getCurrentState() local
255 Method method = DataConnection.class.getDeclaredMethod("getSuggestedRetryDelay", cArgs); in getSuggestedRetryDelay() local
266 Method method = DataConnection.class.getDeclaredMethod("setLinkProperties", cArgs); in setLinkProperties() local
401 Method method = DataConnection.class.getDeclaredMethod("getNetworkCapabilities"); in getNetworkCapabilities() local
/frameworks/support/media/version-compat-tests/lib/src/main/aidl/android/support/mediacompat/testlib/
DITestHelperForServiceApp.aidl24 void callMediaSession2Method(int method, in Bundle args); in callMediaSession2Method()
/frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/robolectric/
DSuwLibRobolectricTestRunner.java31 protected void runChild(FrameworkMethod method, RunNotifier notifier) { in runChild()
/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
DTestDelegates.java191 private String getMethodName(Method method) { in getMethodName()
195 private String getMethodName(Method method, Class<?>[] parameters) { in getMethodName()

1234567