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

<<51525354555657585960>>

  /libcore/jsr166-tests/src/test/java/jsr166/
JSR166TestCase.java 21 import java.lang.reflect.Method;
100 * method (or {@code fail} to do so) before returning from the
101 * method. The {@code joinPool} method can be used to do this when
109 * <li>Usually, there is one testcase method per JSR166 method
111 * methods as there are exceptions the method can throw. Sometimes
112 * there are multiple tests per JSR166 method when the different
118 * method purports to test. The javadocs do not say anything about how
366 Method m = testClass.getDeclaredMethod("suite"
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketFactoryTest.java 20 import java.lang.reflect.Method;
  /libcore/ojluni/src/main/java/java/lang/reflect/
Constructor.java 59 private static final Comparator<Method> ORDER_BY_SIGNATURE = null; // Unused; must match Method.
145 * parameter types, in declaration order, of the method represented by
147 * underlying method takes no parameters.
157 * parameter types of the underlying method, in declaration order
159 * if the generic method signature does not conform to the format
163 * types of the underlying method refers to a non-existent type
166 * the underlying method's parameter types refer to a parameterized
189 * Returns an array of length 0 if the underlying method declares
196 * thrown by the underlying method
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
SSLSocketFactoryWrapper.java 22 import java.lang.reflect.Method;
216 * to {@link #createSocket()}. It is harmless to call this method
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java 66 * there's no need to perform the verification multiple times, so we wait until the method is fully analyzed and then
69 * Before calling the analyze() method, you must have initialized the ClassPath by calling
73 @Nonnull private final Method method; field in class:MethodAnalyzer
98 public MethodAnalyzer(@Nonnull ClassPath classPath, @Nonnull Method method,
104 this.method = method;
106 MethodImplementation methodImpl = method.getImplementation();
108 throw new IllegalArgumentException("The method has no implementation")
145 Method method = this.method; local
    [all...]
  /external/v8/src/third_party/fdlibm/
fdlibm.js 403 // Method :
568 // Method
762 // Method :
811 // Method :
863 // Method :
921 // Method :
990 // Method:
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 197 // Ignore implicit declarations, unless it's an objc method because
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
RenderScript.java 21 import java.lang.reflect.Method;
98 static Method registerNativeAllocation;
99 static Method registerNativeFree;
158 Method getint = sysprop.getDeclaredMethod("getInt", signature);
188 Method getMinorID = javaRS.getDeclaredMethod("getMinorID");
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp 152 const CXXMethodDecl *Method) {
154 if (!Method || ComputedEST == EST_MSAny)
158 = Method->getType()->getAs<FunctionProtoType>();
    [all...]
  /external/apache-http/src/org/apache/commons/logging/
LogFactory.java 27 import java.lang.reflect.Method;
132 * logDiagnostic method, so that users can clearly see which
218 * Convenience method to derive a name from the specified class and
373 * <p><em>NOTE</em> - If the properties file method of identifying the
609 // * that can cause problems (see comments in newFactory method)
639 * Convenience method to return a named logger, without the application
661 * Convenience method to return a named logger, without the application
687 * (if any), after calling the instance method <code>release()</code> on
717 * instances, after calling the instance method <code>release()</code> on
754 * all code is written to call this method rather than Class.getClassLoader
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
LogFactoryImpl.java 22 import java.lang.reflect.Method;
52 * <code>setLogFactory()</code> method that accepts a {@link LogFactory}
53 * parameter, this method will be called on each newly created instance
59 * <code>getInstance()</code> method.</p>
97 initDiagnostics(); // method on this object
132 * See also method setAttribute.
148 * See also method setAttribute.
164 * See also method setAttribute.
195 * The string prefixed to every message output by the logDiagnostic method.
237 * The one-argument <code>setLogFactory</code> method of the selecte
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathContext.java 23 import java.lang.reflect.Method;
332 * @param owner Value that can be retrieved via the getOwnerObject() method.
342 * @param owner Value that can be retrieved via the getOwnerObject() method.
455 private Method m_ownerGetErrorListener;
1075 * to the ExpressionContext interface to avoid having to call this method.
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.h 186 /// Return the debug type for a C++ method.
189 /// to get a method type which includes \c this pointer.
190 llvm::DISubroutineType *getOrCreateMethodType(const CXXMethodDecl *Method,
207 llvm::DISubprogram *CreateCXXMemberFunction(const CXXMethodDecl *Method,
442 /// \return debug info descriptor to describe method
443 /// declaration for the given method definition.
479 /// Returns the unmangled name of an Objective-C method.
  /external/clang/test/CodeGenCXX/
visibility.cpp 607 template<class T> void Method() {}
608 template DEFAULT void Method<char>();
    [all...]
  /external/guice/core/src/com/google/inject/spi/
Elements.java 55 import java.lang.reflect.Method;
226 Matcher<? super Method> methodMatcher,
508 // The call stack starts from current top module configure and ends at this method caller
  /external/proguard/src/proguard/classfile/util/
DynamicMemberReferenceInitializer.java 34 * <code>Class.get[Declared]{Field,Method}</code> references of all instructions
209 // SomeClass.class.get[Declared]Method("someMethod", new Class[] {}).
219 // SomeClass.class.get[Declared]Method("someMethod", new Class[] { A.class }).
233 // SomeClass.class.get[Declared]Method("someMethod", new Class[] { A.class, B.class }).
312 // get[Declared]Method("someMethod", new Class[] {}).
321 // get[Declared]Method("someMethod", new Class[] { A.class }).
334 // get[Declared]Method("someMethod", new Class[] { A.class, B.class }).
534 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
537 matchGetMember(clazz, method, codeAttribute, offset, instruction
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java 118 for (PoolMethod method: poolClassDef.getMethods()) {
119 String methodDescriptor = ReferenceUtil.getMethodDescriptor(method, true);
121 throw new ExceptionWithContext("Multiple definitions for method %s->%s",
124 methodPool.intern(method);
125 internCode(method);
126 internDebug(method);
127 annotationSetPool.intern(method.getAnnotations());
129 for (MethodParameter parameter: method.getParameters()) {
137 private void internCode(@Nonnull Method method) {
    [all...]
  /external/testng/src/main/java/org/testng/internal/annotations/
JDK15TagFactory.java 4 import java.lang.reflect.Method;
460 * method, then the class and then parent classes until we either find a
467 // Look on the method first and return right away if the annotation is there
489 * findInherited method above is that TestNG aggregates String[] values across
490 * hierarchies. For example, of the method annotation has { "a", "b" } and the
520 Method m = test.getClass().getMethod(methodName, new Class[0]);
  /external/v8/test/mjsunit/es6/
typedarray-every.js 101 // The method must work for typed arrays created from ArrayBuffer.
124 // The %TypedArray%.every() method should not work when
131 // Method must be useable on instances of other typed arrays.
typedarray-foreach.js 105 // The method must work for typed arrays created from ArrayBuffer.
127 // The %TypedArray%.forEach() method should not work when
134 // Method must be useable on instances of other typed arrays.
  /external/v8/test/mjsunit/strong/
undefined.js 91 // Method parameter named 'undefined'
92 // Class method
97 //Class generator method
102 //Object literal method
106 //Object literal generator method
  /frameworks/base/tests/notification/src/com/android/frameworks/tests/notification/
NotificationTests.java 43 import java.lang.reflect.Method;
413 Method getBlobAshmemSize = null;
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmGeneratorTest.java 35 import java.lang.reflect.Method;
438 Method method = emptyArrayClass.getMethod("getFrameworkClassLoader"); local
439 Object cl = method.invoke(emptyArrayInstance);
553 } else if (sort == Type.METHOD) {
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BaseRecyclerViewInstrumentationTest.java 42 import java.lang.reflect.Method;
132 Method getUIAutomation = Instrumentation.class.getMethod("getUiAutomation");
794 * For example, if adapter has 5 items (A,B,C,D,E), and then you call this method with
895 * For instance, calling this method with <code>[1,1], [2,-1]</code> it will first add an
    [all...]
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
InfiniteStreamWithLimitOpTest.java 38 import java.lang.reflect.Method;
278 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
279 switch (method.getName()) {
281 int c = (Integer) method.invoke(s, args);
286 boolean b = (Boolean) method.invoke(s, args);
290 return method.invoke(s, args);

Completed in 1244 milliseconds

<<51525354555657585960>>