Searched refs:method (Results 51 - 75 of 1813) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/classfile/attribute/preverification/
H A DTopType.java42 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor) argument
44 verificationTypeVisitor.visitTopType(clazz, method, codeAttribute, instructionOffset, this);
48 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) argument
50 verificationTypeVisitor.visitStackTopType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
54 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor) argument
56 verificationTypeVisitor.visitVariablesTopType(clazz, method, codeAttribute, instructionOffset, variableIndex, this);
H A DUninitializedThisType.java42 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor) argument
44 verificationTypeVisitor.visitUninitializedThisType(clazz, method, codeAttribute, instructionOffset, this);
48 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) argument
50 verificationTypeVisitor.visitStackUninitializedThisType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
54 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor) argument
56 verificationTypeVisitor.visitVariablesUninitializedThisType(clazz, method, codeAttribute, instructionOffset, variableIndex, this);
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DInstructionVisitor.java36 public void visitSimpleInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction); argument
37 public void visitVariableInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction); argument
38 public void visitConstantInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction); argument
39 public void visitBranchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction); argument
40 public void visitTableSwitchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction); argument
41 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction); argument
/external/proguard/src/proguard/optimize/info/
H A DCatchExceptionMarker.java42 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
46 markCatchException(method);
53 private static void markCatchException(Method method) argument
55 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
63 public static boolean catchesExceptions(Method method) argument
65 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
H A DNoSideEffectMethodMarker.java66 private static void markNoSideEffects(Method method) argument
68 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
75 MethodLinker.lastMember(method).setVisitorInfo(KEPT_BUT_NO_SIDE_EFFECTS);
80 public static boolean hasNoSideEffects(Method method) argument
82 if (MethodLinker.lastVisitorAccepter(method).getVisitorInfo() == KEPT_BUT_NO_SIDE_EFFECTS)
87 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
H A DAccessMethodMarker.java51 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
54 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
56 invokingMethod = method;
77 // Check the bootstrap method.
84 // Check the method reference.
143 private static void setAccessesPrivateCode(Method method) argument
145 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
154 * Returns whether the given method accesses private class members.
156 public static boolean accessesPrivateCode(Method method) argument
158 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
163 setAccessesPackageCode(Method method) argument
177 accessesPackageCode(Method method) argument
184 setAccessesProtectedCode(Method method) argument
197 accessesProtectedCode(Method method) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
H A DHttpRedirect.java47 private String method; field in class:HttpRedirect
49 public HttpRedirect(final String method, final URI uri) { argument
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/
H A DUnreachableCodeRemover.java79 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
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) argument
108 System.out.println("UnreachableCodeRemover: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
111 reachableCodeMarker.visitCodeAttribute(clazz, method, codeAttribut
123 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicHttpRequest.java56 private final String method; field in class:BasicHttpRequest
59 public BasicHttpRequest(final String method, final String uri) { argument
61 if (method == null) {
67 this.method = method;
72 public BasicHttpRequest(final String method, final String uri, final ProtocolVersion ver) { argument
73 this(new BasicRequestLine(method, uri, ver));
82 this.method = requestline.getMethod();
99 return new BasicRequestLine(this.method, this.uri, ver);
/external/chromium_org/content/browser/android/java/
H A Djni_helper.h14 // 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/
H A DTestApplet.java12 public int method() method in class:TestApplet
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_picklpf.h25 struct VP9_COMP *cpi, LPF_PICK_METHOD method);
/external/javassist/src/main/javassist/compiler/ast/
H A DCallExpr.java26 private MemberResolver.Method method; // cached result of lookupMethod() field in class:CallExpr
30 method = null;
34 method = m;
38 return method;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_picklpf.h25 struct VP9_COMP *cpi, LPF_PICK_METHOD method);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DCallbackGenerator.java30 CodeEmitter beginMethod(ClassEmitter ce, MethodInfo method); argument
31 int getOriginalModifiers(MethodInfo method); argument
32 int getIndex(MethodInfo method); argument
34 Signature getImplSignature(MethodInfo method); argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DFastMethod.java23 FastMethod(FastClass fc, Method method) { argument
24 super(fc, method, helper(fc, method));
27 private static int helper(FastClass fc, Method method) { argument
28 int index = fc.getIndex(method.getName(), method.getParameterTypes());
30 Class[] types = method.getParameterTypes();
31 System.err.println("hash=" + method.getName().hashCode() + " size=" + types.length);
35 throw new IllegalArgumentException("Cannot find method " + method);
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DVariableSizeUpdater.java57 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
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) {} argument
87 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribut argument
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_methods.h2 * 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 */
/external/wpa_supplicant_8/src/eap_server/
H A Deap_methods.h2 * 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 */
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_methods.h2 * 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 */
/external/chromium_org/third_party/libjpeg_turbo/
H A Djddctmgr.c37 * The multiplier table contents are IDCT-method-dependent. To support
38 * application changes in IDCT method between scans, we can remake the
52 /* This array contains the IDCT method code that each multiplier table
100 int method = 0; local
111 method = JDCT_ISLOW; /* jidctred uses islow-style table */
118 method = JDCT_ISLOW; /* jidctred uses islow-style table */
122 method = JDCT_ISLOW; /* jidctint uses islow-style table */
129 method = JDCT_ISLOW; /* jidctred uses islow-style table */
133 method = JDCT_ISLOW; /* jidctint uses islow-style table */
137 method
[all...]
/external/proguard/src/proguard/optimize/
H A DChangedCodePrinter.java123 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) argument
125 attributeVisitor.visitDeprecatedAttribute(clazz, method, deprecatedAttribute);
129 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute) argument
131 attributeVisitor.visitSyntheticAttribute(clazz, method, syntheticAttribute);
135 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttribute) argument
137 attributeVisitor.visitSignatureAttribute(clazz, method, syntheticAttribute);
147 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute) argument
149 attributeVisitor.visitExceptionsAttribute(clazz, method, exceptionsAttribute);
153 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
155 attributeVisitor.visitStackMapAttribute(clazz, method, codeAttribut
159 visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
165 visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberTableAttribute lineNumberTableAttribute) argument
171 visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute) argument
177 visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute) argument
207 visitRuntimeVisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeVisibleAnnotationsAttribute runtimeVisibleAnnotationsAttribute) argument
213 visitRuntimeInvisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeInvisibleAnnotationsAttribute runtimeInvisibleAnnotationsAttribute) argument
219 visitRuntimeVisibleParameterAnnotationsAttribute(Clazz clazz, Method method, RuntimeVisibleParameterAnnotationsAttribute runtimeVisibleParameterAnnotationsAttribute) argument
225 visitRuntimeInvisibleParameterAnnotationsAttribute(Clazz clazz, Method method, RuntimeInvisibleParameterAnnotationsAttribute runtimeInvisibleParameterAnnotationsAttribute) argument
231 visitAnnotationDefaultAttribute(Clazz clazz, Method method, AnnotationDefaultAttribute annotationDefaultAttribute) argument
237 visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
277 printChangedCode(Clazz clazz, Method method, CodeAttribute codeAttribute, byte[] oldCode) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DParameterAnnotationStruct.java29 * 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, argument
50 if (method == null) {
51 throw new NullPointerException("method == null");
58 this.method = method;
[all...]
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DAnalyzerTest.java31 CtMethod method = clazz.getDeclaredMethod("commonSuperArray");
32 verifyArrayLoad(clazz, method, "java.lang.Number");
38 CtMethod method = clazz.getDeclaredMethod("commonInterfaceArray");
39 verifyArrayLoad(clazz, method, "java.io.Serializable");
43 CtMethod method = ClassPool.getDefault().getMethod(
45 verifyReturn(method, "java.io.Serializable");
47 method = ClassPool.getDefault().getMethod(
49 verifyReturn(method, "java.io.Serializable");
51 method = ClassPool.getDefault().getMethod(
53 verifyReturn(method, getClas
93 verifyReturn(CtMethod method, String expected) argument
112 verifyArrayLoad(CtClass clazz, CtMethod method, String component) argument
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DBreakpoint.java49 * @param method Method in which breakpoint is created
50 * @param location Location within the method
52 public Breakpoint(String clazz, String method, int location) { argument
54 methodName = method;

Completed in 420 milliseconds

1234567891011>>