Searched defs:method (Results 26 - 50 of 128) sorted by last modified time

123456

/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
H A DJavaMethod.java30 public JavaMethod(Method method) { argument
31 mMethod = method;
/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/data-binding/internal-prebuilts/com/android/databinding/baseLibrary/1.0-rc3/
H A DbaseLibrary-1.0-rc3.jar ... .String attribute () public abstract java.lang.String method () } android/databinding/BindingMethods.class BindingMethods.java package android ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-baseLibrary.jar ... .String attribute () public abstract java.lang.String method () } android/databinding/BindingMethods.class BindingMethods.java package android ...
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java238 final IInputMethod method; field in class:InputMethodManagerService.SessionState
246 + " method " + Integer.toHexString(
247 System.identityHashCode(method))
257 method = _method;
298 * Id obtained with {@link InputMethodInfo#getId()} for the currently selected input method.
299 * method. This is to be synchronized with the secure settings keyed with
302 * <p>This can be transiently {@code null} when the system is re-initializing input method
320 * The client that is currently bound to an input method.
326 * from the input method client. If the window state is already changed before the report is
342 * The missing method flag
743 MethodCallback(InputMethodManagerService imms, IInputMethod method, InputChannel channel) argument
1548 onSessionCreated(IInputMethod method, IInputMethodSession session, InputChannel channel) argument
[all...]
H A DTelephonyRegistry.java1512 private void enforceNotifyPermissionOrCarrierPrivilege(String method) { argument
1520 private boolean checkNotifyPermission(String method) { argument
1524 String msg = "Modify Phone State Permission Denial: " + method + " from pid="
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java2525 * This method must be called at first when sound effects are enabled
2546 * This method can be called to free some memory when
3708 boolean checkAudioSettingsPermission(String method) { argument
3713 String msg = "Audio Settings Permission Denial: " + method + " from pid="
4445 * This method can be called to free some memory when
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp1043 jmethodID method = env->GetMethodID(clazz, method_name, signature_); local
1044 env->CallVoidMethod(object, method, value);
1085 jmethodID method = env_->GetMethodID( local
1089 env_->CallVoidMethod(object_, method, array);
1096 // Define Java method signatures for all known types.
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java2964 private void enforceShell(String method) { argument
2967 throw new SecurityException("Non-shell user attempted to call " + method);
4405 // Caller UID needs to be trusted, so we restrict this method to SYSTEM_UID callers.
4777 /*method strength*/ 1);
4808 /*method strength*/ 1);
4819 /*method strength*/ 0);
4830 /*method strength*/ 0);
5118 // But is provided as a separate internal method if there's a faster way to do a
6959 + "because it contains already enabled input method.");
7058 "Only the system can query if an input method i
[all...]
/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")));
H A DTestMethod.java36 public TestMethod(Method method, Class<? extends TestCase> enclosingClass) { argument
37 this(method.getName(), enclosingClass);
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserProvider.java61 public Bundle call(String method, String arg, Bundle extras) { argument
/frameworks/base/tools/aapt/
H A DCommand.cpp109 * Return a short string describing the compression method.
111 const char* compressionName(int method) argument
113 if (method == ZipEntry::kCompressStored) {
115 } else if (method == ZipEntry::kCompressDeflated) {
H A DZipFile.cpp465 int method; local
468 scanResult = ZipUtils::examineGzip(inputFp, &method, &uncompressedLen,
470 if (!scanResult || method != ZipEntry::kCompressDeflated) {
/frameworks/base/tools/aapt/tests/
H A DPseudolocales_test.cpp29 static void simple_helper(const char* input, const char* expected, PseudolocalizationMethod method) { argument
30 Pseudolocalizer pseudo(method);
37 const char* expected, PseudolocalizationMethod method) {
38 Pseudolocalizer pseudo(method);
36 compound_helper(const char* in1, const char* in2, const char *in3, const char* expected, PseudolocalizationMethod method) argument
/frameworks/base/tools/aapt2/compile/
H A DPseudolocaleGenerator.cpp28 Pseudolocalizer::Method method,
30 Pseudolocalizer localizer(method);
127 Visitor(StringPool* pool, Pseudolocalizer::Method method) : argument
128 mPool(pool), mMethod(method), mLocalizer(method) {
212 void pseudolocalizeIfNeeded(const Pseudolocalizer::Method method, argument
216 Visitor visitor(pool, method);
231 originalValue->config, method);
27 pseudolocalizeStyledString(StyledString* string, Pseudolocalizer::Method method, StringPool* pool) argument
H A DPseudolocalizer.cpp64 Pseudolocalizer::Pseudolocalizer(Method method) : mLastDepth(0) { argument
65 setMethod(method);
68 void Pseudolocalizer::setMethod(Method method) { argument
69 switch (method) {
H A DPseudolocalizer_test.cpp29 Pseudolocalizer::Method method) {
30 Pseudolocalizer pseudo(method);
41 Pseudolocalizer::Method method) {
42 Pseudolocalizer pseudo(method);
28 simpleHelper(const char* input, const char* expected, Pseudolocalizer::Method method) argument
39 compoundHelper(const char* in1, const char* in2, const char *in3, const char* expected, Pseudolocalizer::Method method) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DAppCompatActionBar.java185 private static Object invoke(Method method, Object owner, Object... args) { argument
187 return method == null ? null : method.invoke(owner, args);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DReflectionUtils.java41 public static Object invoke(@NonNull Method method, @Nullable Object object, argument
45 return method.invoke(object, args);
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
H A DTestDelegates.java36 * {@link LayoutlibDelegate}, and look for a matching method in the delegate (named the same
38 * If the original native method is not static, then we make sure the delegate method also
88 // with @LayoutlibDelegate, look for a matching method in the delegate class.
89 // The annotation is automatically added by layoutlib_create when it replace a method
101 // if the method is not static, then the class is added as the first parameter
122 // try to load the method with the given parameter types.
129 String.format("Delegate method %1$s.%2$s does not match the " +
130 "corresponding framework method which returns %3$s",
136 // check that the method ha
186 getMethodName(Method method) argument
190 getMethodName(Method method, Class<?>[] parameters) argument
[all...]
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java662 public Bundle call(String method, String arg, Bundle extras) { argument
663 Bundle bundle = super.call(method, arg, extras);
664 if (bundle == null && !TextUtils.isEmpty(method)) {
665 switch (method) {
683 Log.w(TAG, "unknown method passed to call(): " + method);
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DHTTPHandler.java119 private HTTPResponse exchangeWithRetry(URL url, String message, HTTPMessage.Method method, argument
125 response = httpExchange(url, message, method, contentType);
145 private HTTPResponse httpExchange(URL url, String message, HTTPMessage.Method method, argument
148 HTTPRequest request = new HTTPRequest(message, mCharset, method, url, contentType, false);
158 request = new HTTPRequest(message, StandardCharsets.ISO_8859_1, method, url,

Completed in 8721 milliseconds

123456