/third_party/curl/docs/libcurl/ |
H A D | mksymbolsmanpage.pl | 287 my ($symbol, $rest)=($1,$2); 289 if($rest =~ s/^([0-9.]*) *//) { 292 if($rest =~ s/^([0-9.]*) *//) { 295 if($rest =~ s/^- *([0-9.]*)//) {
|
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/ |
H A D | v8_mock.js | 161 DataView.prototype.setFloat32 = function(offset, value, ...rest) { 162 origSetFloat32.call(this, offset, deNaNify(value), ...rest); 165 DataView.prototype.setFloat64 = function(offset, value, ...rest) { 166 origSetFloat64.call(this, offset, deNaNify(value), ...rest);
|
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/ |
H A D | file.js | 74 const { version, length, hashes, ...rest } = data; 88 unrecognizedFields: rest, 162 const { length, hashes, ...rest } = data; 173 unrecognizedFields: rest,
|
/third_party/python/Include/internal/ |
H A D | pycore_blocks_output_buffer.h | 212 // if (rest == 0), should not grow the buffer. in _BlocksOutputBuffer_Grow() 213 Py_ssize_t rest = buffer->max_length - buffer->allocated; in _BlocksOutputBuffer_Grow() local 214 assert(rest > 0); in _BlocksOutputBuffer_Grow() 217 if (block_size > rest) { in _BlocksOutputBuffer_Grow() 218 block_size = rest; in _BlocksOutputBuffer_Grow()
|
/third_party/rust/crates/minimal-lexical/etc/correctness/rng-tests/ |
H A D | f32.rs | 16 let (output, rest) = parse_float::<f32>(printed.as_bytes()); in main() 18 assert_eq!(rest, b""); in main()
|
H A D | smoke.rs | 22 let (output, rest) = parse_float::<f64>(printed.as_bytes()); in main() 24 assert_eq!(rest, b""); in main()
|
/third_party/typescript/tests/baselines/reference/tsbuild/outfile-concat/ |
H A D | emitHelpers-in-only-one-dependency-project.js | 75 const { b, ...rest } = { a: 10, b: 30, yy: 30 }; 241 > const { b, ...rest } = { a: 10, b: 30, yy: 30 }; 304 var _a = { a: 10, b: 30, yy: 30 }, b = _a.b, rest = __rest(_a, ["b"]);
489 >>> var _a = { a: 10, b: 30, yy: 30 }, b = _a.b, rest = __rest(_a, ["b"]);
518 3 > { b, ...rest } =
536 21> rest
538 23> { b, ...rest }
686 {"bundle":{"commonSourceDirectory":"../second","sourceFiles":["../second/second_part1.ts","../second/second_part2.ts"],"js":{"sections":[{"pos":0,"end":500,"kind":"emitHelpers","data":"typescript:rest"},{"pos":502,"end":906,"kind":"text"}],"sources":{"helpers":["typescript:rest"]},"mapHash":"-21017865726-{\"version\":3,\"file\":\"second-output.js\",\"sourceRoot\":\"\",\"sources\":[\"../second/second_part1.ts\",\"../second/second_part2.ts\"],\"names\":[],\"mappings\":\";;;;;;;;;;;AAIA,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;AACD,SAAS,yBAAyB;IAClC,IAAM,KAAiB,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAvC,CAAC,OAAA,EAAK,IAAI,cAAZ,KAAc,CAA2B,CAAC;AAChD,CAAC;ACbD;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC\"}","hash":"-42811698101-var __rest = (this && this.__rest) || function (s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n};\r\nvar N;\r\n(function (N) {\r\n function f() {\r\n console.log('testing');\r\n }\r\n f();\r\n})(N || (N = {}));\r\nfunction forsecondsecond_part1Rest() {\r\n var _a = { a: 10, b: 30, yy: 30 }, b = _a.b, rest [all...] |
/third_party/curl/tests/ |
H A D | test1175.pl | 57 my ($symbol, $added, $rest) = ($1,$2,$3); 58 if($rest =~ /^([0-9.]+)/) {
|
/third_party/curl/docs/examples/ |
H A D | version-check.pl | 47 my ($sym, $rest)=($1, $2); 48 my @a=split(/ +/, $rest);
|
/third_party/python/Tools/scripts/ |
H A D | fixps.py | 22 rest = f.read() 28 f.write(rest)
|
/third_party/typescript/tests/baselines/reference/ |
H A D | destructuringTuple.js | 4 const [a, b, c, ...rest] = tuple; 19 var a = tuple[0], b = tuple[1], c = tuple[2], rest = tuple.slice(3);
|
H A D | functionWithUseStrictAndSimpleParameterList_es2016.js | 16 function rest(...args: any[]) { function 64 function rest(...args) {
|
H A D | nonPrimitiveAccessProperty.js | 7 var { ...rest } = a; // ok 26 var rest = __rest(a, []); // ok
variable
|
H A D | unionTypeCallSignatures4.js | 4 type F3 = (a: string, ...rest: string[]) => void; 5 type F4 = (a: string, b?: string, ...rest: string[]) => void;
|
H A D | restParameterWithBindingPattern3.js | 10 function e(...{0: a = 1, 1: b = true, ...rest: rest}: [boolean, string, number]) { }
57 var _b = _a[0], a = _b === void 0 ? 1 : _b, _c = _a[1], b = _c === void 0 ? true : _c, rest = __rest(_a, ["0", "1"]);
|
/third_party/python/Lib/ |
H A D | ftplib.py | 336 def ntransfercmd(self, cmd, rest=None): 346 Optional `rest' argument can be a string that is sent as the 357 if rest is not None: 358 self.sendcmd("REST %s" % rest) 375 if rest is not None: 376 self.sendcmd("REST %s" % rest) 391 def transfercmd(self, cmd, rest=None): 393 return self.ntransfercmd(cmd, rest)[0] 421 def retrbinary(self, cmd, callback, blocksize=8192, rest=None): 430 rest [all...] |
/third_party/node/deps/npm/node_modules/normalize-package-data/lib/ |
H A D | fixer.js | 349 var rest = spec.slice(1).split('/') 350 if (rest.length !== 2) { 354 return rest[0] && rest[1] && 355 rest[0] === encodeURIComponent(rest[0]) && 356 rest[1] === encodeURIComponent(rest[1])
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | AlignOf.h | 25 AlignerImpl<Ts...> rest; member in llvm::detail::AlignerImpl 36 SizerImpl<Ts...> rest; member
|
/third_party/rust/crates/syn/src/ |
H A D | ext.rs | 88 Some((ident, rest)) => Ok((ident, rest)), in parse_any()
|
/foundation/graphic/graphic_3d/lume/LumeBase/api/base/util/ |
H A D | base64_encode.h | 68 uint8_t rest[3] { 0, 0, 0 }; in EncodeTail() 69 FillTriplet(rest, src, left); in EncodeTail() 70 Detail::ToBase64(rest, dst, left); in EncodeTail() 91 // Add the rest of the bytes that was not divisible by three in Base64Encode()
|
/foundation/filemanagement/storage_service/services/storage_daemon/libfscrypt/src/ |
H A D | init_utils.c | 106 char *rest = NULL;
in SplitStringExt() local 107 char *p = strtok_r(buffer, del, &rest);
in SplitStringExt() 137 p = strtok_r(NULL, del, &rest);
in SplitStringExt()
|
/third_party/ffmpeg/libavformat/ |
H A D | subfile.c | 103 int64_t rest = c->end - c->pos; in subfile_read() local 106 if (rest <= 0) in subfile_read() 108 size = FFMIN(size, rest); in subfile_read()
|
/third_party/icu/tools/colprobe/ |
H A D | extractCollationData.pl | 164 my $rest = $'; 165 for ($j = 0; $j < length($rest); $j++) { 166 my $char = substr($rest, $j, 1);
|
/third_party/skia/fuzz/ |
H A D | Fuzz.h | 56 void next(Arg* first, Args... rest); 100 inline void Fuzz::next(Arg* first, Args... rest) { in next() argument 102 this->next(rest...); in next()
|
/third_party/node/deps/npm/node_modules/jackspeak/dist/esm/ |
H A D | index.js | 84 const { default: def, validate: val, ...rest } = o; 92 ...rest, 100 const { default: def, validate: val, ...rest } = o; 108 ...rest, 116 const { default: def, validate: val, ...rest } = o; 124 ...rest, 132 const { default: def, validate: val, ...rest } = o; 140 ...rest, 148 const { hint, default: def, validate: val, ...rest } = o; 159 ...rest, [all...] |