/external/easymock/src/org/easymock/internal/ |
LegacyMatcherProvider.java | 20 import java.lang.reflect.Method;
36 private transient Map<Method, ArgumentsMatcher> matchers = new HashMap<Method, ArgumentsMatcher>();
38 public ArgumentsMatcher getMatcher(Method method) {
39 if (!matchers.containsKey(method)) {
43 matchers.put(method, defaultMatcher);
45 return matchers.get(method);
58 public void setMatcher(Method method, ArgumentsMatcher matcher) { 81 Method method = entry.getKey().getMethod(); local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
RequestLine.java | 53 /** 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) { 101 this.method = method; 109 return method; 129 public void setMethod(String method) { [all...] |
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/ |
AnnotationVisitor.java | 39 public void visitAnnotation(Clazz clazz, Method method, Annotation annotation); 40 public void visitAnnotation(Clazz clazz, Method method, int parameterIndex, Annotation annotation); 41 public void visitAnnotation(Clazz clazz, Method method, CodeAttribute codeAttribute, Annotation annotation);
|
/external/proguard/src/proguard/classfile/instruction/visitor/ |
MultiInstructionVisitor.java | 84 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) 88 instructionVisitors[index].visitSimpleInstruction(clazz, method, codeAttribute, offset, simpleInstruction); 92 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) 96 instructionVisitors[index].visitVariableInstruction(clazz, method, codeAttribute, offset, variableInstruction); 100 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) 104 instructionVisitors[index].visitConstantInstruction(clazz, method, codeAttribute, offset, constantInstruction); 108 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction [all...] |
/external/proguard/src/proguard/evaluation/ |
InvocationUnit.java | 29 * 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, [all...] |
/external/skia/tools/skiaserve/urlhandlers/ |
ClipAlphaHandler.cpp | 16 bool ClipAlphaHandler::canHandle(const char* method, const char* url) { 18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) && 23 const char* url, const char* method,
|
ColorModeHandler.cpp | 16 bool ColorModeHandler::canHandle(const char* method, const char* url) { 18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) && 23 const char* url, const char* method,
|
DataHandler.cpp | 16 bool DataHandler::canHandle(const char* method, const char* url) { 18 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) && 23 const char* url, const char* method,
|
EnableGPUHandler.cpp | 16 bool EnableGPUHandler::canHandle(const char* method, const char* url) { 18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) && 23 const char* url, const char* method,
|
InfoHandler.cpp | 16 bool InfoHandler::canHandle(const char* method, const char* url) { 18 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) && 23 const char* url, const char* method,
|
OpBoundsHandler.cpp | 16 bool OpBoundsHandler::canHandle(const char* method, const char* url) { 18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) && 23 const char* method, const char* upload_data, size_t* upload_data_size) {
|
OpsHandler.cpp | 16 bool OpsHandler::canHandle(const char* method, const char* url) { 22 const char* method, const char* upload_data, size_t* upload_data_size) { 31 if (0 == strcmp(method, MHD_HTTP_METHOD_GET)) {
|
OverdrawHandler.cpp | 16 bool OverdrawHandler::canHandle(const char* method, const char* url) { 18 return 0 == strcmp(method, MHD_HTTP_METHOD_POST) && 23 const char* url, const char* method,
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/ |
JavassistHelper.java | 47 * @param method 48 * descriptor of method 52 public static String returnValue(CtBehavior method) throws NotFoundException { 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 { 71 if (method instanceof CtMethod == false) { 75 CtClass returnType = ((CtMethod) method).getReturnType(); 89 * @param method [all...] |
/external/testng/src/test/java/test/enable/ |
InvokedMethodListener.java | 16 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { 17 invokedMethods.add(method.getTestMethod().getMethodName()); 21 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
|
/external/testng/src/test/java/test/invokedmethodlistener/ |
InvokedMethodListener.java | 15 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { 16 m_methods.add(method); 20 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
|
/external/v8/tools/clang/blink_gc_plugin/ |
CheckDispatchVisitor.cpp | 32 if (CXXMethodDecl* method = dyn_cast<CXXMethodDecl>(decl)) { 33 if (method->getParent() == receiver_->record() && 34 Config::GetTraceMethodType(method) ==
|
/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 int eap_server_method_register(struct eap_method *method); 24 /* EAP server method registration calls for statically linked in methods */
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/parameter/ |
ParameterMetadataTestClasses$NonIdenticalParameters.smali | 35 .method constructor <init>()V 43 .end method 47 .method method0(Ljava/lang/String;)V 61 .end method 63 .method method1(Ljava/lang/String;)V 77 .end method
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/ |
ModelClass.java | 243 * @param name The name of the method to find. 244 * @param args The types that the method should accept. 247 * @param allowProtected true if the method can be protected as well as public. 256 for (ModelMethod method : methods) { 257 if ((method.isPublic() || (allowProtected && method.isProtected())) && 258 (!staticOnly || method.isStatic()) && 259 name.equals(method.getName()) && method.acceptsArguments(args)) { 260 matching.add(method); [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Request.java | 30 private final String method; field in class:Request 41 this.method = builder.method; 69 public String method() { method in class:Request 70 return method; 111 return "Request{method=" 112 + method 122 private String method; field in class:Request.Builder 128 this.method = "GET"; 134 this.method = request.method 251 public Builder method(String method, RequestBody body) { method in class:Request.Builder [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
eap_methods.c | 2 * EAP peer: Method registration 21 static void eap_peer_method_free(struct eap_method *method); 25 * eap_peer_get_eap_method - Get EAP method based on type number 27 * @method: EAP type number 28 * Returns: Pointer to EAP method or %NULL if not found 30 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method) 34 if (m->vendor == vendor && m->method == method) 42 * eap_peer_get_type - Get EAP type for the given EAP method name 43 * @name: EAP method name, e.g., TL [all...] |
/cts/tests/tests/jni/libjnitest/ |
macroized_tests.c | 23 * This file also defines a static method called runAllTests(), which 50 * how to call a method: (virtual, direct, static) x (standard, array of 132 * Looks up a static method on StaticFromNative. 140 *errorMsg = failure("could not find static test method %s:%s", 148 * Looks up an instance method on InstanceFromNative. 155 *errorMsg = failure("could not find instance test method %s:%s", 163 * Looks up either an instance method on InstanceFromNative or a 164 * static method on StaticFromNative, depending on the given 191 jmethodID method = findAppropriateMethod(env, &msg, ct, local 194 if (method == NULL) 296 jmethodID method = findAppropriateMethod(env, &msg, ct, local 401 jmethodID method = findAppropriateMethod(env, &msg, ct, local 506 jmethodID method = findAppropriateMethod(env, &msg, ct, local 611 jmethodID method = findAppropriateMethod(env, &msg, ct, local 716 jmethodID method = findAppropriateMethod(env, &msg, ct, local 821 jmethodID method = findAppropriateMethod(env, &msg, ct, local 926 jmethodID method = findAppropriateMethod(env, &msg, ct, local 1031 jmethodID method = findAppropriateMethod(env, &msg, ct, local 1136 jmethodID method = findAppropriateMethod(env, &msg, ct, local 1259 jmethodID method = findAppropriateMethod(env, &msg, ct, local 1381 jmethodID method = findAppropriateMethod(env, &msg, ct, local [all...] |
/external/junit/src/main/java/org/junit/runners/ |
BlockJUnit4ClassRunner.java | 73 protected void runChild(final FrameworkMethod method, RunNotifier notifier) { 74 Description description = describeChild(method); 75 if (isIgnored(method)) { 78 runLeaf(methodBlock(method), description, notifier); 92 protected Description describeChild(FrameworkMethod method) { 93 Description description = methodDescriptions.get(method); 97 testName(method), method.getAnnotations()); 98 methodDescriptions.putIfAbsent(method, description); 180 * Adds to {@code errors} for each method annotated with {@code @Test} [all...] |
/art/runtime/mirror/ |
method.cc | 17 #include "method.h" 27 GcRoot<Class> Method::static_class_; 28 GcRoot<Class> Method::array_class_; 32 void Method::SetClass(Class* klass) { 38 void Method::ResetClass() { 43 void Method::SetArrayClass(Class* klass) { 49 void Method::ResetArrayClass() { 55 Method* Method::CreateFromArtMethod(Thread* self, ArtMethod* method) { [all...] |