Searched defs:method (Results 51 - 75 of 107) sorted by relevance

12345

/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DBinding.java141 public void setBindingAdapterCall(String method) { argument
142 getSetterCall().setBindingAdapterCall(method);
227 public void setBindingAdapterCall(String method) { argument
280 public void setBindingAdapterCall(String method) { argument
281 mWrappedCall.setBindingAdapterCall(method);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DFieldAccessExpr.java141 // Look for a signature matching the abstract method
144 for (ModelMethod method : mPotentialListeners) {
145 if (acceptsParameters(method, listenerParameters)) {
148 mCalledMethods.add(method);
155 L.e("Listener class %s with method %s did not match signature of any method %s.%s",
162 private boolean acceptsParameters(ModelMethod method, ModelClass[] listenerParameters) { argument
163 ModelClass[] parameters = method.getParameterTypes();
232 // found a static method on an instance. register a new one
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DFindMethodBindingObject.java29 public String method() { return "no arg"; } method in class:FindMethodBindingObject
31 public String method(int i) { return String.valueOf(i); } method in class:FindMethodBindingObject
33 public String method(float f) { return String.valueOf(f); } method in class:FindMethodBindingObject
35 public String method(String value) { return value; } method in class:FindMethodBindingObject
76 public T method(T value) { return value; } method in class:FindMethodBindingObject.Bar
/frameworks/volley/src/test/java/com/android/volley/mock/
H A DTestRequest.java36 public Base(int method, String url, Response.ErrorListener listener) { argument
37 super(method, url, listener);
/frameworks/base/cmds/idmap/
H A Dscan.cpp135 uint16_t method; local
136 if (!zip->getEntryInfo(entry, &method, &uncompLen, NULL, NULL, NULL, NULL)) {
140 if (method != ZipFileRO::kCompressDeflated) {
141 ALOGW("%s: cannot handle zip compression method %" PRIu16 "\n", __FUNCTION__, method);
/frameworks/base/core/java/android/content/
H A DContentProviderClient.java431 public @Nullable Bundle call(@NonNull String method, @Nullable String arg, argument
433 Preconditions.checkNotNull(method, "method");
437 return mContentProvider.call(mPackageName, method, arg, extras);
H A DContentProviderNative.java279 String method = data.readString();
283 Bundle responseBundle = call(callingPkg, method, stringArg, args);
632 public Bundle call(String callingPkg, String method, String request, Bundle args) argument
640 data.writeString(method);
H A DIContentProvider.java61 String callingPkg, String method, @Nullable String arg, @Nullable Bundle extras)
60 call( String callingPkg, String method, @Nullable String arg, @Nullable Bundle extras) argument
/frameworks/base/core/java/android/provider/
H A DDocumentsProvider.java623 public Bundle call(String method, String arg, Bundle extras) { argument
624 if (!method.startsWith("android:")) {
626 return super.call(method, arg, extras);
642 if (METHOD_CREATE_DOCUMENT.equals(method)) {
656 } else if (METHOD_RENAME_DOCUMENT.equals(method)) {
680 } else if (METHOD_DELETE_DOCUMENT.equals(method)) {
688 throw new UnsupportedOperationException("Method not supported " + method);
691 throw new IllegalStateException("Failed call " + method, e);
/frameworks/base/core/java/android/text/method/
H A DBaseMovementMethod.java17 package android.text.method;
147 * {@link #onKeyDown(TextView, Spannable, int, KeyEvent)} calls this method once
149 * {@link #onKeyOther(TextView, Spannable, KeyEvent)} calls this method repeatedly
H A DPasswordTransformationMethod.java17 package android.text.method;
H A DTextKeyListener.java17 package android.text.method;
H A DMetaKeyKeyListener.java17 package android.text.method;
170 * is stored into the text buffer. This method retrieves the meta state
268 * Call this method after you handle a keypress so that the meta
305 * Call this if you are a method that ignores the locked meta state
429 * Call this if you are a method that ignores the locked meta state
512 * Call this method after you handle a keypress so that the meta
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteInit.java707 * Helper exception class which holds a method and arguments and
713 /** method to call */
719 public MethodAndArgsCaller(Method method, String[] args) { argument
720 mMethod = method;
/frameworks/base/libs/androidfw/
H A DZipUtils.cpp266 int method, flags; local
272 method = getc(fp);
276 if (method == EOF || flags == EOF)
278 if (method != ZipFileRO::kCompressDeflated)
325 *pCompressionMethod = method;
H A DAsset.cpp191 int method; local
214 scanResult = ZipUtils::examineGzip(fp, &method, &uncompressedLen,
225 result = pAsset->openChunk(fd, offset, method, uncompressedLen,
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentProvider.java114 public Bundle call(String callingPackage, String method, String request, Bundle args) argument
116 return MockContentProvider.this.call(method, request, args);
190 throw new UnsupportedOperationException("unimplemented mock method");
195 throw new UnsupportedOperationException("unimplemented mock method");
200 throw new UnsupportedOperationException("unimplemented mock method");
205 throw new UnsupportedOperationException("unimplemented mock method");
211 throw new UnsupportedOperationException("unimplemented mock method");
216 throw new UnsupportedOperationException("unimplemented mock method");
224 throw new UnsupportedOperationException("unimplemented mock method");
229 throw new UnsupportedOperationException("unimplemented mock method");
241 call(String method, String request, Bundle args) argument
[all...]
H A DMockIContentProvider.java45 throw new UnsupportedOperationException("unimplemented mock method");
51 throw new UnsupportedOperationException("unimplemented mock method");
55 throw new UnsupportedOperationException("unimplemented mock method");
61 throw new UnsupportedOperationException("unimplemented mock method");
67 throw new UnsupportedOperationException("unimplemented mock method");
72 throw new UnsupportedOperationException("unimplemented mock method");
77 throw new UnsupportedOperationException("unimplemented mock method");
83 throw new UnsupportedOperationException("unimplemented mock method");
88 throw new UnsupportedOperationException("unimplemented mock method");
93 throw new UnsupportedOperationException("unimplemented mock method");
96 call(String callingPackage, String method, String request, Bundle args) argument
[all...]
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestGrouping.java113 * @return The {@link TestGrouping} for method chaining.
135 * @return The {@link TestGrouping} for method chaining.
146 * if that method was never called.
249 public boolean apply(Method method) { argument
250 return ((method.getParameterTypes().length == 0) &&
251 (method.getName().startsWith("test")) &&
252 (method.getReturnType().getSimpleName().equals("void")));
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java116 + "usage: adb shell content call --uri <URI> --method <METHOD> [--arg <ARG>]\n"
118 + " <METHOD> is the name of a provider-defined method\n"
142 private static final String ARGUMENT_METHOD = "--method";
263 String method = null;
274 method = argumentValueRequired(argument);
288 if (method == null) {
289 throw new IllegalArgumentException("Content provider method not specified.");
291 return new CallCommand(uri, userId, method, arg, values);
481 public CallCommand(Uri uri, int userId, String method, String arg, ContentValues values) { argument
483 mMethod = method;
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRecentsProvider.java255 public Bundle call(String method, String arg, Bundle extras) { argument
256 if (METHOD_PURGE.equals(method)) {
275 } else if (METHOD_PURGE_PACKAGE.equals(method)) {
298 return super.call(method, arg, extras);
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
H A DStubProvider.java334 public Bundle call(String method, String arg, Bundle extras) { argument
335 switch (method) {
343 return super.call(method, arg, extras);
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DMediaSessions.java271 private String cb(String method) { argument
272 return method + " " + controller.getPackageName() + " ";
/frameworks/base/tools/aidl/
H A Daidl_language.h113 method_type* method; member in union:lexer_type
H A Dgenerate_java_binder.cpp250 generate_method(const method_type* method, Class* interface, argument
257 const bool oneway = proxyClass->mOneWay || method->oneway;
261 transactCodeName += method->name.data;
273 decl->comment = gather_comments(method->comments_token->extra);
275 decl->returnType = NAMES.Search(method->type.type.data);
276 decl->returnTypeDimension = method->type.dimension;
277 decl->name = method->name.data;
279 arg = method->args;
291 // == the stub method ====================================================
295 MethodCall* realCall = new MethodCall(THIS_VALUE, method
[all...]

Completed in 577 milliseconds

12345