Searched refs:mMethod (Results 1 - 19 of 19) sorted by relevance

/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
H A DJavaMethod.java28 public final Method mMethod; field in class:JavaMethod
31 mMethod = method;
37 return new JavaClass(mMethod.getDeclaringClass());
42 Class[] parameterTypes = mMethod.getParameterTypes();
52 return mMethod.getName();
57 return new JavaClass(mMethod.getReturnType());
62 return void.class.equals(mMethod.getReturnType());
67 return Modifier.isPublic(mMethod.getModifiers());
72 return Modifier.isStatic(mMethod.getModifiers());
77 return Modifier.isAbstract(mMethod
[all...]
H A DJavaTypeUtil.java33 Method method = ((JavaMethod) modelMethod).mMethod;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWnmData.java31 private final int mMethod; field in class:WnmData
74 mMethod = method;
85 mMethod = -1;
102 return mMethod;
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DListenerExpr.java39 private final ModelMethod mMethod; field in class:ListenerExpr
45 mMethod = method;
54 return mMethod;
86 final int minApi = Math.max(mListenerType.getMinApi(), mMethod.getMinApi());
/frameworks/base/libs/hwui/renderthread/
H A DRenderTask.h77 : mMethod(method), mReturnPtr(nullptr) {}
83 void* retval = mMethod(mData);
91 RunnableMethod mMethod; member in class:android::uirenderer::renderthread::MethodInvokeRenderTask
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
H A DAnnotationMethod.java39 final ExecutableType mMethod; field in class:AnnotationMethod
49 mMethod = (ExecutableType) typeUtils.asMemberOf(declaringType, executableElement);
98 List<? extends TypeMirror> parameters = mMethod.getParameterTypes();
113 TypeMirror returnType = mMethod.getReturnType();
121 return mMethod.getReturnType().getKind() == TypeKind.VOID;
173 "mMethod=" + mMethod +
/frameworks/base/tools/aapt2/compile/
H A DPseudolocaleGenerator.cpp120 Pseudolocalizer::Method mMethod; member in struct:aapt::__anon1155::Visitor
128 mPool(pool), mMethod(method), mLocalizer(method) {
134 Visitor subVisitor(mPool, mMethod);
159 mItem = pseudolocalizeStyledString(string, mMethod, mPool);
/frameworks/volley/src/main/java/com/android/volley/
H A DRequest.java67 private final int mMethod; field in class:Request
126 mMethod = method;
138 return mMethod;
/frameworks/base/core/java/android/view/
H A DMenuInflater.java234 private Method mMethod; field in class:MenuInflater.InflatedOnMenuItemClickListener
240 mMethod = c.getMethod(methodName, PARAM_TYPES);
252 if (mMethod.getReturnType() == Boolean.TYPE) {
253 return (Boolean) mMethod.invoke(mRealOwner, item);
255 mMethod.invoke(mRealOwner, item);
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DSupportMenuInflater.java238 private Method mMethod; field in class:SupportMenuInflater.InflatedOnMenuItemClickListener
244 mMethod = c.getMethod(methodName, PARAM_TYPES);
256 if (mMethod.getReturnType() == Boolean.TYPE) {
257 return (Boolean) mMethod.invoke(mRealOwner, item);
259 mMethod.invoke(mRealOwner, item);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/
H A DEventBus.java93 private Method mMethod; field in class:EventHandlerMethod
97 mMethod = method;
98 mMethod.setAccessible(true);
104 mMethod.invoke(target, event);
109 return mMethod.getName() + "(" + eventType.getSimpleName() + ")";
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java478 final String mMethod, mArg; field in class:Content.CallCommand
483 mMethod = method;
508 Bundle result = provider.call(null, mMethod, mArg, mExtras);
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteInit.java877 private final Method mMethod; field in class:ZygoteInit.MethodAndArgsCaller
883 mMethod = method;
889 mMethod.invoke(null, new Object[] { mArgs });
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java141 e.mMethod = ellipsize;
H A DStaticLayout.java506 e.mMethod = ellipsize;
545 e.mMethod = b.mEllipsize;
H A DLayout.java1952 /* package */ TextUtils.TruncateAt mMethod; field in class:Layout.Ellipsizer
1974 mLayout.ellipsize(start, end, i, dest, destoff, mMethod);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java1694 private final ModelMethod mMethod; field in class:SetterStore.ViewGetterCall
1700 mMethod = method;
1715 return viewExpression + "." + mMethod.getName() + "()";
1720 return mMethod.getMinApi();
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java744 private final IInputMethod mMethod; field in class:InputMethodManagerService.MethodCallback
750 mMethod = method;
758 mParentIMMS.onSessionCreated(mMethod, session, mChannel);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 387 milliseconds