HomeSort by relevance Sort by last modified time
    Searched defs:post (Results 301 - 325 of 776) sorted by null

<<11121314151617181920>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/
nntplib.py 17 To post an article from a file:
19 >>> resp = s.post(f)
549 def post(self, f): member in class:NNTP
550 """Process a POST command. Arguments:
555 resp = self.shortcmd('POST')
  /prebuilts/gdb/linux-x86/lib/python2.7/
nntplib.py 17 To post an article from a file:
19 >>> resp = s.post(f)
549 def post(self, f): member in class:NNTP
550 """Process a POST command. Arguments:
555 resp = self.shortcmd('POST')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
nntplib.py 17 To post an article from a file:
19 >>> resp = s.post(f)
549 def post(self, f): member in class:NNTP
550 """Process a POST command. Arguments:
555 resp = self.shortcmd('POST')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
nntplib.py 17 To post an article from a file:
19 >>> resp = s.post(f)
549 def post(self, f): member in class:NNTP
550 """Process a POST command. Arguments:
555 resp = self.shortcmd('POST')
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/vr/
VrListenerVerifierActivity.java 165 mTestHandler.post(new Runnable() {
189 mMainHandler.post(new Runnable() {
208 mMainHandler.post(new Runnable() {
270 mMainHandler.post(new Runnable() {
281 mMainHandler.post(new Runnable() {
291 mMainHandler.post(new Runnable() {
301 mMainHandler.post(new Runnable() {
311 mMainHandler.post(new Runnable() {
  /frameworks/base/core/java/android/accessibilityservice/
AccessibilityService.java 77 * be overriden by clients that want to perform post binding setup.
665 callbackInfo.handler.post(new Runnable() {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
RecentsActivity.java 151 mHandler.post(() -> {
212 EventBus.getDefault().post(new RecentsDrawnEvent());
456 mHandler.post(mSendEnterWindowAnimationCompleteRunnable);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/
EventBus.java 120 * of that event, or post() events to be processed in the next run of the {@link Looper}. In
383 // The handler to post all events
575 * Post a message to the subscribers of the given event type. The messages will be posted on
578 public void post(Event event) { method in class:EventBus
580 logWithPid("post(" + event.getClass().getSimpleName() + ")");
596 post(event);
602 /** Prevent post()ing an InterprocessEvent */
604 public void post(InterprocessEvent event) { method in class:EventBus
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
RecentsTaskLoader.java 121 mLoadThreadHandler.post(this);
220 mMainThreadHandler.post(new Runnable() {
  /frameworks/base/services/core/java/com/android/server/policy/keyguard/
KeyguardServiceDelegate.java 387 handler.post(new Runnable() {
399 mScrimHandler.post(new Runnable() {
409 mScrimHandler.post(new Runnable() {
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
LocalPlayer.java 217 mHandler.post(new Runnable() {
250 mHandler.post(new Runnable() {
265 mHandler.post(new Runnable() {
282 mHandler.post(new Runnable() {
318 mUpdateSurfaceHandler.post(new Runnable() {
  /packages/apps/DevCamera/src/com/android/devcamera/
DevCameraActivity.java 388 mMainHandler.post(new Runnable() {
399 mMainHandler.post(new Runnable() {
419 mUtilityHandler.post(new Runnable() {
423 mMainHandler.post(new Runnable() {
433 mMainHandler.post(new Runnable() {
444 mMainHandler.post(new Runnable() {
465 mMainHandler.post(new Runnable() {
490 mMainHandler.post(new Runnable() {
514 mMainHandler.post(new Runnable() {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleScannerService.java 151 mHandler.post(new Runnable() {
  /cts/tests/camera/src/android/hardware/camera2/cts/helpers/
Camera2Focuser.java 90 * @param handler The handler used to post auto focus callbacks
285 mHandler.post(new Runnable() {
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
InsetDrawableTest.java 355 InsetDrawable post = (InsetDrawable) res.getDrawable(R.drawable.inset_mutate, null); local
357 assertEquals("Did not modify post-mutate() instance", 255, post.getDrawable().getAlpha());
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
MainFragment.java 246 mHandler.post(new Runnable() {
  /developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/
WeatherWidgetProvider.java 112 sWorkerQueue.post(new Runnable() {
  /development/apps/OBJViewer/com/android/objviewer/
OBJViewer.java 237 mGLContext.post();
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 62 /** POST parameter name for the user's account name */
64 /** POST parameter name for the user's password */
66 /** POST parameter name for the user's authentication token */
68 /** POST parameter name for the client's last-known sync state */
70 /** POST parameter name for the sending client-edited contact info */
118 final HttpPost post = new HttpPost(AUTH_URI); local
119 post.addHeader(entity.getContentType());
120 post.setEntity(entity);
122 resp = getHttpClient().execute(post);
176 // Prepare our POST dat
189 final HttpPost post = new HttpPost(SYNC_CONTACTS_URI); local
    [all...]
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherWidgetProvider.java 112 sWorkerQueue.post(new Runnable() {
  /external/autotest/frontend/shared/
resource_lib.py 82 def post(self): member in class:Resource
83 """Handle a POST request.
379 _permitted_methods=('GET', 'POST')
496 def post(self): member in class:Collection
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventBusTest.java 51 bus.post(EVENT);
94 bus.post(EVENT);
95 bus.post(OBJ_EVENT);
96 bus.post(COMP_EVENT);
137 eventBus.post(EVENT);
169 eventBus.post(EVENT);
180 bus.post(EVENT);
192 bus.post(new DeadEvent(this, EVENT));
228 bus.post(EVENT);
230 bus.post(EVENT)
    [all...]
  /external/nanohttpd/fileupload/src/test/java/fi/iki/elonen/
TestNanoFileUpLoad.java 180 HttpPost post = new HttpPost("http://localhost:8192/uploadFile1"); local
182 executeUpload(httpclient, textFileName, post);
191 HttpPost post = new HttpPost("http://localhost:8192/uploadFile2"); local
193 executeUpload(httpclient, textFileName, post);
202 HttpPost post = new HttpPost("http://localhost:8192/uploadFile3"); local
204 executeUpload(httpclient, textFileName, post);
209 private void executeUpload(CloseableHttpClient httpclient, String textFileName, HttpPost post) throws IOException, ClientProtocolException {
219 post.setEntity(entity);
220 HttpResponse response = httpclient.execute(post);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowWebView.java 159 public void post(Runnable action) { method in class:ShadowWebView
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
WebSocketChannelClient.java 96 Log.d(TAG, "Connecting WebSocket to: " + wsUrl + ". Post URL: " + postUrl);
167 public void post(String message) { method in class:WebSocketChannelClient
169 sendWSSMessage("POST", message);
219 // Asynchronously send POST/DELETE to WebSocket server.

Completed in 1402 milliseconds

<<11121314151617181920>>