/external/proguard/src/proguard/optimize/info/ |
NoSideEffectMethodMarker.java | 66 private static void markNoSideEffects(Method method) 68 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); 75 MethodLinker.lastMember(method).setVisitorInfo(KEPT_BUT_NO_SIDE_EFFECTS); 80 public static boolean hasNoSideEffects(Method method) 82 if (MethodLinker.lastVisitorAccepter(method).getVisitorInfo() == KEPT_BUT_NO_SIDE_EFFECTS) 87 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/ |
HttpRedirect.java | 47 private String method; field in class:HttpRedirect 49 public HttpRedirect(final String method, final URI uri) { 51 if (method.equalsIgnoreCase(HttpHead.METHOD_NAME)) { 52 this.method = HttpHead.METHOD_NAME; 54 this.method = HttpGet.METHOD_NAME; 61 return this.method;
|
/external/proguard/src/proguard/optimize/peephole/ |
UnreachableCodeRemover.java | 79 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 83 // method.getName(clazz).equals("abc"); 86 // Catch any unexpected exceptions from the actual visiting method. 90 visitCodeAttribute0(clazz, method, codeAttribute); 96 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]"); 104 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute [all...] |
/art/runtime/entrypoints/jni/ |
jni_entrypoints.cc | 26 // Used by the JNI dlsym stub to find the native method to invoke if none is registered. 37 mirror::ArtMethod* method = self->GetCurrentMethod(NULL); local 38 DCHECK(method != NULL); 40 // Lookup symbol address for method, on failure we'll return NULL with an exception set, 41 // otherwise we return the address of the method we found. 42 void* native_code = soa.Vm()->FindCodeForNativeMethod(method); 48 method->RegisterNative(self, native_code, false);
|
/build/tools/droiddoc/test/stubs/src/com/android/stubs/ |
InterfaceEnum.java | 22 public void method() { } method in class:InterfaceEnum
|
/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...] |
/dalvik/dx/tests/121-sccp/ |
run | 18 dx --debug --dex --dump-method=Blort.test'*' Blort.class 20 dx --debug --dex --dump-method=Blort.test'*' Blort.class
|
/dalvik/dx/tests/122-switch-with-high-register/ |
run | 18 dx --debug --dex --dump-method=Blort.switchWithHighRegister Blort.class 20 dx --debug --dex --dump-method=Blort.switchWithHighRegister Blort.class
|
/external/apache-http/src/org/apache/http/message/ |
BasicHttpRequest.java | 51 private final String method; field in class:BasicHttpRequest 54 public BasicHttpRequest(final String method, final String uri) { 56 if (method == null) { 57 throw new IllegalArgumentException("Method name may not be null"); 62 this.method = method; 67 public BasicHttpRequest(final String method, final String uri, final ProtocolVersion ver) { 68 this(new BasicRequestLine(method, uri, ver)); 77 this.method = requestline.getMethod(); 94 return new BasicRequestLine(this.method, this.uri, ver) [all...] |
/external/chromium_org/content/browser/android/java/ |
jni_helper.h | 14 // Gets the method ID from the class name. Clears the pending Java exception 15 // and returns NULL if the method is not found. Caches results. 22 const char* method,
|
/external/chromium_org/third_party/WebKit/ManualTests/resources/ |
TestApplet.java | 12 public int method() method in class:TestApplet
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
vp9_picklpf.h | 25 struct VP9_COMP *cpi, LPF_PICK_METHOD 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/libvpx/libvpx/vp9/encoder/ |
vp9_picklpf.h | 25 struct VP9_COMP *cpi, LPF_PICK_METHOD method);
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
CallbackGenerator.java | 30 CodeEmitter beginMethod(ClassEmitter ce, MethodInfo method); 31 int getOriginalModifiers(MethodInfo method); 32 int getIndex(MethodInfo method); 34 Signature getImplSignature(MethodInfo method);
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/ |
FastMethod.java | 19 import java.lang.reflect.Method; 23 FastMethod(FastClass fc, Method method) { 24 super(fc, method, helper(fc, method)); 27 private static int helper(FastClass fc, Method method) { 28 int index = fc.getIndex(method.getName(), method.getParameterTypes()); 30 Class[] types = method.getParameterTypes() [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...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_methods.h | 2 * EAP server method registration 15 EapType method); 17 EapType method, const char *name); 18 void eap_server_method_free(struct eap_method *method); 19 int eap_server_method_register(struct eap_method *method); 25 /* EAP server method registration calls for statically linked in methods */
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_picklpf.h | 25 struct VP9_COMP *cpi, LPF_PICK_METHOD method);
|
/libcore/luni/src/main/java/java/lang/reflect/ |
InvocationHandler.java | 28 * Handles the method which was originally invoked on the proxy instance. A 32 * public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { 33 * //do some processing before the method invocation 35 * //invoke the method 36 * Object result = method.invoke(proxy, args); 38 * //do some processing after the method invocation 43 * the proxy instance on which the method was invoked 44 * @param method 45 * the method invoked on the proxy instanc [all...] |
/external/proguard/src/proguard/optimize/ |
ChangedCodePrinter.java | 123 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) 125 attributeVisitor.visitDeprecatedAttribute(clazz, method, deprecatedAttribute); 129 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute) 131 attributeVisitor.visitSyntheticAttribute(clazz, method, syntheticAttribute); 135 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttribute) 137 attributeVisitor.visitSignatureAttribute(clazz, method, syntheticAttribute); 147 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
ParameterAnnotationStruct.java | 29 * Association of a method and its parameter annotations. 33 /** {@code non-null;} the method in question */ 34 private final CstMethodRef method; field in class:ParameterAnnotationStruct 45 * @param method {@code non-null;} the method in question 48 public ParameterAnnotationStruct(CstMethodRef method, 50 if (method == null) { 51 throw new NullPointerException("method == null"); 58 this.method = method; [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
ParameterAnnotationStruct.java | 29 * Association of a method and its parameter annotations. 33 /** {@code non-null;} the method in question */ 34 private final CstMethodRef method; field in class:ParameterAnnotationStruct 45 * @param method {@code non-null;} the method in question 49 public ParameterAnnotationStruct(CstMethodRef method, 51 if (method == null) { 52 throw new NullPointerException("method == null"); 59 this.method = method; [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
ParameterAnnotationStruct.java | 29 * Association of a method and its parameter annotations. 33 /** {@code non-null;} the method in question */ 34 private final CstMethodRef method; field in class:ParameterAnnotationStruct 45 * @param method {@code non-null;} the method in question 48 public ParameterAnnotationStruct(CstMethodRef method, 50 if (method == null) { 51 throw new NullPointerException("method == null"); 58 this.method = method; [all...] |