HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 276 - 300 of 2520) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/
IgdOMOBF.ASL 33 // handler infrastructure. Details on when/why to call each method is
34 // included in the method header under the "usage" section.
49 ;* Usage: This method is to be called prior to performing any
62 Method(PDRD)
86 ;* Usage: This method is called before every "notify" command. A
89 ;* method.
101 Method(PSTS)
123 ;* Usage: This method is to be called when a graphics device
140 Method(GNOT, 2)
185 ;* Usage: This method must be called when a hotkey event occurs and the
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/commons/
Method.java 38 * A named method descriptor.
44 public class Method {
47 * The method name.
52 * The method descriptor.
75 * Creates a new {@link Method}.
77 * @param name the method's name.
78 * @param desc the method's descriptor.
80 public Method(final String name, final String desc) {
86 * Creates a new {@link Method}.
88 * @param name the method's name
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Method.java 22 * This class provides description of class method.
24 public class Method {
31 public Method(long methodID, String name, String signature, String genericSignature,
41 * @return the method ID.
55 * @return the method name.
62 * @return the method signature.
69 * @return the method generic signature (or an empty string if there is none).
  /external/clang/include/clang/Basic/
ABI.h 186 /// \brief Holds a pointer to the overridden method this thunk is for,
191 const CXXMethodDecl *Method;
193 ThunkInfo() : Method(nullptr) { }
196 const CXXMethodDecl *Method = nullptr)
197 : This(This), Return(Return), Method(Method) {}
201 LHS.Method == RHS.Method;
205 return This.isEmpty() && Return.isEmpty() && Method == nullptr;
  /external/easymock/src/org/easymock/internal/
LegacyMatcherProvider.java 20 import java.lang.reflect.Method;
36 private transient Map<Method, ArgumentsMatcher> matchers = new HashMap<Method, ArgumentsMatcher>();
38 public ArgumentsMatcher getMatcher(Method method) {
39 if (!matchers.containsKey(method)) {
43 matchers.put(method, defaultMatcher);
45 return matchers.get(method);
58 public void setMatcher(Method method, ArgumentsMatcher matcher) {
81 Method method = entry.getKey().getMethod(); local
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListHashCodeTester.java 23 import java.lang.reflect.Method;
44 * Returns the {@link Method} instance for {@link #testHashCode()} so that
49 public static Method getHashCodeMethod() {
  /external/guice/core/src/com/google/inject/internal/
ConstructionProxy.java 24 import java.lang.reflect.Method;
47 * code for method interception), the natural constructor is returned.
53 * Returns the interceptors applied to each method, in order of invocation.
55 ImmutableMap<Method, List<org.aopalliance.intercept.MethodInterceptor>> getMethodInterceptors();
  /external/junit-params/src/main/java/junitparams/internal/
DeferredErrorFrameworkMethod.java 3 import java.lang.reflect.Method;
17 DeferredErrorFrameworkMethod(Method method, Description description,
19 super(method, description);
  /external/objenesis/main/src/test/java/org/objenesis/strategy/
PlatformDescriptionTest.java 20 import java.lang.reflect.Method;
46 Method m = PlatformDescription.class.getDeclaredMethod("getAndroidVersion0");
  /external/proguard/src/proguard/classfile/attribute/
MethodParametersAttribute.java 27 * This Attribute represents a method parameters attribute.
61 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
63 attributeVisitor.visitMethodParametersAttribute(clazz, method, this);
70 public void parametersAccept(Clazz clazz, Method method, ParameterInfoVisitor parameterInfoVisitor)
77 parameterInfoVisitor.visitParameterInfo(clazz, method, index, parameters[index]);
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
TypeAnnotationVisitor.java 39 public void visitTypeAnnotation(Clazz clazz, Method method, TypeAnnotation typeAnnotation);
40 public void visitTypeAnnotation(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation);
TypePathInfoVisitor.java 39 public void visitTypePathInfo(Clazz clazz, Method method, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo);
40 public void visitTypePathInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, TypePathInfo typePathInfo);
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
ParallelUniverseInterface.java 3 import java.lang.reflect.Method;
11 Method method,
  /external/testng/src/main/java/org/testng/junit/
JUnit4TestRecognizer.java 4 import java.lang.reflect.Method;
23 for (Method m : c.getMethods()) {
  /external/testng/src/main/java/org/testng/xml/dom/
Reflect.java 7 import java.lang.reflect.Method;
12 public static List<Pair<Method, Wrapper>> findMethodsWithAnnotation(
14 List<Pair<Method, Wrapper>> result = Lists.newArrayList();
15 for (Method m : c.getMethods()) {
24 public static Pair<Method, Wrapper> findSetterForTag(
31 List<Pair<Method, Wrapper>> methods
34 for (Pair<Method, Wrapper> pair : methods) {
43 for (Method m : c.getDeclaredMethods()) {
  /external/testng/src/test/java/test/annotationtransformer/
AnnotationTransformerInvocationCountTest.java 8 import java.lang.reflect.Method;
22 Constructor testConstructor, Method testMethod) {
  /external/testng/src/test/java/test/expectedexceptions/
ParametersExceptionTest.java 10 import java.lang.reflect.Method;
28 protected void verify(Method method) {
  /external/testng/src/test/java/test/hook/
BaseConfigurable.java 9 import java.lang.reflect.Method;
30 public void bm(Method m) {
ConfigurableSuccessTest.java 8 import java.lang.reflect.Method;
20 m_methodName = ((Method) parameters[0]).getName();
  /external/testng/src/test/java/test/testng195/
AfterMethodSampleTest.java 9 import java.lang.reflect.Method;
24 public void afterMethod(ITestContext c, Method m) {
  /external/vogar/src/vogar/
ClassAnalyzer.java 19 import java.lang.reflect.Method;
32 Method candidate = klass.getMethod(name, parameters);
  /external/volley/src/test/java/com/android/volley/mock/
TestRequest.java 36 public Base(int method, String url, Response.ErrorListener listener) {
37 super(method, url, listener);
76 super(Method.GET, TEST_URL, null);
86 super(Method.POST, TEST_URL, null);
111 super(Method.PUT, TEST_URL, null);
133 super(Method.DELETE, TEST_URL, null);
140 super(Method.HEAD, TEST_URL, null);
147 super(Method.OPTIONS, TEST_URL, null);
154 super(Method.TRACE, TEST_URL, null);
161 super(Method.PATCH, TEST_URL, null)
    [all...]
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServices/src/com/android/framework/multidexlegacytestservices/
ReflectIntermediateClass.java 20 import java.lang.reflect.Method;
35 Method get = bigClass.getMethod("get" + i);
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/util/
SystemProperties.java 21 import java.lang.reflect.Method;
40 final Method get = systemProperties.getMethod("get", String.class, String.class);
  /frameworks/ex/common/java/com/android/common/
SharedPreferencesCompat.java 22 import java.lang.reflect.Method;
29 private static Method sApplyMethod; // final

Completed in 592 milliseconds

<<11121314151617181920>>