Searched refs:method (Results 1 – 10 of 10) sorted by relevance
| /remotecallback/remotecallback/api/ |
| D | current.txt | 6 method @Deprecated public T createRemoteCallback(android.content.Context); 11 method @Deprecated public T createRemoteCallback(android.content.Context); 12 method @Deprecated public void onReceive(android.content.Context!, android.content.Intent!); 18 …method @Deprecated public <T extends androidx.remotecallback.CallbackReceiver> void invokeCallback… 19 …method @Deprecated public <T extends androidx.remotecallback.CallbackReceiver> void invokeCallback… 20 …method @Deprecated public static <T extends androidx.remotecallback.CallbackReceiver> void registe… 21 …method @Deprecated public static androidx.remotecallback.RemoteCallback? stubToRemoteCallback(andr… 25 method @Deprecated public void executeCallback(android.content.Context, T!, android.os.Bundle); 29 method @Deprecated public T createRemoteCallback(android.content.Context); 34 method @Deprecated public T createRemoteCallback(android.content.Context); [all …]
|
| D | api_lint.ignore | 3 Callback method names must follow the on<Something> style: getArgumentBundle 5 Callback method names must follow the on<Something> style: getMethodName 7 Callback method names must follow the on<Something> style: getReceiverClass 9 Callback method names must follow the on<Something> style: getType 11 Callback method names must follow the on<Something> style: toPendingIntent 15 Context is distinct, so it must be the first argument (method `create`) 27 Missing nullability on parameter `context` in method `onReceive` 29 Missing nullability on parameter `intent` in method `onReceive` 31 Missing nullability on parameter `context` in method `onReceive` 33 Missing nullability on parameter `intent` in method `onReceive` [all …]
|
| D | restricted_current.txt | 6 method @Deprecated public T createRemoteCallback(android.content.Context); 7 …method @Deprecated @RestrictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public a… 12 method @Deprecated public T createRemoteCallback(android.content.Context); 13 method @Deprecated public void onReceive(android.content.Context!, android.content.Intent!); 14 …method @Deprecated @RestrictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public a… 19 …method @Deprecated @RestrictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public a… 24 …method @Deprecated @RestrictTo(androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public <… 25 …method @Deprecated public <T extends androidx.remotecallback.CallbackReceiver> void invokeCallback… 26 …method @Deprecated public <T extends androidx.remotecallback.CallbackReceiver> void invokeCallback… 27 …method @Deprecated public static <T extends androidx.remotecallback.CallbackReceiver> void registe… [all …]
|
| /remotecallback/remotecallback/src/main/java/androidx/remotecallback/ |
| D | ContentProviderWithCallbacks.java | 62 public @Nullable Bundle call(@NonNull String method, @Nullable String arg, in call() argument 64 if (ProviderRelayReceiver.METHOD_PROVIDER_CALLBACK.equals(method)) { in call() 68 return super.call(method, arg, extras); in call() 82 @NonNull Bundle args, @NonNull String method) { in toRemoteCallback() argument 87 args.putString(EXTRA_METHOD, method); in toRemoteCallback()
|
| D | CallbackHandlerRegistry.java | 128 String method = bundle.getString(EXTRA_METHOD); in invokeCallback() local 130 CallbackHandler<T> callbackHandler = (CallbackHandler<T>) map.mHandlers.get(method); in invokeCallback() 132 Log.e(TAG, "No handler found for " + method + " on " + receiverClass.getName()); in invokeCallback() 173 private <T extends CallbackReceiver> void registerHandler(Class<T> cls, String method, in registerHandler() argument 179 map.mHandlers.put(method, handler); in registerHandler() 197 @NonNull String method, @Nullable CallbackHandler<T> handler) { in registerCallbackHandler() argument 198 sInstance.registerHandler(cls, method, handler); in registerCallbackHandler() 210 @Nullable String method) { in stubToRemoteCallback() argument 221 return ((CallbackBase) receiver).toRemoteCallback(cls, context, authority, args, method); in stubToRemoteCallback()
|
| D | BroadcastReceiverWithCallbacks.java | 74 @NonNull Bundle args, @NonNull String method) { in toRemoteCallback() argument 77 args.putString(EXTRA_METHOD, method); in toRemoteCallback()
|
| D | AppWidgetProviderWithCallbacks.java | 68 @NonNull Bundle args, @NonNull String method) { in toRemoteCallback() argument 71 args.putString(EXTRA_METHOD, method); in toRemoteCallback()
|
| D | CallbackBase.java | 48 @NonNull String method); in toRemoteCallback() argument
|
| /remotecallback/remotecallback-processor/src/main/java/androidx/remotecallback/compiler/ |
| D | CallbackReceiver.java | 66 for (CallableMethod method: mMethods) { in addMethod() 67 if (method.getName().equals(element.getSimpleName().toString())) { in addMethod() 95 for (CallableMethod method: mMethods) { in finish() 96 method.addMethods(genClass, runBuilder, env, messager); in finish()
|
| /remotecallback/remotecallback/ |
| D | IMPL.md | 48 call the actual implementation of the method. 60 is an annotation that can take a parameter on RemoteCallable method.
|