Searched refs:method (Results 126 - 150 of 1980) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/classfile/editor/
H A DVariableRemapper.java73 public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute methodParametersAttribute) argument
89 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
93 System.out.println("VariableRemapper: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
102 codeAttribute.attributesAccept(clazz, method, this);
108 codeAttribute.instructionsAccept(clazz, method, this);
111 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute);
115 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute) argument
118 localVariableTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this);
122 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribut argument
138 visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo) argument
147 visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo) argument
167 visitLocalVariableTargetInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, LocalVariableTargetInfo localVariableTargetInfo) argument
175 visitLocalVariableTargetElement(Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, LocalVariableTargetInfo localVariableTargetInfo, LocalVariableTargetElement localVariableTargetElement) argument
184 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
187 visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
[all...]
/external/guava/guava/src/com/google/common/reflect/
H A DAbstractInvocationHandler.java33 * Object proxy, Method method, Object[] args) {
60 * <li>other method calls are dispatched to {@link #handleInvocation}.
63 @Override public final Object invoke(Object proxy, Method method, @Nullable Object[] args) argument
68 if (args.length == 0 && method.getName().equals("hashCode")) {
72 && method.getName().equals("equals")
73 && method.getParameterTypes()[0] == Object.class) {
84 if (args.length == 0 && method.getName().equals("toString")) {
87 return handleInvocation(proxy, method, args);
91 * {@link #invoke} delegates to this method upon any method invocatio
98 handleInvocation(Object proxy, Method method, Object[] args) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCSeq.java59 * method field
61 protected String method; field in class:CSeq
71 * Constructor given the sequence number and method.
74 * @param method is the method string.
76 public CSeq(long seqno, String method) { argument
79 this.method = SIPRequest.getCannonicalName(method);
116 return buffer.append(seqno).append(SP).append(method.toUpperCase());
120 * Get the method
[all...]
H A DRequestLine.java53 /** method field.
55 protected String method; field in class:RequestLine
77 if (method != null) {
78 buffer.append(method);
97 /** Constructor given the request URI and the method.
99 public RequestLine(GenericURI requestURI, String method) { argument
101 this.method = method;
109 return method;
129 public void setMethod(String method) { argument
[all...]
/external/proguard/src/proguard/optimize/info/
H A DDynamicInvocationMarker.java47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
50 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
54 setInvokesDynamically(method);
61 private static void setInvokesDynamically(Method method) argument
63 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
72 * Returns whether the given method calls the invokedynamic instruction.
74 public static boolean invokesDynamically(Method method) argument
76 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
H A DSuperInvocationMarker.java47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
50 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
60 setInvokesSuperMethods(method);
78 private static void setInvokesSuperMethods(Method method) argument
80 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
88 public static boolean invokesSuperMethods(Method method) argument
90 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
H A DSideEffectMethodMarker.java92 // Look further if the method hasn't been marked yet.
99 // Mark the method depending on the return value.
115 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
118 hasSideEffects = hasSideEffects(clazz, method, codeAttribute);
128 Method method,
135 method.getName(clazz).equals(ClassConstants.METHOD_NAME_CLINIT) ?
148 method,
165 private static void markSideEffects(Method method) argument
167 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
175 public static boolean hasSideEffects(Method method) argument
127 hasSideEffects(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
[all...]
/external/proguard/src/proguard/classfile/attribute/annotation/target/visitor/
H A DTargetInfoVisitor.java37 public void visitTypeParameterTargetInfo( Clazz clazz, Method method, TypeAnnotation typeAnnotation, TypeParameterTargetInfo typeParameterTargetInfo); argument
41 public void visitTypeParameterBoundTargetInfo(Clazz clazz, Method method, TypeAnnotation typeAnnotation, TypeParameterBoundTargetInfo typeParameterBoundTargetInfo); argument
43 public void visitEmptyTargetInfo( Clazz clazz, Method method, TypeAnnotation typeAnnotation, EmptyTargetInfo emptyTargetInfo); argument
44 public void visitFormalParameterTargetInfo( Clazz clazz, Method method, TypeAnnotation typeAnnotation, FormalParameterTargetInfo formalParameterTargetInfo); argument
45 public void visitThrowsTargetInfo( Clazz clazz, Method method, TypeAnnotation typeAnnotation, ThrowsTargetInfo throwsTargetInfo); argument
46 public void visitLocalVariableTargetInfo( Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, LocalVariableTargetInfo localVariableTargetInfo); argument
47 public void visitCatchTargetInfo( Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, CatchTargetInfo catchTargetInfo); argument
48 public void visitOffsetTargetInfo( Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, OffsetTargetInfo offsetTargetInfo); argument
49 public void visitTypeArgumentTargetInfo( Clazz clazz, Method method, CodeAttribute codeAttribute, TypeAnnotation typeAnnotation, TypeArgumentTargetInfo typeArgumentTargetInfo); argument
/external/proguard/src/proguard/optimize/
H A DParameterShrinker.java81 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
84 int oldParameterSize = ParameterUsageMarker.getParameterSize(method);
88 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
89 method.getAccessFlags());
98 System.out.println("ParameterShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
113 if (ParameterUsageMarker.isParameterUsed(method, parameterIndex))
129 // Visit the method, if required.
132 method.accept(clazz, extraVariableMemberVisitor);
147 variableRemapper.visitCodeAttribute(clazz, method, codeAttribut
[all...]
/external/proguard/src/proguard/optimize/peephole/
H A DVariableShrinker.java79 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
81 if ((method.getAccessFlags() & ClassConstants.ACC_ABSTRACT) == 0)
85 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
86 method.getAccessFlags());
93 System.out.println("VariableShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
99 variableUsageMarker.visitCodeAttribute(clazz, method, codeAttribute);
117 // Visit the method, if required.
120 method.accept(clazz, extraVariableMemberVisitor);
126 variableEditor.visitCodeAttribute(clazz, method, codeAttribut
[all...]
/external/autotest/client/cros/cellular/pseudomodem/
H A Dmodem_simple.py20 @dbus.service.method(mm1_constants.I_MODEM_SIMPLE,
27 This method will attempt to find a matching packet data bearer and
57 @dbus.service.method(mm1_constants.I_MODEM_SIMPLE, in_signature='o',
64 path is "/" (i.e. no object given) this method will disconnect
71 return_cb. This allows control flow to be set when this method
80 @dbus.service.method(mm1_constants.I_MODEM_SIMPLE, out_signature='a{sv}')
/external/easymock/src/org/easymock/internal/
H A DLegacyMatcherProvider.java38 public ArgumentsMatcher getMatcher(Method method) { argument
39 if (!matchers.containsKey(method)) {
43 matchers.put(method, defaultMatcher);
45 return matchers.get(method);
58 public void setMatcher(Method method, ArgumentsMatcher matcher) { argument
59 if (matchers.containsKey(method) && matchers.get(method) != matcher) {
61 "for method "
62 + method.getName()
64 + (method
[all...]
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
H A DAnnotationVisitor.java39 public void visitAnnotation(Clazz clazz, Method method, Annotation annotation); argument
40 public void visitAnnotation(Clazz clazz, Method method, int parameterIndex, Annotation annotation); argument
41 public void visitAnnotation(Clazz clazz, Method method, CodeAttribute codeAttribute, Annotation annotation); argument
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DMultiInstructionVisitor.java84 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
88 instructionVisitors[index].visitSimpleInstruction(clazz, method, codeAttribute, offset, simpleInstruction);
92 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
96 instructionVisitors[index].visitVariableInstruction(clazz, method, codeAttribute, offset, variableInstruction);
100 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
104 instructionVisitors[index].visitConstantInstruction(clazz, method, codeAttribute, offset, constantInstruction);
108 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
112 instructionVisitors[index].visitBranchInstruction(clazz, method, codeAttribute, offset, branchInstruction);
116 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction) argument
120 instructionVisitors[index].visitTableSwitchInstruction(clazz, method, codeAttribut
124 visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) argument
[all...]
/external/proguard/src/proguard/evaluation/
H A DInvocationUnit.java29 * This interface sets up the variables for entering a method,
37 * Sets up the given variables for entering the given method.
40 Method method,
45 * Exits the given method with the given return value.
48 Method method,
54 * field or method reference instruction.
57 Method method,
39 enterMethod(Clazz clazz, Method method, Variables variables) argument
47 exitMethod(Clazz clazz, Method method, Value returnValue) argument
56 invokeMember(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction, Stack stack) argument
/external/skia/tools/skiaserve/urlhandlers/
H A DClipAlphaHandler.cpp16 bool ClipAlphaHandler::canHandle(const char* method, const char* url) { argument
18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) &&
23 const char* url, const char* method,
22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
H A DColorModeHandler.cpp16 bool ColorModeHandler::canHandle(const char* method, const char* url) { argument
18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) &&
23 const char* url, const char* method,
22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
H A DDataHandler.cpp16 bool DataHandler::canHandle(const char* method, const char* url) { argument
18 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
23 const char* url, const char* method,
22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
H A DEnableGPUHandler.cpp16 bool EnableGPUHandler::canHandle(const char* method, const char* url) { argument
18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) &&
23 const char* url, const char* method,
22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
H A DInfoHandler.cpp16 bool InfoHandler::canHandle(const char* method, const char* url) { argument
18 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
23 const char* url, const char* method,
22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
H A DOpBoundsHandler.cpp16 bool OpBoundsHandler::canHandle(const char* method, const char* url) { argument
18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) &&
23 const char* method, const char* upload_data, size_t* upload_data_size) {
22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
H A DOpsHandler.cpp16 bool OpsHandler::canHandle(const char* method, const char* url) { argument
22 const char* method, const char* upload_data, size_t* upload_data_size) {
31 if (0 == strcmp(method, MHD_HTTP_METHOD_GET)) {
21 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
H A DOverdrawHandler.cpp16 bool OverdrawHandler::canHandle(const char* method, const char* url) { argument
18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) &&
23 const char* url, const char* method,
22 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
H A DJavassistHelper.java47 * @param method
48 * descriptor of method
52 public static String returnValue(CtBehavior method) throws NotFoundException { argument
55 if (methodReturnsValue(method)) {
62 * determine if the given method returns a value, and return true if so.
65 * @param method
69 private static boolean methodReturnsValue(CtBehavior method) throws NotFoundException { argument
71 if (method instanceof CtMethod == false) {
75 CtClass returnType = ((CtMethod) method).getReturnType();
89 * @param method
93 getSignature(CtBehavior method) argument
157 parameterNameFor(CtBehavior method, LocalVariableAttribute locals, int i) argument
[all...]
/external/testng/src/test/java/test/enable/
H A DInvokedMethodListener.java16 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { argument
17 invokedMethods.add(method.getTestMethod().getMethodName());
21 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { argument

Completed in 1116 milliseconds

1234567891011>>