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

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/
Method.java 26 * Representation of a method from a class.
30 public interface Method extends Member
  /external/javassist/src/main/javassist/util/proxy/
MethodHandler.java 18 import java.lang.reflect.Method;
28 * Is called when a method is invoked on a proxy instance associated
29 * with this handler. This method must process that method invocation.
32 * @param thisMethod the overridden method declared in the super
34 * @param proceed the forwarder method for invoking the overridden
35 * method. It is null if the overridden mehtod is
38 * the arguments passed in the method invocation
42 * @return the resulting value of the method invocation.
44 * @throws Throwable if the method invocation fails
    [all...]
MethodFilter.java 18 import java.lang.reflect.Method;
27 * Returns true if the given method is implemented by a handler.
29 boolean isHandled(Method m);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
DisplayNames.properties 7 # Default Input method display names for Indic input methods
10 DisplayName.Bengali = Bengali Input Method
11 DisplayName.Devanagari = Devanagari Input Method
12 DisplayName.Gujarati = Gujarati Input Method
13 DisplayName.Gurmukhi = Gurmukhi Input Method
14 DisplayName.Kannada = Kannada Input Method
15 DisplayName.Malayalam = Malayalam Input Method
16 DisplayName.Oriya = Oriya Input Method
17 DisplayName.Tamil = Tamil Input Method
18 DisplayName.Telugu = Telugu Input Method
    [all...]
  /libcore/ojluni/src/main/java/java/lang/annotation/
