HomeSort by relevance Sort by last modified time
    Searched defs:httpMethod (Results 1 - 4 of 4) sorted by null

  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionClient.java 47 final String httpMethod = request.method;
54 http.setRequestMethod(httpMethod);
57 StringBuilder headers = new StringBuilder(httpMethod);
  /external/webkit/WebKit/chromium/src/
WebURLRequest.cpp 138 WebString WebURLRequest::httpMethod() const
140 return m_private->m_resourceRequest->httpMethod();
143 void WebURLRequest::setHTTPMethod(const WebString& httpMethod)
145 m_private->m_resourceRequest->setHTTPMethod(httpMethod);
  /external/webkit/WebCore/platform/network/
ResourceRequestBase.cpp 76 data->m_httpMethod = httpMethod().crossThreadString();
180 const String& ResourceRequestBase::httpMethod() const
187 void ResourceRequestBase::setHTTPMethod(const String& httpMethod)
191 m_httpMethod = httpMethod;
335 if (a.httpMethod() != b.httpMethod())
  /external/webkit/WebKit/win/
WebMutableURLRequest.cpp 179 HRESULT STDMETHODCALLTYPE WebMutableURLRequest::HTTPMethod(
182 BString httpMethod = BString(m_request.httpMethod());
183 *result = httpMethod.release();

Completed in 560 milliseconds