Home
last modified time | relevance | path

Searched full:part (Results 76 - 100 of 23372) sorted by relevance

12345678910>>...935

/third_party/curl/tests/libtest/
H A Dlib666.c11 * you should have received as part of this distribution. The terms
35 curl_mimepart *part; in test() local
66 part = curl_mime_addpart(mime); in test()
67 if(!part) { in test()
72 res = curl_mime_name(part, "upfile"); in test()
77 res = curl_mime_filename(part, "myfile.txt"); in test()
82 res = curl_mime_data(part, buffer, sizeof(buffer)); in test()
87 res = curl_mime_encoder(part, "binary"); in test()
H A Dlib667.c11 * you should have received as part of this distribution. The terms
61 curl_mimepart *part; in test() local
67 * Check proper handling of mime encoder feature when the part read callback in test()
93 part = curl_mime_addpart(mime); in test()
94 curl_mime_name(part, "field"); in test()
95 curl_mime_encoder(part, "base64"); in test()
97 curl_mime_data_cb(part, (curl_off_t) -1, read_callback, NULL, NULL, &pooh); in test()
/third_party/curl/docs/cmdline-opts/
H A Dwrite-out.md227 The scheme part of the URL that was fetched. (Added in 8.1.0)
230 The user part of the URL that was fetched. (Added in 8.1.0)
233 The password part of the URL that was fetched. (Added in 8.1.0)
236 The options part of the URL that was fetched. (Added in 8.1.0)
239 The host part of the URL that was fetched. (Added in 8.1.0)
247 The path part of the URL that was fetched. (Added in 8.1.0)
250 The query part of the URL that was fetched. (Added in 8.1.0)
253 The fragment part of the URL that was fetched. (Added in 8.1.0)
256 The zone id part of the URL that was fetched. (Added in 8.1.0)
259 The scheme part o
[all...]
/third_party/curl/tests/data/
H A Dtest1538161 u2: An invalid 'part' argument was passed as argument
168 u9: An unknown part ID was passed to a URL API function
169 u10: No scheme part in the URL
170 u11: No user part in the URL
171 u12: No password part in the URL
172 u13: No options part in the URL
173 u14: No host part in the URL
174 u15: No port part in the URL
175 u16: No query part in the URL
176 u17: No fragment part i
[all...]
/third_party/curl/docs/libcurl/
H A Dcurl_formadd.md48 posts. Each part consists of at least a NAME and a CONTENTS part. If the part
61 followed by a string which provides the *name* of this part. libcurl
69 followed by a string which provides the *name* of this part. libcurl uses the
77 followed by a pointer to the contents of this part, the actual data to send
86 followed by a pointer to the contents of this part, the actual data to send
117 as data in this part. This part does *not* automatically become a file
118 upload part simpl
[all...]
H A Dcurl_mime_init.md32 handle's part using curl_mime_subparts(3).
34 *easy_handle* is used for part separator randomization and error
38 send a multi-part email with SMTP or upload such an email to an IMAP server.
47 curl_mimepart *part;
51 part = curl_mime_addpart(mime);
52 curl_mime_data(part, "This is the field data", CURL_ZERO_TERMINATED);
53 curl_mime_name(part, "data");
/third_party/curl/src/
H A Dtool_formparse.h13 * you should have received as part of this distribution. The terms
42 toolmimekind kind; /* Part kind. */
47 char *name; /* Part name. */
48 char *filename; /* Part's filename. */
49 char *type; /* Part's mime type. */
50 char *encoder; /* Part's requested encoding. */
53 struct tool_mime *subparts; /* Part's subparts. */
/third_party/python/Objects/stringlib/
H A Dstringlib_find_two_way_notes.txt29 1. match the right part
31 2. then match the left part.
37 -------- Matching the right part --------
39 We first scan the right part of the needle to check if it matches the
106 -------- Matching the left part --------
108 Once we have ensured the right part matches, we scan the left part
146 at each alignment position. If a mismatch occurs in the right part,
217 - Matched entire right part
218 - Mismatch at left part
[all...]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader.c52 ps->selector->info.num_inputs + (ps->key.ps.part.prolog.color_two_side ? num_colors : 0); in si_get_ps_num_interp()
513 /* LS return values are inputs to the TCS main shader part. */ in si_init_shader_args()
1179 fprintf(file, "\n%s - main shader part - LLVM IR:\n\n", si_get_shader_name(shader)); in si_shader_dump()
1242 si_dump_shader_key_vs(key, &key->ge.part.vs.prolog, "part.vs.prolog", f); in si_dump_shader_key()
1251 si_dump_shader_key_vs(key, &key->ge.part.tcs.ls_prolog, "part.tcs.ls_prolog", f); in si_dump_shader_key()
1253 fprintf(f, " part.tcs.epilog.prim_mode = %u\n", key->ge.part.tcs.epilog.prim_mode); in si_dump_shader_key()
1269 key->ge.part in si_dump_shader_key()
[all...]
H A Dsi_shader_llvm.c421 * Given a list of shader part functions, build a wrapper function that
449 * first part in terms of SGPRs and VGPRs, but we use the types of the in si_build_wrapper_function()
450 * main part to get the right types. This is relevant for the in si_build_wrapper_function()
533 * a previous part. in si_build_wrapper_function()
579 for (unsigned part = 0; part < num_parts; ++part) { in si_build_wrapper_function()
583 unsigned num_params = LLVMCountParams(parts[part]); in si_build_wrapper_function()
587 if (si_is_multi_part_shader(ctx->shader) && part == 0) { in si_build_wrapper_function()
603 /* Derive arguments for the next part fro in si_build_wrapper_function()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
H A DVPlan.h3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
86 unsigned Part; member
136 /// \return True if the map has a vector entry for \p Key and \p Part.
137 bool hasVectorValue(Value *Key, unsigned Part) const { in hasVectorValue()
138 assert(Part < UF && "Queried Vector Part is too large."); in hasVectorValue()
143 return Entry[Part] != nullptr; in hasVectorValue()
153 assert(Instance.Part < UF && "Queried Scalar Part is too large.");
159 assert(Entry[Instance.Part]
[all...]
H A DVPlan.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
164 !(State->Instance->Part == 0 && State->Instance->Lane == 0); in execute()
239 // and exit blocks as part of the VPlan. In the VPlan-native path, skip in execute()
262 for (unsigned Part = 0, UF = State->UF; Part < UF; ++Part) { in execute()
263 State->Instance->Part = Part; in execute()
311 unsigned Part) { in generateInstruction()
315 Value *A = State.get(getOperand(0), Part); in generateInstruction()
310 generateInstruction(VPTransformState &State, unsigned Part) generateInstruction() argument
[all...]
/third_party/curl/include/curl/
H A Durlapi.h13 * you should have received as part of this distribution. The terms
95 #define CURLU_APPENDQUERY (1<<8) /* append a form style part */
125 * curl_url_get() extracts a specific part of the URL from a CURLU
130 char **part, unsigned int flags);
133 * curl_url_set() sets a specific part of the URL in a CURLU handle. Returns
135 * a part string, clears that part.
138 const char *part, unsigned int flags);
/third_party/ltp/testcases/kernel/fs/fs_maim/
H A Dmaimparts39 # part is the number of partitions to split the drive into (max is 4)
64 open(CONFIG,">/tmp/part.cfg") ||
65 die "Couldn't create /tmp/part.cfg\n";
72 `sfdisk --force /dev/$target < /tmp/part.cfg`;
76 $part[$k] = sprintf("%s%d",$target,$k);
80 $tmp = `./backbeat /dev/$part[1] /dev/$part[2] /dev/$part[3]`;
/third_party/node/deps/minimatch/src/dist/cjs/
H A Dast.js105 for (const part of n.#parts) {
107 if (typeof part === 'string') {
108 throw new Error('string part in extglob AST??');
111 part.copyIn(pp.#parts[i]);
126 throw new Error('invalid part: ' + p);
178 copyIn(part) {
179 if (typeof part === 'string')
180 this.push(part);
182 this.push(part.clone(this));
244 let part
[all...]
/third_party/node/deps/npm/node_modules/minimatch/dist/cjs/
H A Dast.js105 for (const part of n.#parts) {
107 if (typeof part === 'string') {
108 throw new Error('string part in extglob AST??');
111 part.copyIn(pp.#parts[i]);
126 throw new Error('invalid part: ' + p);
178 copyIn(part) {
179 if (typeof part === 'string')
180 this.push(part);
182 this.push(part.clone(this));
244 let part
[all...]
/third_party/node/deps/minimatch/src/dist/mjs/
H A Dast.js102 for (const part of n.#parts) {
104 if (typeof part === 'string') {
105 throw new Error('string part in extglob AST??');
108 part.copyIn(pp.#parts[i]);
123 throw new Error('invalid part: ' + p);
175 copyIn(part) {
176 if (typeof part === 'string')
177 this.push(part);
179 this.push(part.clone(this));
241 let part
[all...]
/third_party/node/deps/npm/node_modules/minimatch/dist/mjs/
H A Dast.js102 for (const part of n.#parts) {
104 if (typeof part === 'string') {
105 throw new Error('string part in extglob AST??');
108 part.copyIn(pp.#parts[i]);
123 throw new Error('invalid part: ' + p);
175 copyIn(part) {
176 if (typeof part === 'string')
177 this.push(part);
179 this.push(part.clone(this));
241 let part
[all...]
/third_party/alsa-lib/src/control/
H A Dcontrol.c402 * too little space was allocated, only a part of the elements will be
1804 * \brief Get interface part of CTL element identifier for an element related event
1806 * \return interface part of element identifier
1816 * \brief Get device part of CTL element identifier for an element related event
1818 * \return device part of element identifier
1828 * \brief Get subdevice part of CTL element identifier for an element related event
1830 * \return subdevice part of element identifier
1840 * \brief Get name part of CTL element identifier for an element related event
1842 * \return name part of element identifier
1852 * \brief Get index part o
[all...]
/third_party/curl/packages/OS400/
H A Dccsidcurl.c11 * you should have received as part of this distribution. The terms
1367 mime_string_call(curl_mimepart *part, const char *string, unsigned int ccsid, in mime_string_call() argument
1368 CURLcode (*mimefunc)(curl_mimepart *part, const char *string)) in mime_string_call()
1374 return mimefunc(part, string); in mime_string_call()
1379 result = mimefunc(part, s); in mime_string_call()
1385 curl_mime_name_ccsid(curl_mimepart *part, const char *name, unsigned int ccsid) in curl_mime_name_ccsid() argument
1387 return mime_string_call(part, name, ccsid, curl_mime_name); in curl_mime_name_ccsid()
1391 curl_mime_filename_ccsid(curl_mimepart *part, in curl_mime_filename_ccsid() argument
1394 return mime_string_call(part, filename, ccsid, curl_mime_filename); in curl_mime_filename_ccsid()
1398 curl_mime_type_ccsid(curl_mimepart *part, in curl_mime_type_ccsid() argument
1405 curl_mime_encoder_ccsid(curl_mimepart *part, const char *encoding, unsigned int ccsid) curl_mime_encoder_ccsid() argument
1412 curl_mime_filedata_ccsid(curl_mimepart *part, const char *filename, unsigned int ccsid) curl_mime_filedata_ccsid() argument
1419 curl_mime_data_ccsid(curl_mimepart *part, const char *data, size_t datasize, unsigned int ccsid) curl_mime_data_ccsid() argument
1437 curl_url_get_ccsid(CURLU *handle, CURLUPart what, char **part, unsigned int flags, unsigned int ccsid) curl_url_get_ccsid() argument
1461 curl_url_set_ccsid(CURLU *handle, CURLUPart what, const char *part, unsigned int flags, unsigned int ccsid) curl_url_set_ccsid() argument
[all...]
/third_party/python/Doc/includes/
H A Demail-unpack.py34 for part in msg.walk():
36 if part.get_content_maintype() == 'multipart':
40 filename = part.get_filename()
42 ext = mimetypes.guess_extension(part.get_content_type())
46 filename = f'part-{counter:03d}{ext}'
49 fp.write(part.get_payload(decode=True))
/third_party/toybox/toys/pending/
H A Dfdisk.c57 struct partition *part; member
73 {0x3c, "Part.Magic recovery"}, {0x41, "PPC PReP Boot"}, {0x42, "SFS"},
213 px = pe->part; in check_order()
241 q = p = partitions[idx].part; in read_ebr()
254 partitions[num_parts].part = part_offset(sec_buf, 0); in read_ebr()
304 pe->part = part_offset(MBRbuf, i); in reset_boot()
388 if (IS_EXTENDED(partitions[i].part->sys_ind)) { in read_mbr()
468 p = partitions[i].part; in list_partitions()
520 num_parts = 4; //max of primaries in a part table in init_members()
525 partitions[i].part in init_members()
[all...]
/third_party/skia/tests/
H A DPathOpsTestCommon.cpp123 SkDCubic part = cubic->subDivide(0, inflectT[0]); in toQuadraticTs() local
124 addTs(part, precision, 0, inflectT[0], ts); in toQuadraticTs()
127 part = cubic->subDivide(inflectT[idx], inflectT[idx + 1]); in toQuadraticTs()
128 addTs(part, precision, inflectT[idx], inflectT[idx + 1], ts); in toQuadraticTs()
130 part = cubic->subDivide(inflectT[last], 1); in toQuadraticTs()
131 addTs(part, precision, inflectT[last], 1, ts); in toQuadraticTs()
150 SkDCubic part = cubic.subDivide(tStart, tEnd); in CubicToQuads()
151 SkDQuad quad = part.toQuad(); in CubicToQuads()
229 SkDCubic part = cubic.subDivide(lo, hi); in CubicPathToSimple()
231 cPts[0] = part[ in CubicPathToSimple()
[all...]
/third_party/typescript/tests/cases/conformance/types/conditional/
H A DconditionalTypes1.ts89 interface Part {
92 subparts: Part[];
102 type T30 = FunctionProperties<Part>;
103 type T31 = NonFunctionProperties<Part>;
134 function f10(part: DeepReadonly<Part>) {
135 let name: string = part.name;
136 let id: number = part.subparts[0].id;
137 part.id = part
[all...]
/third_party/skia/build/fuchsia/
H A Dsdk.gni238 foreach(part, meta_json.parts) {
242 part_meta = part.meta
249 if (part.type == "cc_source_library") {
250 if (part.type == enabled_part) {
255 } else if (part.type == "sysroot") {
256 if (part.type == enabled_part) {
261 } else if (part.type == "fidl_library") {
262 if (part.type == enabled_part) {
267 } else if (part.type == "cc_prebuilt_library") {
268 if (part
[all...]

Completed in 25 milliseconds

12345678910>>...935