Searched defs:method (Results 1 - 25 of 527) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/manual-tests/resources/
H A DTestApplet.java12 public int method() method in class:TestApplet
H A DTestApplet.class ... 4/s?defs= " () public void init () public int method () static void " href="/4.0.4/s?defs ...
/external/chromium/android/jni/
H A Dautofill_request_url.cc13 jmethodID method = env->GetStaticMethodID(bridgeClass, "getAutofillQueryUrl", "()Ljava/lang/String;"); local
14 jstring autofill_query_url = static_cast<jstring>(env->CallStaticObjectMethod(bridgeClass, method));
/external/chromium/net/tools/flip_server/
H A Dspdy_util.cc16 std::string EncodeURL(std::string uri, std::string host, std::string method) { argument
19 return std::string(method + "_" + uri);
26 "http://" + host + uri, method + "_/", false);
28 filename = UrlToFilenameEncoder::Encode(uri, method + "_/", false);
/external/openssl/crypto/x509v3/
H A Dv3_enum.c87 char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method, argument
93 for(enam = method->usr_data; enam->lname; enam++) {
96 return i2s_ASN1_ENUMERATED(method, e);
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/webkit/LayoutTests/http/tests/resources/
H A Dtripmine.php36 $method = $_SERVER['REQUEST_METHOD']; variable
39 if ($method == "OPTIONS") {
46 if ($method != "GET" && $method != "HEAD" && $method != "POST") {
47 setState("FAIL. Non-simple method $method.", $stateFile);
/external/apache-http/src/org/apache/http/
H A DHttpRequestFactory.java48 HttpRequest newHttpRequest(String method, String uri) argument
/external/chromium/net/server/
H A Dhttp_server_request_info.h23 // Request method.
24 std::string method; member in class:net::HttpServerRequestInfo
/external/chromium/net/url_request/
H A Durl_request_netlog_params.cc13 const std::string& method,
17 method_(method),
25 dict->SetString("method", method_);
11 URLRequestStartEventParameters( const GURL& url, const std::string& method, int load_flags, RequestPriority priority) argument
/external/chromium/webkit/glue/
H A Dform_data.h28 string16 method; member in struct:webkit_glue::FormData
/external/dbus/dbus/
H A Ddbus-server-win.c54 const char *method; local
58 method = dbus_address_entry_get_method (entry);
60 if (strcmp (method, "nonce-tcp") == 0)
H A Ddbus-transport-win.c54 const char *method; local
61 method = dbus_address_entry_get_method (entry);
62 _dbus_assert (method != NULL);
64 if (strcmp (method, "nonce-tcp") != 0)
/external/easymock/src/org/easymock/internal/
H A DILegacyMatcherMethods.java26 void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher); argument
/external/nist-sip/java/javax/sip/header/
H A DAllowHeader.java9 void setMethod(String method) throws ParseException; 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-http/src/org/apache/http/impl/
H A DDefaultHttpRequestFactory.java73 private static boolean isOneOf(final String[] methods, final String method) { argument
75 if (methods[i].equalsIgnoreCase(method)) {
87 String method = requestline.getMethod();
88 if (isOneOf(RFC2616_COMMON_METHODS, method)) {
90 } else if (isOneOf(RFC2616_ENTITY_ENC_METHODS, method)) {
92 } else if (isOneOf(RFC2616_SPECIAL_METHODS, method)) {
95 throw new MethodNotSupportedException(method + " method not supported");
99 public HttpRequest newHttpRequest(final String method, final String uri) argument
101 if (isOneOf(RFC2616_COMMON_METHODS, method)) {
[all...]

Completed in 703 milliseconds

1234567891011>>