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

12345

/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_PlatformFile.java24 public static String getNewPlatformFile(String pre, String post) { argument
33 return pre + platformId + post;
/external/chromium_org/chrome/test/ispy/server/
H A Drebaseline_handler.py18 def post(self): member in class:RebaselineHandler
19 """Accepts post requests.
H A Dupdate_mask_handler.py22 def post(self): member in class:UpdateMaskHandler
23 """Accepts post requests.
25 This method will accept a post request containing device, site and
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeVisitorAction.java32 * pre() before visiting children and execute post() after visiting children.
46 public Object post(Object t); method in interface:TreeVisitorAction
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/
H A Dinternal_alerts.py42 def post(self): member in class:InternalAlertsHandler
H A Dalerts.py73 def post(self): member in class:AlertsHandler
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dapp_engine_handler.py17 def post(self): member in class:AppEngineHandler
/external/chromium_org/components/policy/core/common/
H A Dasync_policy_provider.cc45 bool post = loader_->task_runner()->PostTask( local
50 DCHECK(post) << "AsyncPolicyProvider::Init() called with threads not running";
/external/chromium_org/tools/usb_gadget/
H A Decho_gadget.py212 def post(self): member in class:RegisterHandlers.WebConfigureHandler
H A Dhid_echo_gadget.py99 def post(self): member in class:RegisterHandlers.WebConfigureHandler
H A Dkeyboard_gadget.py171 def post(self): member in class:RegisterHandlers.WebConfigureHandler
176 def post(self): member in class:RegisterHandlers.WebTypeHandler
192 def post(self): member in class:RegisterHandlers.WebPressHandler
H A Dmouse_gadget.py129 def post(self): member in class:RegisterHandlers.WebConfigureHandler
135 def post(self): member in class:RegisterHandlers.WebClickHandler
148 def post(self): member in class:RegisterHandlers.WebMoveHandler
/external/iproute2/misc/
H A Dssfilter.h15 struct ssfilter *post; member in struct:ssfilter
/external/blktrace/btt/
H A Dlatency.c29 FILE *latency_open(__u32 device, char *name, char *post) argument
40 sprintf(oname, "%s_%03d,%03d_%s.dat", name, mjr, mnr, post);
/external/chromium_org/remoting/webapp/
H A Dxhr.js73 remoting.xhr.post = function(url, onDone, opt_parameters, opt_headers,
/external/chromium_org/third_party/ots/src/
H A Dpost.cc5 #include "post.h"
9 // post - PostScript
10 // http://www.microsoft.com/opentype/otspec/post.htm
17 OpenTypePOST *post = new OpenTypePOST; local
18 file->post = post;
20 if (!table.ReadU32(&post->version) ||
21 !table.ReadU32(&post->italic_angle) ||
22 !table.ReadS16(&post->underline) ||
23 !table.ReadS16(&post
126 const OpenTypePOST *post = file->post; local
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dotf_basic_editing_test.cc81 TablePtr post = font->GetTable(Tag::post); local
82 EXPECT_EQ(post->CalculatedChecksum(), TTF_CHECKSUM[SAMPLE_TTF_POST]);
/external/chromium_org/tools/deep_memory_profiler/visualizer/
H A Dapp.py55 def post(self): member in class:UploadHandler
80 def post(self): member in class:ShareHandler
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_heap_relax_snode.h50 IndexVector post; local
51 internal::treePostorder(n, et, post); // Post order etree
54 for (i = 0; i < n+1; ++i) inv_post(post(i)) = i; // inv_post = post.inverse()???
61 iwork(post(i)) = post(et(i));
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/guide/
H A DPostExample.java17 String result = post(new URL("http://www.roundsapp.com/post"), body);
21 String post(URL url, byte[] body) throws IOException { method in class:PostExample
/external/sfntly/cpp/src/test/
H A Dotf_basic_editing_test.cc81 TablePtr post = font->GetTable(Tag::post); local
82 EXPECT_EQ(post->CalculatedChecksum(), TTF_CHECKSUM[SAMPLE_TTF_POST]);
/external/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/
H A Dmain.py68 def post(self): member in class:UpdateLog
/external/chromium_org/third_party/hwcplus/include/hardware/
H A Dfb.h85 * updated during (*post)().
92 * is, the driver is not allowed to post anything outside of this
95 * The rectangle evaluated during (*post)() and specifies which area
96 * of the buffer passed in (*post)() shall to be posted.
113 * post() will block until the the first post is completed.
115 * Internally, post() is expected to lock the buffer so that a
122 int (*post)(struct framebuffer_device_t* dev, buffer_handle_t buffer); member in struct:framebuffer_device_t
/external/chromium_org/third_party/libjpeg_turbo/
H A Djdpostct.c75 my_post_ptr post = (my_post_ptr) cinfo->post; local
81 post->pub.post_process_data = post_process_1pass;
86 if (post->buffer == NULL) {
87 post->buffer = (*cinfo->mem->access_virt_sarray)
88 ((j_common_ptr) cinfo, post->whole_image,
89 (JDIMENSION) 0, post->strip_height, TRUE);
95 post->pub.post_process_data = cinfo->upsample->upsample;
101 if (post->whole_image == NULL)
103 post
132 my_post_ptr post = (my_post_ptr) cinfo->post; local
164 my_post_ptr post = (my_post_ptr) cinfo->post; local
208 my_post_ptr post = (my_post_ptr) cinfo->post; local
252 my_post_ptr post; local
[all...]
/external/guava/guava/src/com/google/common/eventbus/
H A DEventBus.java65 * To post an event, simply provide the event object to the
66 * {@link #post(Object)} method. The EventBus instance will determine the type
74 * <p>When {@code post} is called, all registered handlers for an event are run
243 * @param event event to post.
245 public void post(Object event) { method in class:EventBus
261 post(new DeadEvent(this, event));

Completed in 507 milliseconds

12345