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

123456

/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DInjectedClass.java48 public void addMethod(InjectedMethod method) { argument
49 mMethods.add(method);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java154 for (HashMap<String, InverseDescription> method : mStore.inverseMethods.values()) {
155 for (InverseDescription inverseDescription : method.values()) {
178 public void addRenamedMethod(String attribute, String declaringClass, String method, argument
187 declaredOn.getQualifiedName().toString(), method);
193 String method, TypeElement declaredOn) {
202 declaredOn.getQualifiedName().toString(), method, event);
512 for (MethodDescription method : methods.values()) {
513 if (!method.isStatic) {
514 adapters.add(method.type);
518 for (MethodDescription method
192 addInverseMethod(String attribute, String event, String declaringClass, String method, TypeElement declaredOn) argument
600 createMultiAttributeSetter(MethodDescription method, String[] allAttributes, ModelClass[] attributeValues, MultiValueAdapterKey adapter) argument
1069 MultiValueAdapterKey(ProcessingEnvironment processingEnv, ExecutableElement method, String[] attributes, boolean takesComponent, boolean requireAll) argument
1126 public final String method; field in class:SetterStore.MethodDescription
1134 MethodDescription(String type, String method) argument
1143 MethodDescription(ExecutableElement method, int numAttributes, boolean takesComponent) argument
1184 InverseDescription(String type, String method, String event) argument
1189 InverseDescription(ExecutableElement method, String event, boolean takesComponent) argument
1645 setBindingAdapterCall(String method) argument
1687 setBindingAdapterCall(String method) argument
1706 ViewGetterCall(InverseDescription inverseDescription, ModelMethod method, BindingSetterCall eventCall) argument
1744 setBindingAdapterCall(String method) argument
1797 setBindingAdapterCall(String method) argument
[all...]
/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.java28 public String method() { return "no arg"; } method in class:FindMethodBindingObject
30 public String method(int i) { return String.valueOf(i); } method in class:FindMethodBindingObject
32 public String method(float f) { return String.valueOf(f); } method in class:FindMethodBindingObject
34 public String method(String value) { return value; } method in class:FindMethodBindingObject
87 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 ...
H A Ddatabinding-studio-bundle.jar ... .String attribute () public abstract java.lang.String method () } android/databinding/BindingMethods.class BindingMethods.java package android ...
/frameworks/base/tests/testables/src/android/testing/
H A DAndroidTestingRunner.java52 protected Statement methodInvoker(FrameworkMethod method, Object test) { argument
53 method = looperWrap(method, test, method);
54 final Statement statement = super.methodInvoker(method, test);
55 return shouldRunOnUiThread(method) ? new UiThreadStatement(statement, true) : statement;
58 protected Statement withBefores(FrameworkMethod method, Object target, Statement statement) { argument
59 List befores = looperWrap(method, target,
61 return befores.isEmpty() ? statement : new RunBefores(method, statement,
65 protected Statement withAfters(FrameworkMethod method, Objec argument
72 withPotentialTimeout(FrameworkMethod method, Object test, Statement next) argument
85 looperWrap(FrameworkMethod method, Object test, List<FrameworkMethod> methods) argument
99 looperWrap(FrameworkMethod method, Object test, FrameworkMethod base) argument
109 shouldRunOnUiThread(FrameworkMethod method) argument
[all...]
H A DTestableSettingsProvider.java69 public Bundle call(String method, String arg, Bundle extras) { argument
72 final String[] commands = method.split("_", 2);
89 if (DEBUG) Log.d(TAG, "Falling through to real settings " + method);
91 Bundle call = mSettings.call(method, arg, extras);
104 throw new UnsupportedOperationException("Unknown command " + method);
/frameworks/base/tests/utils/testutils/java/com/android/internal/util/test/
H A DFakeSettingsProvider.java93 public Bundle call(String method, String arg, Bundle extras) { argument
95 String[] commands = method.split("_", 2);
125 throw new UnsupportedOperationException("Unknown command " + method);
/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.cpp112 Pseudolocalizer::Method method,
114 Pseudolocalizer localizer(method);
224 Visitor(StringPool* pool, Pseudolocalizer::Method method) argument
225 : pool_(pool), method_(method), localizer_(method) {}
313 void PseudolocalizeIfNeeded(const Pseudolocalizer::Method method, argument
316 Visitor visitor(pool, method);
331 ModifyConfigForPseudoLocale(original_value->config, method);
111 PseudolocalizeStyledString(StyledString* string, Pseudolocalizer::Method method, StringPool* pool) argument
H A DPseudolocalizer.cpp69 Pseudolocalizer::Pseudolocalizer(Method method) : last_depth_(0) { argument
70 SetMethod(method);
73 void Pseudolocalizer::SetMethod(Method method) { argument
74 switch (method) {
H A DPseudolocalizer_test.cpp31 Pseudolocalizer::Method method) {
32 Pseudolocalizer pseudo(method);
42 Pseudolocalizer::Method method) {
43 Pseudolocalizer pseudo(method);
29 SimpleHelper(const char* input, const char* expected, Pseudolocalizer::Method method) argument
40 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.java43 Method method = getMethod(clazz, name, params);
44 method.setAccessible(true);
46 return method;
50 public static Object invoke(@NonNull Method method, @Nullable Object object, argument
54 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/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/perf/
H A DPerformanceRunner.java53 protected Statement methodInvoker(FrameworkMethod method, Object test) { argument
57 Configuration methodConfig = method.getAnnotation(Configuration.class);
64 return new TimedStatement(super.methodInvoker(method, test), warmUpIterations, runs,
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DPromoteClassClassAdapterTest.java70 private void log(String method, String format, Object...args) { argument
72 String.format("[%s] - %s", method, String.format(format, (Object[]) args))
/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/services/autofill/java/com/android/server/autofill/
H A DAutofillManagerServiceImpl.java506 private boolean isValidEventLocked(String method, int sessionId) { argument
508 Slog.w(TAG, method + ": not logging event because history is null");
513 Slog.d(TAG, method + ": not logging event for session " + sessionId
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java285 final IInputMethod method; field in class:InputMethodManagerService.SessionState
293 + " method " + Integer.toHexString(
294 System.identityHashCode(method))
304 method = _method;
345 * Id obtained with {@link InputMethodInfo#getId()} for the currently selected input method.
346 * method. This is to be synchronized with the secure settings keyed with
349 * <p>This can be transiently {@code null} when the system is re-initializing input method
367 * The client that is currently bound to an input method.
373 * from the input method client. If the window state is already changed before the report is
396 * The missing method flag
1155 MethodCallback(InputMethodManagerService imms, IInputMethod method, InputChannel channel) argument
1915 onSessionCreated(IInputMethod method, IInputMethodSession session, InputChannel channel) argument
[all...]
H A DTelephonyRegistry.java1619 private void enforceNotifyPermissionOrCarrierPrivilege(String method) { argument
1627 private boolean checkNotifyPermission(String method) { argument
1631 String msg = "Modify Phone State Permission Denial: " + method + " from pid="

Completed in 766 milliseconds

123456