HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 1051 - 1075 of 1620) sorted by null

<<41424344454647484950>>

  /external/testng/src/main/java/org/testng/xml/dom/
DomUtil.java 18 import java.lang.reflect.Method;
202 } // TODO: (method-selectors?,packages?) >
234 Method foundMethod = null;
235 for (Method m : object.getClass().getDeclaredMethods()) {
243 p("Warning: couldn't find setter method " + methodName);
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
VCardVerifier.java 39 import java.lang.reflect.Method;
234 * Errors around InputStream must be handled outside this method.
339 private Method getMockGetEntityIteratorMethod()
357 Method mockGetEntityIteratorMethod = null;
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatViewInflater.java 50 import java.lang.reflect.Method;
189 * android:onClick doesn't handle views with a ContextWrapper context. This method
267 * named click handling method from a parent or ancestor context.
273 private Method mResolvedMethod;
291 "Could not execute non-public method for android:onClick", e);
294 "Could not execute method for android:onClick", e);
303 final Method method = context.getClass().getMethod(mMethodName, View.class); local
304 if (method != null) {
305 mResolvedMethod = method;
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsRequest.java 36 import java.lang.reflect.Method;
323 * We first try the hidden but correct method on ConnectivityManager. If we can't, use
332 // First try the good method using reflection
334 final Method method = connMgr.getClass().getMethod("requestRouteToHostAddress", local
336 if (method != null) {
337 return (Boolean) method.invoke(connMgr, TYPE_MOBILE_MMS, inetAddr);
345 final Method method = connMgr.getClass().getMethod("requestRouteToHost", local
347 if (method != null)
    [all...]
MmsHttpClient.java 36 import java.lang.reflect.Method;
102 * @param method HTTP method, POST for sending and GET for downloading
112 public byte[] execute(String urlString, byte[] pdu, String method, boolean isProxySet,
115 Log.d(MmsService.TAG, "HTTP: " + method + " " + Utils.redactUrlForNonVerbose(urlString)
118 checkMethod(method);
152 if (METHOD_POST.equals(method)) {
178 } else if (METHOD_GET.equals(method)) {
240 private static void checkMethod(String method) throws MmsHttpException {
241 if (!METHOD_GET.equals(method) && !METHOD_POST.equals(method))
476 final Method method = SubscriptionManager.class.getMethod("getSlotId", Integer.TYPE); local
494 final Method method = mTelephonyManager.getClass().getMethod("getNai", Integer.TYPE); local
513 final Method method = systemPropertiesClass.getMethod("get", String.class); local
    [all...]
  /system/tools/aidl/
ast_java.h 313 struct Method : public ClassElement {
323 Method() = default;
324 virtual ~Method() = default;
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
FeatureDeviceInfo.java 26 import java.lang.reflect.Method;
  /external/guava/guava/src/com/google/common/reflect/
Element.java 26 import java.lang.reflect.Method;
32 * Represents either a {@link Field}, a {@link Method} or a {@link Constructor}.
118 * Returns {@code true} if this method is final, per {@code Modifier.isFinal(getModifiers())}.
120 * <p>Note that a method may still be effectively "final", or non-overridable when it has no
122 * class. To tell whether a method is overridable, use {@link Invokable#isOverridable}.
128 /** Returns true if the method is abstract. */
138 /** Returns true if the method is synchronized. */
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListSubListTester.java 36 import java.lang.reflect.Method;
333 * Returns the {@link Method} instance for
341 public static Method getSubListOriginalListSetAffectsSubListMethod() {
346 * Returns the {@link Method} instance for
354 public static Method getSubListOriginalListSetAffectsSubListLargeListMethod() {
359 * Returns the {@link Method} instance for
367 public static Method getSubListSubListRemoveAffectsOriginalLargeListMethod() {
  /external/guice/core/test/com/google/inject/spi/
InjectionPointTest.java 41 import java.lang.reflect.Method;
85 Method barMethod = getClass().getMethod("bar", String.class);
173 Method instanceMethod = HasInjections.class.getMethod("instanceMethod", String.class);
184 Method staticMethod = HasInjections.class.getMethod("staticMethod", String.class);
277 * from the superclass into the subclass method when it generated the
283 * consider the subclass an injectable method and eject the superclass
  /external/javassist/src/main/javassist/
ClassPool.java 23 import java.lang.reflect.Method;
71 private static java.lang.reflect.Method defineClass1, defineClass2;
197 * The returned object is always identical since this method is
206 * <p>When this method is called for the first time, the default
271 * This method is periodically invoked so that memory
328 * For example, a package name can be recorded by this method.
331 * if the given name is an invalid name recorded by this method.
356 * Undocumented method. Do not use; internal-use only.
370 * This method is useful if you want to generate a new class as a copy
401 * This method is invoked by CtClassType.setName(). It removes
1069 java.lang.reflect.Method method; local
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
ConstructorDelegate.java 79 final Method newInstance = ReflectUtils.findNewInstance(iface);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/util/
ParallelSorterEmitter.java 18 import java.lang.reflect.Method;
  /external/proguard/src/proguard/classfile/util/
AllParameterVisitor.java 105 * Lets the parameter visitor visit the parameters of the given method.
108 Method method,
111 String descriptor = method.getDescriptor(clazz);
220 // End of the method parameters.
226 method,
  /external/proguard/src/proguard/obfuscate/
MappingKeeper.java 148 // Find the method.
152 Method method = clazz.findMethod(methodName, descriptor); local
153 if (method != null)
159 String currentNewName = MemberObfuscator.newMemberName(method);
166 ": method '" + methodReturnType + " " + methodName + JavaConstants.METHOD_ARGUMENTS_OPEN + methodArguments + JavaConstants.METHOD_ARGUMENTS_CLOSE +
173 MemberObfuscator.setFixedNewMemberName(method, newMethodName);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
RewriterModule.java 52 @Nonnull public Rewriter<Method> getMethodRewriter(@Nonnull Rewriters rewriters) {
  /libcore/luni/src/main/java/libcore/reflect/
AnnotatedElements.java 104 * Given a complex annotation "annotation", it should have a "T[] value()" method on it.
105 * Call that method and add all of the nested annotations into unfoldedAnnotations list.
122 Method valuesMethod;
129 "annotation element class = " + annotationClass + "; missing value() method");
189 * This method does not handle inherited annotations and is
190 * intended for use for {@code Method}, {@code Field}, {@code Package}.
210 // in the Class override of this method.
  /packages/apps/Email/provider_src/com/android/email/mail/
Sender.java 38 * Because this method will be called through reflection, it can not be protected.
50 // and invoke "newInstance" class method and instantiate sender object.
51 java.lang.reflect.Method m =
56 "exception %s invoking method %s#newInstance(Account, Context) for %s",
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubyprimtypes.swg 8 /* auxiliary ruby fail method */
19 %define %ruby_aux_method(Type, Method, Action)
20 SWIGINTERN VALUE SWIG_AUX_##Method##(VALUE *args)
  /system/weaved/buffet/
http_transport_client.cc 83 void HttpTransportClient::SendRequest(Method method,
88 brillo::http::Request request(url, weave::EnumToString(method), transport_);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
Enhancer.java 19 import java.lang.reflect.Method;
28 * Generates dynamic subclasses to enable method interception. This
38 * and after the invocation of the "super" method. In addition you can modify the
39 * arguments before calling the super method, or not call it at all.
45 * which callback is used on a per-method basis with a {@link CallbackFilter}.
62 public int accept(Method method, List<Method> allMethods) {
212 * array for each method in the proxied class.
240 * will call the method of the proxy's base class, if it exists
883 MethodInfo method = (MethodInfo)it1.next(); local
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
PartialEvaluator.java 176 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
180 // method.getName(clazz).equals("abc");
183 // Catch any unexpected exceptions from the actual visiting method.
187 visitCodeAttribute0(clazz, method, codeAttribute);
193 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
198 method.accept(clazz, new ClassPrinter());
247 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 242 const ObjCMethodDecl *Method = Msg->getMethodDecl();
243 if (!Method)
245 if (!Method->isPropertyAccessor())
248 const ObjCPropertyDecl *Prop = Method->findPropertyDecl();
261 // Find space location range between receiver expression and getter method.
268 // rewrite getter method expression into: receiver.property or
557 // It is trying to remove the setter method decl. line entirely.
576 for (auto *Method : D->methods()) {
577 if (Method->isDeprecated())
579 bool PropertyInferred = migrateProperty(Ctx, D, Method);
    [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp 66 /// Method - The method decl of the overrider.
67 const CXXMethodDecl *Method;
76 OverriderInfo() : Method(nullptr), VirtualBase(nullptr),
139 /// getOverrider - Get the final overrider for the given method declaration in
194 const UniqueVirtualMethod &Method = M.second.front();
196 const CXXRecordDecl *OverriderRD = Method.Method->getParent();
198 std::make_pair(OverriderRD, Method.Subobject))
202 Method.Subobject)]
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 163 /// \brief If we are in an instance method definition, the \@implementation
182 // If this is an Objective-C instance method definition, dig out the
190 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl())
191 if (Method->isInstanceMethod())
192 if (ObjCInterfaceDecl *Interface = Method->getClassInterface())
239 /// When an Objective-C method declaration result is added, and that
240 /// method's selector matches this preferred selector, we give that method
564 // There is no way to qualify a name declared in a function or method.
664 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)
    [all...]

Completed in 749 milliseconds

<<41424344454647484950>>