Home
last modified time | relevance | path

Searched full:post (Results 1 – 25 of 3465) sorted by relevance

12345678910>>...139

/third_party/icu/icu4c/source/data/translit/
DAny_Accents.txt14 $post = \→ ;
16 $pre \` $post ↔ \u0300 ; # COMBINING GRAVE ACCENT
17 $pre \' $post ↔ \u0301 ; # COMBINING ACUTE ACCENT
18 $pre \^ $post ↔ \u0302 ; # COMBINING CIRCUMFLEX ACCENT
19 $pre \~ $post ↔ \u0303 ; # COMBINING TILDE
20 $pre \- $post ↔ \u0304 ; # COMBINING MACRON
21 $pre \" $post ↔ \u0308 ; # COMBINING DIAERESIS
22 $pre \* $post ↔ \u030A ; # COMBINING RING ABOVE
23 $pre \, $post ↔ \u0327 ; # COMBINING CEDILLA
24 $pre '/' $post ↔ \u0338 ; # COMBINING LONG SOLIDUS OVERLAY
[all …]
/third_party/skia/third_party/externals/icu/source/data/translit/
DAny_Accents.txt14 $post = \→ ;
16 $pre \` $post ↔ \u0300 ; # COMBINING GRAVE ACCENT
17 $pre \' $post ↔ \u0301 ; # COMBINING ACUTE ACCENT
18 $pre \^ $post ↔ \u0302 ; # COMBINING CIRCUMFLEX ACCENT
19 $pre \~ $post ↔ \u0303 ; # COMBINING TILDE
20 $pre \- $post ↔ \u0304 ; # COMBINING MACRON
21 $pre \" $post ↔ \u0308 ; # COMBINING DIAERESIS
22 $pre \* $post ↔ \u030A ; # COMBINING RING ABOVE
23 $pre \, $post ↔ \u0327 ; # COMBINING CEDILLA
24 $pre '/' $post ↔ \u0338 ; # COMBINING LONG SOLIDUS OVERLAY
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/
Djdpostct.c81 my_post_ptr post = (my_post_ptr)cinfo->post; in start_pass_dpost() local
87 post->pub.post_process_data = post_process_1pass; in start_pass_dpost()
92 if (post->buffer == NULL) { in start_pass_dpost()
93 post->buffer = (*cinfo->mem->access_virt_sarray) in start_pass_dpost()
94 ((j_common_ptr)cinfo, post->whole_image, in start_pass_dpost()
95 (JDIMENSION)0, post->strip_height, TRUE); in start_pass_dpost()
101 post->pub.post_process_data = cinfo->upsample->upsample; in start_pass_dpost()
107 if (post->whole_image == NULL) in start_pass_dpost()
109 post->pub.post_process_data = post_process_prepass; in start_pass_dpost()
113 if (post->whole_image == NULL) in start_pass_dpost()
[all …]
/third_party/icu/icu4c/source/test/testdata/
Dssearch.xml10 <!ELEMENT test-case (pattern, pre?, m?, post?)>
22 <!ELEMENT post (#PCDATA)>
31 <pre>xxx</pre><m>abc</m><post>yyy</post>
37 <pre>xxx</pre><post>yyy</post>
43 <pre>silly spring stling strxng strilg strinx stri</pre><m>string</m><post> fling</post>
48 <pre>abc</pre><m>fuss</m><post>sss</post>
53 <pre>abc</pre><m>fuß</m><post>sss</post>
60 <post>ball table</post>
65 <pre>abc</pre><m>fuss</m><post>xyz</post>
75 <pre>abcfuß</pre><post>xyz</post>
[all …]
/third_party/openssl/test/ssl-tests/
D26-tls13_client_auth.cnf11 test-6 = 6-client-auth-TLSv1.3-request-post-handshake
12 test-7 = 7-client-auth-TLSv1.3-require-fail-post-handshake
13 test-8 = 8-client-auth-TLSv1.3-require-post-handshake
14 test-9 = 9-client-auth-TLSv1.3-require-non-empty-names-post-handshake
15 test-10 = 10-client-auth-TLSv1.3-noroot-post-handshake
16 test-11 = 11-client-auth-TLSv1.3-request-force-client-post-handshake
17 test-12 = 12-client-auth-TLSv1.3-request-force-server-post-handshake
18 test-13 = 13-client-auth-TLSv1.3-request-force-both-post-handshake
210 [6-client-auth-TLSv1.3-request-post-handshake]
211 ssl_conf = 6-client-auth-TLSv1.3-request-post-handshake-ssl
[all …]
/third_party/node/test/parallel/
Dtest-worker-debug.js36 session.post(method, params, (error, result) => {
105 this.post(command);
111 post(method, parameters) { method in WorkerSession
121 this._parentSession.post('NodeWorker.sendMessageToWorker', {
128 async function testBasicWorkerDebug(session, post) { argument
136 await post('NodeWorker.enable', { waitForDebuggerOnStart: true });
149 await workerSession.post('Debugger.enable');
150 await workerSession.post('Runtime.enable');
157 workerSession.post('Debugger.resume');
161 async function testNoWaitOnStart(session, post) { argument
[all …]
Dtest-inspector-async-call-stack.js34 session.post('Debugger.enable', () => {
37 session.post(setDepth, { invalid: 'message' }, () => {
40 session.post(setDepth, { maxDepth: 'five' }, () => {
44 session.post(setDepth, { maxDepth: NaN }, () => {
48 session.post(setDepth, { maxDepth: 10 }, () => {
51 session.post(setDepth, { maxDepth: 0 }, () => {
64 session.post(setDepth, { maxDepth: 32 }, () => {
67 session.post('Debugger.disable', () => {
70 session.post('Debugger.enable', () => {
73 session.post(setDepth, { maxDepth: 64 }, () => {
/third_party/curl/lib/
Dformdata.c80 struct curl_httppost *post; in AddHttpPost() local
86 post = calloc(1, sizeof(struct curl_httppost)); in AddHttpPost()
87 if(post) { in AddHttpPost()
88 post->name = name; in AddHttpPost()
89 post->namelength = (long)namelength; in AddHttpPost()
90 post->contents = value; in AddHttpPost()
91 post->contentlen = contentslength; in AddHttpPost()
92 post->buffer = buffer; in AddHttpPost()
93 post->bufferlength = (long)bufferlength; in AddHttpPost()
94 post->contenttype = contenttype; in AddHttpPost()
[all …]
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-multi/
DCMakeLists.txt165 # POSTs against local http-server-form-post
166 add_test(NAME http-client-multi-post COMMAND lws-minimal-http-client-multi
167 --post -l --port 1${PORT_HCM_SRV} -d1151)
168 add_test(NAME http-client-multi-post-h1 COMMAND lws-minimal-http-client-multi
169 --post --h1 -l --port 1${PORT_HCM_SRV} -d1151)
170 add_test(NAME http-client-multi-post-pipe COMMAND lws-minimal-http-client-multi
171 --post -p -l --port 1${PORT_HCM_SRV} -d1151)
173 …add_test(NAME http-client-multi-post-h1-pipe COMMAND ${VALGRIND} --tool=memcheck $<TARGET_FILE:lws…
174 --post --h1 -p -l --port 1${PORT_HCM_SRV} -d1151)
176 add_test(NAME http-client-multi-post-h1-pipe COMMAND lws-minimal-http-client-multi
[all …]
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-post/
DCMakeLists.txt1 project(lws-minimal-http-client-post C)
8 set(SAMP lws-minimal-http-client-post)
9 set(SRCS minimal-http-client-post.c)
84 add_test(NAME http-client-post COMMAND
85 lws-minimal-http-client-post -l --port ${PORT_HCP_SRV})
86 add_test(NAME http-client-post-m COMMAND
87 lws-minimal-http-client-post -l -m --port ${PORT_HCP_SRV})
88 add_test(NAME http-client-post-h1 COMMAND
89 lws-minimal-http-client-post -l --h1 --port ${PORT_HCP_SRV})
90 add_test(NAME http-client-post-m-h1 COMMAND
[all …]
/third_party/curl/docs/libcurl/opts/
DCURLOPT_POST.md15 CURLOPT_POST - make an HTTP POST
22 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_POST, long post);
27 A parameter set to 1 tells libcurl to do a regular HTTP post. This also makes
29 is the most commonly used POST method.
32 options to specify what data to post and CURLOPT_POSTFIELDSIZE(3) or
35 Optionally, you can provide data to POST using the
42 Transfer-Encoding header, see the post-callback.c example.
44 You can override the default POST Content-Type: header by setting your own
47 Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
50 If you use POST to an HTTP 1.1 server, you can send data without knowing the
[all …]
DCURLOPT_POSTFIELDS.md17 CURLOPT_POSTFIELDS - data to POST to server
30 HTTP POST operation. The data must be formatted and encoded the way you want
39 This POST is a normal **application/x-www-form-urlencoded** kind (and
51 POST data from the read callback. If you want to send a zero-byte POST set
60 Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header,
61 and libcurl adds that header automatically if the POST is either known to be
79 /* send an application/x-www-form-urlencoded POST */
88 /* size of the POST data if strlen() is not good enough */
97 /* send an application/json POST */
/third_party/skia/third_party/externals/microhttpd/doc/chapters/
Dprocessingpost.inc3 the server operates. To induce changes on the server, the @emph{POST} method is preferred over
7 composes an individual response text. Even though it was not mandatory to use the @emph{POST} metho…
8 as there is no permanent change caused by the POST, it is an illustrative example on how to share d…
19 <form action=\"/namepost\" method=\"post\">\
30 as the response for anything but proper @emph{GET} and @emph{POST} requests:
45 @heading POST request
50 not only if there are different POSTs but also if one POST has only been received partly yet and
54 of the post request. We want the iterator function to read the first post data which is tagged
70 Once it has composed the greeting string, it returns @code{MHD_NO} to inform the post processor
108 that might have been allocated for that connection by us, namely the post processor and the greetin…
[all …]
/third_party/typescript/tests/cases/fourslash/
DgetOutliningSpansDepthChainedCalls.ts10 //// .post[|("/a", async(ctx) =>[|{
16 //// .post[|("/a", async(ctx) =>[|{
22 //// .post[|("/a", async(ctx) =>[|{
28 //// .post[|("/a", async(ctx) =>[|{
34 //// .post[|("/a", async(ctx) =>[|{
40 //// .post[|("/a", async(ctx) =>[|{
46 //// .post[|("/a", async(ctx) =>[|{
52 //// .post[|("/a", async(ctx) =>[|{
58 //// .post[|("/a", async(ctx) =>[|{
64 //// .post[|("/a", async(ctx) =>[|{
[all …]
/third_party/openGLES/extensions/INTEL/
DINTEL_framebuffer_CMAA.txt57 to antialiasing, which operates on the final image. This post processing
76 17.4.6 Framebuffer post processing: Conservative Morphological Anti-Aliasting (CMMA)
80 15.2.5 Framebuffer post processing: Conservative Morphological Anti-Aliasting (CMMA)
82 The post processing of current draw buffers pertaining to the framebuffer
97 The CMAA post processing is performed in-place for all color attachments of
102 1. If an application wants to post process color attachments of different
107 for post processing?
110 will be used for post processing?
116 framebuffer object and will reuse those resources for subsequent post
120 CMAA post processing?
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/INTEL/
DINTEL_framebuffer_CMAA.txt57 to antialiasing, which operates on the final image. This post processing
76 17.4.6 Framebuffer post processing: Conservative Morphological Anti-Aliasting (CMMA)
80 15.2.5 Framebuffer post processing: Conservative Morphological Anti-Aliasting (CMMA)
82 The post processing of current draw buffers pertaining to the framebuffer
97 The CMAA post processing is performed in-place for all color attachments of
102 1. If an application wants to post process color attachments of different
107 for post processing?
110 will be used for post processing?
116 framebuffer object and will reuse those resources for subsequent post
120 CMAA post processing?
[all …]
/third_party/curl/docs/libcurl/
Dcurl_formadd.md15 curl_formadd - add a section to a multipart form POST
31 post. Append one section at a time until you have added all the sections you
42 after the form post has been done to free the resources.
44 Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header.
51 you want to add to your post.
190 specifies extra headers for the form POST section. This takes a curl_slist
193 the POST occurs, if you free it before the post completes you may experience
214 struct curl_httppost *post = NULL;
230 curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
234 curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
[all …]
/third_party/curl/tests/unit/
Dunit1308.c48 struct curl_httppost *post = NULL; variable
53 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
60 fail_unless(post == last, "post and last weren't the same");
62 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
68 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
73 rc = curl_formget(post, &total_size, print_httppost_callback);
79 curl_formfree(post);
82 post = last = NULL;
84 rc = curl_formadd(&post, &last,
92 rc = curl_formget(post, &total_size, print_httppost_callback);
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
Dversion.py41 post: Optional[Tuple[str, int]]
126 (?P<post> # post release
131 (?P<post_l>post|rev|r)
207 post=_parse_letter_version(
219 self._version.post,
251 # Post-release
252 if self.post is not None:
253 parts.append(f".post{self.post}")
288 post-release suffixes.
308 def post(self) -> Optional[int]: member in Version
[all …]
/third_party/node/deps/npm/node_modules/brace-expansion/
Dindex.js49 var post = m.post;
53 var postParts = parseCommaParts(post);
54 if (post.length) {
103 var post = m.post.length
104 ? expand(m.post, false)
108 for (var k = 0; k < post.length; k++) {
109 var expansion = pre+ '{' + m.body + '}' + post[k];
119 if (m.post.match(/,.*\}/)) {
120 str = m.pre + '{' + m.body + escClose + m.post;
135 return post.map(function(p) {
[all …]
/third_party/node/deps/minimatch/src/node_modules/brace-expansion/
Dindex.js49 var post = m.post;
53 var postParts = parseCommaParts(post);
54 if (post.length) {
103 var post = m.post.length
104 ? expand(m.post, false)
108 for (var k = 0; k < post.length; k++) {
109 var expansion = pre+ '{' + m.body + '}' + post[k];
119 if (m.post.match(/,.*\}/)) {
120 str = m.pre + '{' + m.body + escClose + m.post;
135 return post.map(function(p) {
[all …]
/third_party/littlefs/.github/workflows/
Dpost-release.yml1 name: post-release
8 post-release:
11 # trigger post-release in dependency repo, this indirection allows the
14 # creating PRs for other dependent repos post-release.
15 - name: trigger-post-release
18 curl -sS -X POST -H "authorization: token ${{secrets.BOT_TOKEN}}" \
21 event_type: "post-release",
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/subsetter/
DPostScriptTableSubsetter.java33 super(Tag.post); in PostScriptTableSubsetter()
43 PostScriptTable post = font.getTable(Tag.post); in subset() local
44 postBuilder.initV1From(post); in subset()
45 if (post.version() == 0x10000 || post.version() == 0x20000) { in subset()
48 names.add(post.glyphName(permutationTable.get(i))); in subset()
52 fontBuilder.newTableBuilder(Tag.post, postBuilder.build()); in subset()
/third_party/node/deps/minimatch/src/node_modules/balanced-match/
DREADME.md17 console.log(balanced('{', '}', 'pre{in{nested}}post'));
18 console.log(balanced('{', '}', 'pre{first}between{second}post'));
19 console.log(balanced(/\s+\{\s+/, /\s+\}\s+/, 'pre { in{nest} } post'));
26 { start: 3, end: 14, pre: 'pre', body: 'in{nested}', post: 'post' }
31 post: 'between{second}post' }
32 { start: 3, end: 17, pre: 'pre', body: 'in{nest}', post: 'post' }
46 * **post** the postscript, `a` and `b` not included
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/tools/subsetter/
DPostScriptTableBuilderTest.java45 fontBuilder.newTableBuilder(Tag.post, postBuilder.build()); in testPostTableBuilding()
48 PostScriptTable post = font.getTable(Tag.post); in testPostTableBuilding() local
49 assertEquals(0x20000, post.version()); in testPostTableBuilding()
50 assertEquals(names.size(), post.numberOfGlyphs()); in testPostTableBuilding()
52 assertEquals(names.get(i), post.glyphName(i)); in testPostTableBuilding()
57 assertEquals(79, post.dataLength()); in testPostTableBuilding()
58 assertEquals(79, post.headerLength()); in testPostTableBuilding()

12345678910>>...139