Home
last modified time | relevance | path

Searched full:part (Results 1 - 25 of 24049) sorted by relevance

12345678910>>...962

/third_party/curl/lib/
H A Dmime.c11 * you should have received as part of this distribution. The terms
67 curl_mimepart *part);
68 static curl_off_t encoder_nop_size(curl_mimepart *part);
70 curl_mimepart *part);
72 curl_mimepart *part);
73 static curl_off_t encoder_base64_size(curl_mimepart *part);
75 curl_mimepart *part);
76 static curl_off_t encoder_qp_size(curl_mimepart *part);
382 struct curl_mimepart *part) in encoder_nop_read()
384 struct mime_encoder_state *st = &part in encoder_nop_read()
381 encoder_nop_read(char *buffer, size_t size, bool ateof, struct curl_mimepart *part) encoder_nop_read() argument
402 encoder_nop_size(curl_mimepart *part) encoder_nop_size() argument
409 encoder_7bit_read(char *buffer, size_t size, bool ateof, curl_mimepart *part) encoder_7bit_read() argument
435 encoder_base64_read(char *buffer, size_t size, bool ateof, curl_mimepart *part) encoder_base64_read() argument
514 encoder_base64_size(curl_mimepart *part) encoder_base64_size() argument
548 encoder_qp_read(char *buffer, size_t size, bool ateof, curl_mimepart *part) encoder_qp_read() argument
649 encoder_qp_size(curl_mimepart *part) encoder_qp_size() argument
662 curl_mimepart *part = (curl_mimepart *) instream; mime_mem_read() local
680 curl_mimepart *part = (curl_mimepart *) instream; mime_mem_seek() local
706 mime_open_file(curl_mimepart *part) mime_open_file() argument
719 curl_mimepart *part = (curl_mimepart *) instream; mime_file_read() local
732 curl_mimepart *part = (curl_mimepart *) instream; mime_file_seek() local
746 curl_mimepart *part = (curl_mimepart *) ptr; mime_file_free() local
789 read_part_content(curl_mimepart *part, char *buffer, size_t bufsize, bool *hasread) read_part_content() argument
854 read_encoded_part_content(curl_mimepart *part, char *buffer, size_t bufsize, bool *hasread) read_encoded_part_content() argument
914 readback_part(curl_mimepart *part, char *buffer, size_t bufsize, bool *hasread) readback_part() argument
1007 curl_mimepart *part = mime->state.ptr; mime_subparts_read() local
1066 mime_part_rewind(curl_mimepart *part) mime_part_rewind() argument
1103 curl_mimepart *part; mime_subparts_seek() local
1125 cleanup_part_content(curl_mimepart *part) cleanup_part_content() argument
1168 Curl_mime_cleanpart(curl_mimepart *part) Curl_mime_cleanpart() argument
1185 curl_mimepart *part; curl_mime_free() local
1307 Curl_mime_initpart(curl_mimepart *part) Curl_mime_initpart() argument
1317 curl_mimepart *part; curl_mime_addpart() local
1340 curl_mime_name(curl_mimepart *part, const char *name) curl_mime_name() argument
1357 curl_mime_filename(curl_mimepart *part, const char *filename) curl_mime_filename() argument
1374 curl_mime_data(curl_mimepart *part, const char *ptr, size_t datasize) curl_mime_data() argument
1402 curl_mime_filedata(curl_mimepart *part, const char *filename) curl_mime_filedata() argument
1451 curl_mime_type(curl_mimepart *part, const char *mimetype) curl_mime_type() argument
1468 curl_mime_encoder(curl_mimepart *part, const char *encoding) curl_mime_encoder() argument
1491 curl_mime_headers(curl_mimepart *part, struct curl_slist *headers, int take_ownership) curl_mime_headers() argument
1509 curl_mime_data_cb(curl_mimepart *part, curl_off_t datasize, curl_read_callback readfunc, curl_seek_callback seekfunc, curl_free_callback freefunc, void *arg) curl_mime_data_cb() argument
1532 Curl_mime_set_subparts(curl_mimepart *part, curl_mime *subparts, int take_ownership) Curl_mime_set_subparts() argument
1574 curl_mime_subparts(curl_mimepart *part, curl_mime *subparts) curl_mime_subparts() argument
1584 curl_mimepart *part = (curl_mimepart *) instream; Curl_mime_read() local
1605 Curl_mime_rewind(curl_mimepart *part) Curl_mime_rewind() argument
1628 curl_mimepart *part; multipart_size() local
1650 Curl_mime_size(curl_mimepart *part) Curl_mime_size() argument
1757 Curl_mime_prepare_headers(struct Curl_easy *data, curl_mimepart *part, const char *contenttype, const char *disposition, enum mimestrategy strategy) Curl_mime_prepare_headers() argument
1899 Curl_mime_unpause(curl_mimepart *part) Curl_mime_unpause() argument
1939 curl_mime_name(curl_mimepart *part, const char *name) curl_mime_name() argument
1946 curl_mime_filename(curl_mimepart *part, const char *filename) curl_mime_filename() argument
1953 curl_mime_type(curl_mimepart *part, const char *mimetype) curl_mime_type() argument
1960 curl_mime_encoder(curl_mimepart *part, const char *encoding) curl_mime_encoder() argument
1967 curl_mime_data(curl_mimepart *part, const char *data, size_t datasize) curl_mime_data() argument
1976 curl_mime_filedata(curl_mimepart *part, const char *filename) curl_mime_filedata() argument
1983 curl_mime_data_cb(curl_mimepart *part, curl_off_t datasize, curl_read_callback readfunc, curl_seek_callback seekfunc, curl_free_callback freefunc, void *arg) curl_mime_data_cb() argument
1999 curl_mime_subparts(curl_mimepart *part, curl_mime *subparts) curl_mime_subparts() argument
2006 curl_mime_headers(curl_mimepart *part, struct curl_slist *headers, int take_ownership) curl_mime_headers() argument
[all...]
H A Dmime.h13 * you should have received as part of this distribution. The terms
34 /* Part flags. */
43 /* Part source kinds. */
45 MIMEKIND_NONE = 0, /* Part not set. */
63 MIMESTATE_END, /* End of part reached. */
78 curl_mimepart *part); /* Encoded read. */
79 curl_off_t (*sizefunc)(curl_mimepart *part); /* Encoded size. */
102 curl_mimepart *parent; /* Parent part. */
103 curl_mimepart *firstpart; /* First part. */
104 curl_mimepart *lastpart; /* Last part
[all...]
/third_party/curl/tests/libtest/
H A Dlib643.c11 * you should have received as part of this distribution. The terms
65 curl_mimepart *part = NULL; in once() local
91 part = curl_mime_addpart(mime); in once()
92 if(!part) { in once()
100 /* Fill in the file upload part */ in once()
102 res = curl_mime_name(part, "sendfile"); in once()
104 res = curl_mime_data_cb(part, datasize, read_callback, in once()
107 res = curl_mime_filename(part, "postit2.c"); in once()
111 res = curl_mime_name(part, "sendfile alternative"); in once()
113 res = curl_mime_data_cb(part, datasiz in once()
230 curl_mimepart *part = curl_mime_addpart(mime); cyclic_add() local
[all...]
/third_party/node/deps/npm/node_modules/tar/lib/
H A Dmkdir.js106 const part = normPath(path.resolve(base + '/' + p))
107 if (cGet(cache, part)) {
108 return mkdir_(part, parts, mode, cache, unlink, cwd, created, cb)
110 fs.mkdir(part, mode, onmkdir(part, parts, mode, cache, unlink, cwd, created, cb))
113 const onmkdir = (part, parts, mode, cache, unlink, cwd, created, cb) => er => {
115 fs.lstat(part, (statEr, st) => {
120 mkdir_(part, parts, mode, cache, unlink, cwd, created, cb)
122 fs.unlink(part, er => {
126 fs.mkdir(part, mod
[all...]
/device/board/hisilicon/hispark_phoenix/linux/system/
H A DHi3751V350-slaveboot-emmc.xml3 <Part Sel="1" PartitionName="fastboot" FlashType="emmc" FileSystem="none" Start="0" Length="1M" SelectFile="fastboot.bin"/>
4 <Part Sel="1" PartitionName="bootargs" FlashType="emmc" FileSystem="none" Start="1M" Length="1M" SelectFile="bootargs.bin"/>
5 <Part Sel="1" PartitionName="bootargsbak" FlashType="emmc" FileSystem="none" Start="2M" Length="1M" SelectFile="bootargs.bin"/>
6 <Part Sel="1" PartitionName="slaveboot" FlashType="emmc" FileSystem="none" Start="3M" Length="2M" SelectFile="slaveboot.bin"/>
7 <Part Sel="1" PartitionName="recovery" FlashType="emmc" FileSystem="none" Start="5M" Length="40M" SelectFile=""/>
8 <Part Sel="1" PartitionName="panelparam" FlashType="emmc" FileSystem="none" Start="45M" Length="8M" SelectFile="panel.img"/>
9 <Part Sel="1" PartitionName="deviceinfo" FlashType="emmc" FileSystem="none" Start="53M" Length="2M" SelectFile=""/>
10 <Part Sel="1" PartitionName="logo" FlashType="emmc" FileSystem="none" Start="55M" Length="40M" SelectFile="logo.img"/>
11 <Part Sel="1" PartitionName="boot" FlashType="emmc" FileSystem="none" Start="95M" Length="30M" SelectFile="uImage"/>
12 <Part Se
[all...]
/third_party/mbedtls/tests/suites/
H A Dtest_suite_psa_crypto_hash.data329 PSA hash multi part: SHA-1 Test Vector NIST CAVS #1
333 PSA hash multi part: SHA-1 Test Vector NIST CAVS #2
337 PSA hash multi part: SHA-1 Test Vector NIST CAVS #3
341 PSA hash multi part: SHA-1 Test Vector NIST CAVS #4
345 PSA hash multi part: SHA-1 Test Vector NIST CAVS #5
349 PSA hash multi part: SHA-1 Test Vector NIST CAVS #6
353 PSA hash multi part: SHA-1 Test Vector NIST CAVS #7
357 PSA hash multi part: SHA-1 Test Vector NIST CAVS #8
361 PSA hash multi part: SHA-1 Test Vector NIST CAVS #9
365 PSA hash multi part
[all...]
/third_party/icu/icu4c/source/common/unicode/
H A Dmessagepattern.h99 * MessagePattern::Part type constants.
109 * There is always a later MSG_LIMIT part.
125 * would be indicated with such a part.
139 * When formatting, replace this part's substring with the
150 * This part is followed by either an ARG_NUMBER or ARG_NAME,
152 * and finally an ARG_LIMIT part.
195 * The part value is the integer value.
202 * The part value is an index into an internal array of numeric values;
215 * Returned by Part.getArgType() for ARG_START and ARG_LIMIT parts.
228 * The argument has a "simple" type which is provided by the ARG_TYPE part
670 partSubstringMatches(const Part &part, const UnicodeString &s) const partSubstringMatches() argument
713 class Part : public UMemory { global() class in MessagePattern
719 Part() {} Part() function in MessagePattern::Part
[all...]
/third_party/node/deps/icu-small/source/common/unicode/
H A Dmessagepattern.h99 * MessagePattern::Part type constants.
109 * There is always a later MSG_LIMIT part.
125 * would be indicated with such a part.
139 * When formatting, replace this part's substring with the
150 * This part is followed by either an ARG_NUMBER or ARG_NAME,
152 * and finally an ARG_LIMIT part.
195 * The part value is the integer value.
202 * The part value is an index into an internal array of numeric values;
215 * Returned by Part.getArgType() for ARG_START and ARG_LIMIT parts.
228 * The argument has a "simple" type which is provided by the ARG_TYPE part
670 partSubstringMatches(const Part &part, const UnicodeString &s) const partSubstringMatches() argument
713 class Part : public UMemory { global() class in MessagePattern
719 Part() {} Part() function in MessagePattern::Part
[all...]
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dmessagepattern.h99 * MessagePattern::Part type constants.
109 * There is always a later MSG_LIMIT part.
125 * would be indicated with such a part.
139 * When formatting, replace this part's substring with the
150 * This part is followed by either an ARG_NUMBER or ARG_NAME,
152 * and finally an ARG_LIMIT part.
195 * The part value is the integer value.
202 * The part value is an index into an internal array of numeric values;
215 * Returned by Part.getArgType() for ARG_START and ARG_LIMIT parts.
228 * The argument has a "simple" type which is provided by the ARG_TYPE part
670 partSubstringMatches(const Part &part, const UnicodeString &s) const partSubstringMatches() argument
713 class Part : public UMemory { global() class in MessagePattern
719 Part() {} Part() function in MessagePattern::Part
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DMessagePattern.java22 //Note: Minimize ICU dependencies, only use a very small part of the ICU core.
45 * For every _START "part", {@link #getLimitPartIndex(int)} efficiently returns
46 * the index of the corresponding _LIMIT "part".
66 * between parts of a message, from one part's getLimit() to the next part's getIndex().
67 * <li><code>ARG_START.CHOICE</code> stands for an ARG_START Part with ArgType CHOICE.
70 * <li>In the pluralStyle, the first, optional numeric Part has the "offset:" value.
71 * The optional numeric Part between each (ARG_SELECTOR, message) pair
74 * <li>The REPLACE_NUMBER Part can occur only in an immediate sub-message of the pluralStyle.
406 Part par in autoQuoteApostropheDeep()
473 getSubstring(Part part) getSubstring() argument
485 partSubstringMatches(Part part, String s) partSubstringMatches() argument
495 getNumericValue(Part part) getNumericValue() argument
554 public static final class Part { global() class in MessagePattern
555 private Part(Type t, int i, int l, int v) { Part() method in MessagePattern.Part
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DMessagePattern.java23 //Note: Minimize ICU dependencies, only use a very small part of the ICU core.
46 * For every _START "part", {@link #getLimitPartIndex(int)} efficiently returns
47 * the index of the corresponding _LIMIT "part".
67 * between parts of a message, from one part's getLimit() to the next part's getIndex().
68 * <li><code>ARG_START.CHOICE</code> stands for an ARG_START Part with ArgType CHOICE.
71 * <li>In the pluralStyle, the first, optional numeric Part has the "offset:" value.
72 * The optional numeric Part between each (ARG_SELECTOR, message) pair
75 * <li>The REPLACE_NUMBER Part can occur only in an immediate sub-message of the pluralStyle.
383 Part par in autoQuoteApostropheDeep()
445 getSubstring(Part part) getSubstring() argument
456 partSubstringMatches(Part part, String s) partSubstringMatches() argument
465 getNumericValue(Part part) getNumericValue() argument
520 public static final class Part { global() class in MessagePattern
521 private Part(Type t, int i, int l, int v) { Part() method in MessagePattern.Part
[all...]
/third_party/node/test/parallel/
H A Dtest-stream-transform-final-sync.js13 // // part 1
15 // //part 2
19 // // part 1
21 // // part 2
26 // // part 1
28 // // part 2
42 // 1. transformCallback part 1
44 // 3. transformCallback part 2
45 // 4. transformCallback part 1
47 // 6. transformCallback part
[all...]
H A Dtest-stream-transform-final.js13 // // part 1
15 // //part 2
19 // // part 1
21 // // part 2
26 // // part 1
28 // // part 2
42 // 1. transformCallback part 1
44 // 3. transformCallback part 2
45 // 4. transformCallback part 1
47 // 6. transformCallback part
[all...]
/third_party/curl/docs/libcurl/
H A Dcurl_mime_subparts.md14 curl_mime_subparts - set sub-parts of a multipart mime part
21 CURLcode curl_mime_subparts(curl_mimepart *part, curl_mime *subparts);
26 curl_mime_subparts(3) sets a multipart mime part's content from a mime
29 *part* is a handle to the multipart part.
33 multipart part and must not be freed explicitly. It may however be updated by
36 Setting a part's contents multiple times is valid: only the value set by the
37 last call is retained. It is possible to unassign previous part's contents by
53 /* The inline part is an alternative proposing the html and the text
56 curl_mimepart *part;
[all...]
H A Dcurl_mime_filename.md15 curl_mime_filename - set a mime part's remote file name
22 CURLcode curl_mime_filename(curl_mimepart *part,
28 curl_mime_filename(3) sets a mime part's remote filename. When remote
29 filename is set, content data is processed as a file, whatever is the part's
30 content source. A part's remote filename is transmitted to the server in the
33 *part* is the part's handle to assign the remote filename to.
38 The remote filename string is copied into the part, thus the associated
39 storage may safely be released or reused after call. Setting a part's file
51 curl_mimepart *part;
[all...]
H A Dcurl_mime_filedata.md16 curl_mime_filedata - set a mime part's body data from a file contents
23 CURLcode curl_mime_filedata(curl_mimepart *part,
29 curl_mime_filedata(3) sets a mime part's body content from the named
31 data to a mime part.
33 *part* is the part's to assign contents to.
36 be NULL to detach the previous part contents settings. Filename storage can
39 As a side effect, the part's remote filename is set to the base name of the
49 part is transferred using chunks by HTTP but is rejected by IMAP.
51 Setting a part'
[all...]
H A Dcurl_mime_type.md15 curl_mime_type - set a mime part's content type
22 CURLcode curl_mime_type(curl_mimepart *part, const char *mimetype);
27 curl_mime_type(3) sets a mime part's content type.
29 *part* is the part's handle to assign the content type to.
34 The mime type string is copied into the part, thus the associated storage may
35 safely be released or reused after call. Setting a part's type multiple times
48 - For a multipart part, multipart/mixed.
58 curl_mimepart *part;
65 /* add a part */
[all...]
H A Dcurl_mime_name.md15 curl_mime_name - set a mime part's name
22 CURLcode curl_mime_name(curl_mimepart *part, const char *name);
27 curl_mime_name(3) sets a mime part's name. This is the way HTTP form
30 *part* is the part's handle to assign a name to.
34 The name string is copied into the part, thus the associated storage may
35 safely be released or reused after call. Setting a part's name multiple times
37 reset the name of a part by setting *name* to NULL.
45 curl_mimepart *part;
52 /* add a part */
[all...]
/third_party/typescript/tests/baselines/reference/
H A DconditionalTypes1.types214 interface Part {
221 subparts: Part[];
222 >subparts : Part[]
241 type T30 = FunctionProperties<Part>;
244 type T31 = NonFunctionProperties<Part>;
245 >T31 : { id: number; name: string; subparts: Part[]; }
336 function f10(part: DeepReadonly<Part>) {
337 >f10 : (part: DeepReadonly<Part>)
[all...]
/third_party/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
H A DMiniMessageFormatter.java20 import com.ibm.icu.text.MessagePattern.Part;
97 Part part=msg.getPart(i); in format()
98 Part.Type type=part.getType(); in format()
99 int index=part.getIndex(); in format()
101 if(type==Part.Type.MSG_LIMIT) { in format()
104 if(type==Part.Type.SKIP_SYNTAX || type==Part.Type.INSERT_CHAR) { in format()
105 prevIndex=part in format()
[all...]
/third_party/ffmpeg/libavutil/
H A Dlog.c5 * This file is part of FFmpeg.
295 AVBPrint part[4], int *print_prefix, int type[2]) in format_line()
298 av_bprint_init(part+0, 0, AV_BPRINT_SIZE_AUTOMATIC); in format_line()
299 av_bprint_init(part+1, 0, AV_BPRINT_SIZE_AUTOMATIC); in format_line()
300 av_bprint_init(part+2, 0, AV_BPRINT_SIZE_AUTOMATIC); in format_line()
301 av_bprint_init(part+3, 0, 65536); in format_line()
309 av_bprintf(part+0, "[%s @ %p] ", in format_line()
314 av_bprintf(part+1, "[%s @ %p] ", in format_line()
320 av_bprintf(part+2, "[%s] ", get_level_str(level)); in format_line()
322 av_vbprintf(part in format_line()
294 format_line(void *avcl, int level, const char *fmt, va_list vl, AVBPrint part[4], int *print_prefix, int type[2]) format_line() argument
339 AVBPrint part[4]; av_log_format_line2() local
353 AVBPrint part[4]; av_log_default_callback() local
[all...]
/third_party/curl/tests/data/
H A Dtest57153 rtp: part 2 channel 1 size 10
54 rtp: part 2 channel 0 size 500
55 rtp: part 2 channel 0 size 196
56 rtp: part 2 channel 0 size 124
57 rtp: part 2 channel 0 size 824
58 rtp: part 2 channel 0 size 18 size_err -6
59 rtp: part 3 channel 1 size 10
60 rtp: part 3 channel 0 size 50
61 rtp: part 4 channel 0 size 798
62 rtp: part
[all...]
/third_party/curl/src/
H A Dtool_formparse.c11 * you should have received as part of this distribution. The terms
179 /* Mime part callbacks for stdin. */
244 curl_mimepart *part = NULL; in tool2curlparts() local
251 part = curl_mime_addpart(mime); in tool2curlparts()
252 if(!part) in tool2curlparts()
261 ret = curl_mime_subparts(part, submime); in tool2curlparts()
268 ret = curl_mime_data(part, m->data, CURL_ZERO_TERMINATED); in tool2curlparts()
273 ret = curl_mime_filedata(part, m->data); in tool2curlparts()
275 ret = curl_mime_filename(part, NULL); in tool2curlparts()
283 ret = curl_mime_data_cb(part, in tool2curlparts()
733 struct tool_mime *part = NULL; formparse() local
[all...]
/third_party/node/deps/v8/tools/system-analyzer/view/
H A Dcode-panel.mjs174 for (let part of parts) {
175 if (kFullAddressRegexp.test(part)) {
176 lineAddress = parseInt(part);
227 parts.forEach(part => {
228 const fullMatch = part.match(kFullAddressRegexp);
233 } else if (kRelativeAddressRegexp.test(part)) {
234 this.outgoing.push(this._toAbsoluteAddress(part));
251 .map(part => this._formatRegisterPart(part))
255 .map((part, inde
[all...]
/third_party/curl/tests/
H A Dgetpart.pm11 # you should have received as part of this distribution. The terms
55 # Normalize the part function arguments for proper caching. This includes the
90 # if $part is undefined (ie only one argument) then
93 my ($section, $part)=@_;
98 # print "Section: $section, part: $part\n";
105 if((1 ==$inside) && ( ($_ =~ /^ *\<$part ([^>]*)/) ||
106 !(defined($part)) )
118 # detect end of section when part wasn't found
122 elsif((2 ==$inside) && ($_ =~ /^ *\<\/$part/)) {
[all...]

Completed in 12 milliseconds

12345678910>>...962