HomeSort by relevance Sort by last modified time
    Searched refs:GET (Results 51 - 75 of 237) sorted by null

1 23 4 5 6 7 8 910

  /external/smack/src/org/jivesoftware/smackx/pubsub/
PubSubManager.java 155 Node node = nodeMap.get(id);
176 * Get all the nodes that currently exist as a child of the specified
211 Packet reply = sendPubsubPacket(Type.GET, new NodeExtension(PubSubElementType.SUBSCRIPTIONS));
226 PubSub reply = (PubSub)sendPubsubPacket(Type.GET, new NodeExtension(PubSubElementType.AFFILIATIONS));
254 PubSub reply = (PubSub)sendPubsubPacket(Type.GET, new NodeExtension(PubSubElementType.DEFAULT), PubSubElementType.DEFAULT.getNamespace());
  /external/chromium/net/http/
http_network_layer_unittest.cc 50 EXPECT_TRUE(trans.get() != NULL);
73 TEST_F(HttpNetworkLayerTest, GET) {
80 MockWrite("GET / HTTP/1.1\r\n"
93 request_info.method = "GET";
108 rv = ReadTransaction(trans.get(), &contents);
  /external/chromium_org/chrome/browser/captive_portal/
captive_portal_detector.cc 60 net::URLFetcher::GET,
63 url_fetcher_->SetRequestContext(request_context_.get());
84 DCHECK_EQ(url_fetcher_.get(), source);
88 GetCaptivePortalResultFromResponse(url_fetcher_.get(), &results);
166 return url_fetcher_.get() != NULL;
  /external/chromium_org/chrome/browser/ui/app_list/search/
webstore_result_icon_source.cc 36 if (image_decoder_.get())
44 net::URLFetcher::Create(icon_url_, net::URLFetcher::GET, this));
78 CHECK_EQ(icon_fetcher_.get(), source);
  /external/chromium_org/chrome/browser/web_resource/
web_resource_service.cc 66 // If resource requests are not allowed, we'll get a callback when they are.
127 web_resource_server, net::URLFetcher::GET, this));
  /external/chromium_org/chrome/tools/
