Searched defs:post (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/os/
H A DHandler.java38 * {@link #post}, {@link #postAtTime(Runnable, long)},
41 * {@link #sendMessageDelayed} methods. The <em>post</em> versions allow
60 * the same <em>post</em> or <em>sendMessage</em> methods as before, but from
246 public final boolean post(Runnable r) method in class:Handler
/frameworks/base/media/libstagefright/omx/
H A DOMX.cpp48 void post(const omx_message &msg);
96 void OMX::CallbackDispatcher::post(const omx_message &msg) { function in class:android::OMX::CallbackDispatcher
344 mDispatcher->post(msg);
358 mDispatcher->post(msg);
378 mDispatcher->post(msg);
/frameworks/base/core/java/android/view/
H A DViewDebug.java902 root.post(new Runnable() {
940 public void post(Void... data) {
953 public void post(Void... data) {
970 public void post(Object... data) {
997 void post(T... data); method in interface:ViewDebug.ViewOperation
1004 view.post(new Runnable() {
1011 operation.post(data);
1125 captureView.post(new Runnable() {
H A DViewRoot.java1244 post(sFirstDrawHandlers.get(i));
3279 void post(Runnable action) { method in class:ViewRoot.RunQueue
H A DView.java4314 // Use a Runnable and post this rather than calling
4320 if (!post(mPerformClick)) {
4335 } else if (!post(mUnsetPressedState)) {
4336 // If the post failed, unpress right now
4425 * construct, but the tap callback will post a long press callback
5209 public boolean post(Runnable action) { method in class:View
5214 // Assume that post will succeed later
5215 ViewRoot.getRunQueue().post(action);
5219 return handler.post(action);
5243 // Assume that post wil
[all...]

Completed in 759 milliseconds