Searched defs:method (Results 26 - 50 of 965) sorted by relevance

1234567891011>>

/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DInvocationHandler.java33 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable; argument
H A DMethodInterceptor.java27 * All generated proxied methods call this method instead of the original method.
28 * The original method may either be invoked by normal reflection using the Method object,
31 * @param method intercepted Method
33 * @param proxy used to invoke super (non-intercepted method); may be called
35 * @throws Throwable any exception may be thrown; if so, super method will not be invoked
36 * @return any value compatible with the signature of the proxied method. Method returning void will ignore this value.
39 public Object intercept(Object obj, java.lang.reflect.Method method, Object[] args, argument
/external/nist-sip/java/javax/sip/header/
H A DAllowHeader.java9 void setMethod(String method) throws ParseException; argument
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpMethod.java26 public static boolean invalidatesCache(String method) { argument
27 return method.equals("POST")
28 || method.equals("PATCH")
29 || method.equals("PUT")
30 || method.equals("DELETE");
33 public static boolean hasRequestBody(String method) { argument
34 return method.equals("POST")
35 || method.equals("PUT")
36 || method.equals("PATCH")
37 || method
[all...]
/external/openssl/crypto/x509v3/
H A Dv3_ia5.c66 static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5);
67 static ASN1_IA5STRING *s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str);
80 static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, argument
94 static ASN1_IA5STRING *s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method, argument
/external/proguard/src/proguard/classfile/attribute/
H A DDeprecatedAttribute.java62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
64 attributeVisitor.visitDeprecatedAttribute(clazz, method, this);
H A DSyntheticAttribute.java62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
64 attributeVisitor.visitSyntheticAttribute(clazz, method, this);
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DExceptionInfoVisitor.java36 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo); argument
H A DLineNumberInfoVisitor.java37 public void visitLineNumberInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfo lineNumberInfo); argument
H A DLocalVariableInfoVisitor.java37 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo); argument
H A DLocalVariableTypeInfoVisitor.java37 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo); argument
/external/proguard/src/proguard/classfile/visitor/
H A DExceptionHandlerConstantVisitor.java54 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DBlockingRpcChannel.java42 * Call the given method of the remote service and blocks until it returns.
47 Descriptors.MethodDescriptor method,
46 callBlockingMethod( Descriptors.MethodDescriptor method, RpcController controller, Message request, Message responsePrototype) argument
H A DRpcChannel.java57 * Call the given method of the remote service. This method is similar to
61 * {@code request.getDescriptor() == method.getInputType()}.
64 * {@code getDescriptor() == method.getOutputType()}).
66 void callMethod(Descriptors.MethodDescriptor method, argument
/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;
/external/apache-http/src/org/apache/http/impl/
H A DDefaultHttpRequestFactory.java78 private static boolean isOneOf(final String[] methods, final String method) { argument
80 if (methods[i].equalsIgnoreCase(method)) {
92 String method = requestline.getMethod();
93 if (isOneOf(RFC2616_COMMON_METHODS, method)) {
95 } else if (isOneOf(RFC2616_ENTITY_ENC_METHODS, method)) {
97 } else if (isOneOf(RFC2616_SPECIAL_METHODS, method)) {
100 throw new MethodNotSupportedException(method + " method not supported");
104 public HttpRequest newHttpRequest(final String method, final String uri) argument
106 if (isOneOf(RFC2616_COMMON_METHODS, method)) {
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicHttpEntityEnclosingRequest.java60 public BasicHttpEntityEnclosingRequest(final String method, final String uri) { argument
61 super(method, uri);
64 public BasicHttpEntityEnclosingRequest(final String method, final String uri, argument
66 this(new BasicRequestLine(method, uri, ver));
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);
H A DBasicRequestLine.java39 * It contains the method, URI, and HTTP version of the request.
58 private final String method; field in class:BasicRequestLine
61 public BasicRequestLine(final String method, argument
65 if (method == null) {
77 this.method = method;
83 return this.method;
/external/chromium_org/chrome/browser/safe_browsing/
H A Dprotocol_manager_helper.cc42 const std::string& prefix, const std::string& method,
45 DCHECK(!prefix.empty() && !method.empty() &&
48 prefix.c_str(), method.c_str(),
41 ComposeUrl( const std::string& prefix, const std::string& method, const std::string& client_name, const std::string& version, const std::string& additional_query) argument
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dframe_tracker.cc41 const std::string& method,
43 if (method == "Runtime.executionContextCreated") {
61 } else if (method == "Page.frameNavigated") {
40 OnEvent(DevToolsClient* client, const std::string& method, const base::DictionaryValue& params) argument
H A Dgeolocation_override_manager.cc32 const std::string& method,
34 if (method == "Page.frameNavigated") {
30 OnEvent( DevToolsClient* client, const std::string& method, const base::DictionaryValue& params) argument
H A Dheap_snapshot_taker.cc61 const std::string& method,
63 if (method == "HeapProfiler.addHeapSnapshotChunk") {
60 OnEvent(DevToolsClient* client, const std::string& method, const base::DictionaryValue& params) argument
H A Djavascript_dialog_manager.cc58 const std::string& method,
60 if (method == "Page.javascriptDialogOpening") {
66 } else if (method == "Page.javascriptDialogClosing") {
57 OnEvent(DevToolsClient* client, const std::string& method, const base::DictionaryValue& params) argument
H A Dmobile_emulation_override_manager.cc33 const std::string& method,
35 if (method == "Page.frameNavigated") {
31 OnEvent( DevToolsClient* client, const std::string& method, const base::DictionaryValue& params) argument

Completed in 1856 milliseconds

1234567891011>>