webforms_aggregator.py 180 # Get a list of all input elements with attribute type='password'
215 link = link_elem.get('href')
230 GET request, saving any unnecessary downloadings.
249 """Initializes curl object for a GET request.
251 This is called only for valid HTML files. The Pycurl makes a GET request.
265 It first does a HEAD request and then it proceeds to a GET request.
540 Creates a Retriever object and calls its run method to get the first links,
541 and then uses CurlMulti object and creates many Retriever objects to get
  /external/chromium_org/cloud_print/gcp20/prototype/
cloud_print_request.cc 46 new CloudPrintRequest(url, URLFetcher::GET, delegate));
94 DCHECK(source == fetcher_.get());
  /external/chromium_org/components/autofill/core/browser/
form_structure.h 21 GET,
243 // GET or POST.
  /external/chromium_org/net/url_request/
url_fetcher.h 37 // URLFetcher::GET, this);
75 GET,
284 // Get the response as a string. Return false if the fetcher was not
288 // Get the path to the file containing the response body. Returns false
  /external/smack/src/org/jivesoftware/smackx/
ServiceDiscoveryManager.java 100 return instances.get(connection);
111 DiscoverInfo.Identity identity = identities.get(0);
141 DiscoverInfo.Identity identity = identities.get(0);
158 DiscoverInfo.Identity identity = identities.get(0);
217 // Send back the items defined in the client if the request is of type GET
218 if (discoverItems != null && discoverItems.getType() == IQ.Type.GET) {
252 // Answer the client's supported features if the request is of the GET type
253 if (discoverInfo != null && discoverInfo.getType() == IQ.Type.GET) {
327 return nodeInformationProviders.get(node);
506 // Try to get the newest node#version if it's known, otherwise null i
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
LastActivity.java 40 * to get the last activity of a user.
52 setType(IQ.Type.GET);
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
Agent.java 86 agentInfo.setType(IQ.Type.GET);
AgentSession.java 203 List<String> oldVals = metaData.get(key);
205 if ((oldVals == null) || (!oldVals.get(0).equals(val))) {
238 return metaData.get(key);
278 // We can safely update this iv since we didn't get any error
456 * @param userID the id of the user to get his conversations.
467 * @param sessionID the id of the session to get the full transcript.
506 * @param roomID the room to get information about its occupants.
512 request.setType(IQ.Type.GET);
552 return queues.get(queueName);
702 WorkgroupQueue queue = queues.get(queueName);
    [all...]
  /frameworks/base/core/jni/
android_opengl_GLES10Ext.cpp 228 template <typename JTYPEARRAY, typename CTYPE, void GET(GLenum, CTYPE*)>
230 get function
267 GET(
283 template <typename CTYPE, void GET(GLenum, CTYPE*)>
312 GET(
  /frameworks/volley/tests/src/com/android/volley/toolbox/
HurlStackTest.java 43 assertEquals("GET", mMockConnection.getRequestMethod());
57 TestRequest.Get request = new TestRequest.Get();
58 assertEquals(request.getMethod(), Method.GET);
61 assertEquals("GET", mMockConnection.getRequestMethod());
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js 140 * "method" {String} The HTTP method to use. Defaults to "GET".
147 var method = opt_params && opt_params['method'] || 'GET';
497 ChromeExOAuth.sendRequest("GET", result.signed_url, null, null, onToken);
563 ChromeExOAuth.sendRequest("GET", result.signed_url, null, null, onToken);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauth.js 140 * "method" {String} The HTTP method to use. Defaults to "GET".
147 var method = opt_params && opt_params['method'] || 'GET';
497 ChromeExOAuth.sendRequest("GET", result.signed_url, null, null, onToken);
563 ChromeExOAuth.sendRequest("GET", result.signed_url, null, null, onToken);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
chrome_ex_oauth.js 140 * "method" {String} The HTTP method to use. Defaults to "GET".
147 var method = opt_params && opt_params['method'] || 'GET';
497 ChromeExOAuth.sendRequest("GET", result.signed_url, null, null, onToken);
563 ChromeExOAuth.sendRequest("GET", result.signed_url, null, null, onToken);
  /external/chromium/chrome/common/extensions/docs/js/
bootstrap.js 6 xhr.open("GET", "nothing.xml", true);
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_handshake_hybi00.py 47 'GET',
62 'GET',
97 'GET',
132 'GET',
155 'GET',
174 'GET',
201 'GET',
232 'GET',
245 'GET',
259 'GET',
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/permissions/extension-questions/
popup.js 26 xhr.open('GET', URL);
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_signin_helper.cc 123 0, url, net::URLFetcher::GET, this));
139 if (!request_context.get()) {
183 DCHECK_EQ(url_fetcher_.get(), fetcher);
220 net::URLFetcher::GET,
228 if (!ParseGetAccountInfoResponse(url_fetcher_.get(), &email)) {
229 LOG(ERROR) << "failed to get the user email";
285 if (!value.get() || value->GetType() != base::Value::TYPE_DICTIONARY) {
290 DictionaryValue* dict = static_cast<base::DictionaryValue*>(value.get());
  /external/chromium_org/content/test/data/media/
media_source_utils.js 44 xhr.open('GET', mediaFile);
  /external/chromium_org/remoting/webapp/
xhr.js 38 * Execute an XHR GET asynchronously.
40 * @param {string} url The base URL to GET, excluding parameters.
52 remoting.xhr.get = function(url, onDone, opt_parameters, opt_headers,
54 return remoting.xhr.doMethod('GET', url, onDone, opt_parameters,
124 * @param {string} methodName The HTTP method name, e.g. "GET", "POST" etc.
  /external/chromium_org/third_party/WebKit/ManualTests/inspector-wrappers/
inspector-wrappers-test-utils.js 22 xhr.open("GET", url, false);

Completed in 1764 milliseconds

1 23 4 5 6 7 8 910