AnnotationTypeMismatchException.java 27 import java.lang.reflect.Method;
45 * The <tt>Method</tt> object for the annotation element.
47 private final Method element;
60 * @param element the <tt>Method</tt> object for the annotation element
65 public AnnotationTypeMismatchException(Method element, String foundType) {
73 * Returns the <tt>Method</tt> object for the incorrectly typed element.
75 * @return the <tt>Method</tt> object for the incorrectly typed element
77 public Method element() {
  /external/libweave/src/
http_constants.cc 27 const weave::EnumToStringMap<HttpClient::Method>::Map kMapMethod[] = {
28 {HttpClient::Method::kGet, "GET"},
29 {HttpClient::Method::kPost, "POST"},
30 {HttpClient::Method::kPut, "PUT"},
31 {HttpClient::Method::kPatch, "PATCH"}};
36 LIBWEAVE_EXPORT EnumToStringMap<HttpClient::Method>::EnumToStringMap()
  /frameworks/base/tools/aapt2/compile/
Pseudolocalizer_test.cpp 29 Pseudolocalizer::Method method) {
30 Pseudolocalizer pseudo(method);
41 Pseudolocalizer::Method method) {
42 Pseudolocalizer pseudo(method);
55 EXPECT_TRUE(simpleHelper("", "", Pseudolocalizer::Method::kNone));
56 EXPECT_TRUE(simpleHelper("Hello, world", "Hello, world", Pseudolocalizer::Method::kNone));
59 "Hello, world", Pseudolocalizer::Method::kNone));
63 EXPECT_TRUE(simpleHelper("", "[]", Pseudolocalizer::Method::kAccent))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Method.java 19 * $Id: Method.java 468654 2006-10-28 07:09:23Z minchau $
34 * OutputPropertiesFactory.getDefaultMethodProperties() method to get
44 public final class Method
49 private Method() {
54 * The output method type for XML documents: <tt>xml</tt>.
59 * The output method type for HTML documents: <tt>html</tt>.
64 * The output method for XHTML documents: <tt>xhtml</tt>.
66 * This method type is not currently supported.
71 * The output method type for text documents: <tt>text</tt>.
76 * The "internal" method, just used when no method is
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
InvocationHandler.java 18 import java.lang.reflect.Method;
31 * @see java.lang.reflect.InvocationHandler#invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object)
33 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable;
CallbackFilter.java 18 import java.lang.reflect.Method;
23 * callback. The type of the callbacks chosen for each method affects
24 * the bytecode generated for that method in the subclass, and cannot
29 * Map a method to a callback.
31 * @param method the intercepted method
33 * @return the index into the array of callbacks (as specified by {@link Enhancer#setCallbacks}) to use for the method,
35 int accept(Method method, List<Method> allMethods)
    [all...]
  /external/mockito/src/org/mockito/internal/invocation/
MockitoMethod.java 7 import java.lang.reflect.Method;
21 public Method getJavaMethod();
  /external/testng/src/main/java/org/testng/
TestNGUtils.java 5 import java.lang.reflect.Method;
10 * Create an ITestNGMethod for @code{method} based on @code{existingMethod}, which needs
13 public static ITestNGMethod createITestNGMethod(ITestNGMethod existingMethod, Method method) {
14 return new ClonedMethod(existingMethod, method);
  /frameworks/base/core/java/android/hardware/camera2/dispatch/
Dispatchable.java 18 import java.lang.reflect.Method;
21 * Dynamically dispatch a method and its argument to some object.
23 * <p>This can be used to intercept method calls and do work around them, redirect work,
28 * Dispatch the method and arguments to this object.
29 * @param method a method defined in class {@code T}
30 * @param args arguments corresponding to said {@code method}
31 * @return the object returned when invoking {@code method}
32 * @throws Throwable any exception that might have been raised while invoking the method
34 public Object dispatch(Method method, Object[] args) throws Throwable
    [all...]
  /art/test/485-checker-dce-loop-update/src/
Main.java 17 import java.lang.reflect.Method;
  /external/guice/extensions/persist/src/com/google/inject/persist/finder/
DynamicFinder.java 19 import java.lang.reflect.Method;
27 private final Method method; field in class:DynamicFinder
30 public DynamicFinder(Method method) {
31 this.method = method;
32 this.finder = method.getAnnotation(Finder.class);
36 * Returns some metadata if the method is annotated {@code @Finder} or null.
38 * @param method a method you want to test as a dynamic finde
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/
AuthMatch.java 5 * None means that there is a distinct mismatch, i.e. realm, method or parameter is defined
15 public static final int Method = 0x02;
17 public static final int MethodParam = Method | Param;
18 public static final int Exact = Realm | Method | Param;
31 if ((match & Method) != 0) {
32 sb.append("Method");
  /dalvik/dx/src/com/android/dx/cf/iface/
StdMethodList.java 23 * an array of {@link Method} objects and can be made immutable.
36 public Method get(int n) {
37 return (Method) get0(n);
41 * Sets the method at the given index.
43 * @param n {@code >= 0, < size();} which method
44 * @param method {@code null-ok;} the method object
46 public void set(int n, Method method) {
47 set0(n, method);
    [all...]
  /external/clang/test/CodeGenCXX/
2004-03-08-ReinterpretCastCopy.cpp 5 virtual void Method() = 0;
9 virtual void Method() { }
17 fn_type_a f = reinterpret_cast<fn_type_a>(&B::Method);
  /external/mockito/src/org/mockito/internal/runners/util/
TestMethodsFinder.java 9 import java.lang.reflect.Method;
13 Method[] methods = klass.getMethods();
14 for(Method m:methods) {
  /external/testng/src/main/java/org/testng/internal/
DataProviderHolder.java 5 import java.lang.reflect.Method;
8 * A holder for a pair of Method and IDataProviderAnnotation
12 Method method; field in class:DataProviderHolder
15 public DataProviderHolder(IDataProviderAnnotation annotation, Method method, Object instance) {
17 this.method = method;
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
Reflection.java 22 import java.lang.reflect.Method;
30 public static ImmutableSet<Method> getAnnotatedMethods(Class<?> clazz,
32 Method[] methods = clazz.getDeclaredMethods();
33 ImmutableSet.Builder<Method> builder = ImmutableSet.builder();
34 for (Method method : methods) {
35 if (method.isAnnotationPresent(annotationClass)) {
36 method.setAccessible(true);
37 builder.add(method);
  /libcore/dex/src/main/java/com/android/dex/
ClassData.java 22 private final Method[] directMethods;
23 private final Method[] virtualMethods;
26 Method[] directMethods, Method[] virtualMethods) {
41 public Method[] getDirectMethods() {
45 public Method[] getVirtualMethods() {
56 public Method[] allMethods() {
57 Method[] result = new Method[directMethods.length + virtualMethods.length];
81 public static class Method {
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
VerificationTypeVisitor.java 36 public void visitIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, IntegerType integerType);
37 public void visitFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FloatType floatType);
38 public void visitLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LongType longType);
39 public void visitDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, DoubleType doubleType);
40 public void visitTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TopType topType)
    [all...]
  /external/proguard/src/proguard/classfile/instruction/visitor/
InstructionVisitor.java 36 public void visitSimpleInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction);
37 public void visitVariableInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction);
38 public void visitConstantInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction);
39 public void visitBranchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction);
40 public void visitTableSwitchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
    [all...]
  /art/test/588-checker-irreducible-lifetime-hole/src/
Main.java 17 import java.lang.reflect.Method;
26 Method m = c.getMethod("simpleLoop1", int.class);
31 Method m = c.getMethod("simpleLoop2", int.class);

Completed in 2099 milliseconds

1 2 3 4 5 6 7 8 91011>>