HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 126 - 150 of 8284) sorted by null

1 2 3 4 56 7 8 91011>>

  /art/test/508-referrer-method/src/
Main.java 18 // protected p1.PackagePrivateA.method.
21 int result = p1.InPackage.$inline$method();
  /art/test/552-invoke-non-existent-super/smali/
superclass.smali 19 .method public constructor <init>()V
23 .end method
  /art/test/600-verifier-fails/smali/
class.smali 19 .method public constructor <init>()V
24 .end method
construct.smali 19 .method public constructor <init>()V
25 .end method
sput.smali 19 .method public foo(I)V
23 .end method
  /art/test/972-iface-super-multidex/smali-multidex/
oneconflict.smali 22 # return "OneConflict default method called";
26 .method public runDefault()Ljava/lang/String;
29 const-string v0, "OneConflict default method called"
31 .end method
superinterface.smali 22 # return "SuperInterface default method called";
26 .method public runDefault()Ljava/lang/String;
29 const-string v0, "SuperInterface default method called"
31 .end method
twoconflict.smali 22 # return "TwoConflict default method called";
26 .method public runDefault()Ljava/lang/String;
29 const-string v0, "TwoConflict default method called"
31 .end method
  /build/make/tools/droiddoc/test/stubs/src/com/android/stubs/
InterfaceEnum.java 22 public void method() { } method in class:InterfaceEnum
  /external/boringssl/src/include/openssl/
engine.h 30 * Methods are reference counted but |ENGINE|s are not. When creating a method,
38 /* ENGINE_new returns an empty ENGINE that uses the default method for all
47 /* Method accessors.
49 * Method accessors take a method pointer and the size of the structure. The
50 * size allows for ABI compatibility in the case that the method structure is
57 const RSA_METHOD *method,
62 const ECDSA_METHOD *method,
67 /* Generic method functions.
69 * These functions take a void* type but actually operate on all method
    [all...]
  /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);
  /external/javassist/src/main/javassist/compiler/ast/
CallExpr.java 23 * Method call expression.
26 private MemberResolver.Method method; // cached result of lookupMethod() field in class:CallExpr
30 method = null;
33 public void setMethod(MemberResolver.Method m) {
34 method = m;
37 public MemberResolver.Method getMethod() {
38 return method;
  /external/libmicrohttpd/src/microspdy/
alstructures.h 47 * HTTP method
49 char *method; member in struct:SPDY_Request
  /external/libvpx/libvpx/vp9/encoder/
vp9_picklpf.h 24 struct VP9_COMP *cpi, LPF_PICK_METHOD method);
  /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/testng/src/test/java/test/methodselectors/
NoTest1MethodSelector.java 18 ITestNGMethod method, boolean isTestMethod)
20 for (String group : method.getGroups()) {
22 ppp( method.getMethodName() + " is group test1, don't include" );
27 ppp( method.getMethodName() + " is not in group test1" );
  /libcore/ojluni/src/main/java/java/lang/reflect/
InvocationHandler.java 33 * When a method is invoked on a proxy instance, the method
35 * method of its invocation handler.
44 * Processes a method invocation on a proxy instance and returns
45 * the result. This method will be invoked on an invocation handler
46 * when a method is invoked on a proxy instance that it is
49 * @param proxy the proxy instance that the method was invoked on
51 * @param method the {@code Method} instance corresponding to
52 * the interface method invoked on the proxy instance. The declarin
    [all...]
  /libcore/ojluni/src/main/java/sun/net/
ProgressMeteringPolicy.java 39 public boolean shouldMeterInput(URL url, String method);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super/d/
TSuper.d 19 .method public <init>()V
24 .end method
26 .method public toInt()I
30 .end method
32 .method public toInt(F)I
36 .end method
38 .method public native toIntNative()I
39 .end method
41 .method public static toIntStatic()I
45 .end method
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super_range/d/
TSuper.d 19 .method public <init>()V
24 .end method
26 .method public toInt()I
30 .end method
32 .method public toInt(F)I
36 .end method
38 .method public native toIntNative()I
39 .end method
41 .method public static toIntStatic()I
45 .end method
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicHttpRequest.java 56 private final String method; field in class:BasicHttpRequest
59 public BasicHttpRequest(final String method, final String uri) {
61 if (method == null) {
62 throw new IllegalArgumentException("Method name may not be null");
67 this.method = method;
72 public BasicHttpRequest(final String method, final String uri, final ProtocolVersion ver) {
73 this(new BasicRequestLine(method, uri, ver));
82 this.method = requestline.getMethod();
99 return new BasicRequestLine(this.method, this.uri, ver)
    [all...]
  /external/proguard/src/proguard/classfile/editor/
VariableSizeUpdater.java 57 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
61 // method.getName(clazz).equals("abc");
65 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
66 method.getAccessFlags());
70 System.out.println("VariableSizeUpdater: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
75 codeAttribute.instructionsAccept(clazz, method, this);
78 variableCleaner.visitCodeAttribute(clazz, method, codeAttribute);
84 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
CallbackWrapper.java 35 public final ModelMethod method; field in class:CallbackWrapper
43 public CallbackWrapper(ModelClass klass, ModelMethod method) {
45 this.method = method;
46 this.key = uniqueKey(klass, method);
76 public static String uniqueKey(ModelClass klass, ModelMethod method) {
77 String base = klass.getCanonicalName() + "#" + method.getName();
78 for (ModelClass param : method.getParameterTypes()) {
97 return Math.min(method.getMinApi(), klass.getMinApi());
  /external/proguard/src/proguard/classfile/util/
SimplifiedVisitor.java 48 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
71 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
121 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
189 * Visits any type of method RefConstant of the given class.
234 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
295 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
297 visitDeprecatedAttribute(clazz, (Member)method, deprecatedAttribute);
322 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute
    [all...]
  /external/libjpeg-turbo/
jddctmgr.c 39 * The multiplier table contents are IDCT-method-dependent. To support
40 * application changes in IDCT method between scans, we can remake the
54 /* This array contains the IDCT method code that each multiplier table
102 int method = 0; local
113 method = JDCT_ISLOW; /* jidctred uses islow-style table */
120 method = JDCT_ISLOW; /* jidctred uses islow-style table */
124 method = JDCT_ISLOW; /* jidctint uses islow-style table */
131 method = JDCT_ISLOW; /* jidctred uses islow-style table */
135 method = JDCT_ISLOW; /* jidctint uses islow-style table */
144 method = JDCT_ISLOW; /* jidctint uses islow-style table *
    [all...]

Completed in 1394 milliseconds

1 2 3 4 56 7 8 91011>>