/third_party/typescript/tests/baselines/reference/ |
H A D | tsxSpreadChildren.js | 12 todo: string; 17 function Todo(prop: { key: number, todo: string }) { 18 return <div>{prop.key.toString() + prop.todo}</div>; 22 {...todos.map(todo => <Todo key={todo.id} todo={todo.todo}/>)} 31 return <div>{prop.key.toString() + prop.todo}</div>;
36 {...todos.map(function (todo) { retur [all...] |
H A D | tsxSpreadChildrenInvalidType(jsx=react,target=es2015).js | 12 todo: string; 17 function Todo(prop: { key: number, todo: string }) { 18 return <div>{prop.key.toString() + prop.todo}</div>; 22 {...<Todo key={todos[0].id} todo={todos[0].todo} />} 28 {...(<Todo key={todos[0].id} todo={todos[0].todo} /> as any)} 37 return React.createElement("div", null, prop.key.toString() + prop.todo);
40 return React.createElement("div", null, ...React.createElement(Todo, { key: todos[0].id, todo: todos[0].todo }));
[all...] |
H A D | tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es2015).js | 12 todo: string; 17 function Todo(prop: { key: number, todo: string }) { 18 return <div>{prop.key.toString() + prop.todo}</div>; 22 {...<Todo key={todos[0].id} todo={todos[0].todo} />} 28 {...(<Todo key={todos[0].id} todo={todos[0].todo} /> as any)} 38 return _jsx("div", { children: prop.key.toString() + prop.todo });
41 return _jsxs("div", { children: [..._jsx(Todo, { todo: todos[0].todo }, todo [all...] |
H A D | tsxSpreadChildrenInvalidType(jsx=react,target=es5).js | 12 todo: string; 17 function Todo(prop: { key: number, todo: string }) { 18 return <div>{prop.key.toString() + prop.todo}</div>; 22 {...<Todo key={todos[0].id} todo={todos[0].todo} />} 28 {...(<Todo key={todos[0].id} todo={todos[0].todo} /> as any)} 57 return React.createElement("div", null, prop.key.toString() + prop.todo);
61 return React.createElement.apply(React, __spreadArray(["div", null], React.createElement(Todo, { key: todos[0].id, todo: todos[0].todo }), fals [all...] |
H A D | tsxSpreadChildrenInvalidType(jsx=react-jsx,target=es5).js | 12 todo: string; 17 function Todo(prop: { key: number, todo: string }) { 18 return <div>{prop.key.toString() + prop.todo}</div>; 22 {...<Todo key={todos[0].id} todo={todos[0].todo} />} 28 {...(<Todo key={todos[0].id} todo={todos[0].todo} /> as any)} 60 return (0, jsx_runtime_1.jsx)("div", { children: prop.key.toString() + prop.todo });
64 return (0, jsx_runtime_1.jsxs)("div", { children: __spreadArray([], (0, jsx_runtime_1.jsx)(Todo, { todo: todos[0].todo }, todo [all...] |
/third_party/node/benchmark/http/ |
H A D | _chunky_http_client.js | 15 let todo = []; 23 todo = []; 24 todo.push('GET / HTTP/1.1'); 25 todo.push('Host: localhost'); 26 todo.push('Connection: keep-alive'); 27 todo.push('Accept: text/html,application/xhtml+xml,' + 29 todo.push('User-Agent: Mozilla/5.0 (X11; Linux x86_64) ' + 32 todo.push('Accept-Encoding: gzip, deflate, sdch'); 33 todo.push('Accept-Language: en-US,en;q=0.8'); 37 todo [all...] |
/third_party/mbedtls/programs/test/ |
H A D | benchmark.c | 522 todo_list todo; in main() local 539 memset(&todo, 1, sizeof(todo)); in main() 541 memset(&todo, 0, sizeof(todo)); in main() 545 todo.md5 = 1; in main() 547 todo.ripemd160 = 1; in main() 549 todo.sha1 = 1; in main() 551 todo.sha256 = 1; in main() 553 todo in main() [all...] |
/third_party/node/deps/openssl/openssl/apps/ |
H A D | list.c | 1553 } todo = { 0, }; in list_main() local 1572 todo.commands = 1; in list_main() 1575 todo.digest_commands = 1; in list_main() 1578 todo.digest_algorithms = 1; in list_main() 1581 todo.kdf_algorithms = 1; in list_main() 1584 todo.random_instances = 1; in list_main() 1587 todo.random_generators = 1; in list_main() 1590 todo.mac_algorithms = 1; in list_main() 1593 todo.cipher_commands = 1; in list_main() 1596 todo in list_main() [all...] |
/third_party/openssl/apps/ |
H A D | list.c | 1543 } todo = { 0, }; in list_main() local 1562 todo.commands = 1; in list_main() 1565 todo.digest_commands = 1; in list_main() 1568 todo.digest_algorithms = 1; in list_main() 1571 todo.kdf_algorithms = 1; in list_main() 1574 todo.random_instances = 1; in list_main() 1577 todo.random_generators = 1; in list_main() 1580 todo.mac_algorithms = 1; in list_main() 1583 todo.cipher_commands = 1; in list_main() 1586 todo in list_main() [all...] |
/third_party/node/deps/openssl/openssl/crypto/chacha/ |
H A D | chacha_enc.c | 77 size_t todo, i; in ChaCha20_ctr32() local 108 todo = sizeof(buf); in ChaCha20_ctr32() 109 if (len < todo) in ChaCha20_ctr32() 110 todo = len; in ChaCha20_ctr32() 114 for (i = 0; i < todo; i++) in ChaCha20_ctr32() 116 out += todo; in ChaCha20_ctr32() 117 inp += todo; in ChaCha20_ctr32() 118 len -= todo; in ChaCha20_ctr32()
|
/third_party/openssl/crypto/chacha/ |
H A D | chacha_enc.c | 77 size_t todo, i; in ChaCha20_ctr32() local 108 todo = sizeof(buf); in ChaCha20_ctr32() 109 if (len < todo) in ChaCha20_ctr32() 110 todo = len; in ChaCha20_ctr32() 114 for (i = 0; i < todo; i++) in ChaCha20_ctr32() 116 out += todo; in ChaCha20_ctr32() 117 inp += todo; in ChaCha20_ctr32() 118 len -= todo; in ChaCha20_ctr32()
|
/third_party/toybox/scripts/ |
H A D | mkstatus.py | 78 # Sort/annotate done, pending, and todo item lists 83 todo=[] variable 93 else: todo.append(out) 107 outfile.write("<a name=todo><h2><a href=#todo>Not started yet</a></h2><blockquote><p>%s</p></blockquote>\n" % "\n".join(todo)) 111 outfile.write("<hr><h2>Categories of remaining todo items</h2>") 114 todo = [] variable 118 if j in pending: todo.append('<strike>%s</strike>' % j) 119 else: todo [all...] |
/third_party/elfutils/tests/ |
H A D | arextract.c | 39 size_t todo; in main() local 106 todo = arhdr->ar_size; in main() 107 while (todo > 0) in main() 110 ssize_t n = pread (fd, buf, MIN (sizeof buf, todo), offset); in main() 121 todo -= n; in main() 125 if (todo != 0) in main()
|
/third_party/ltp/testcases/kernel/mce-test/tsrc/erst-inj/ |
H A D | erst-inject.c | 202 int todo = ERST_MAX; in main() local 215 todo = ERST_POLL; in main() 218 todo = ERST_INJECT; in main() 222 todo = ERST_CLEAR; in main() 226 todo = ERST_COUNT; in main() 234 switch (todo) { in main()
|
/third_party/ltp/testcases/kernel/mce-test/hwpoison/erst-inj/ |
H A D | erst-inject.c | 202 int todo = ERST_MAX; in main() local 215 todo = ERST_POLL; in main() 218 todo = ERST_INJECT; in main() 222 todo = ERST_CLEAR; in main() 226 todo = ERST_COUNT; in main() 234 switch (todo) { in main()
|
/third_party/node/deps/uv/src/ |
H A D | idna.c | 120 unsigned todo; in uv__idna_toascii_label() local 125 todo = 0; in uv__idna_toascii_label() 139 todo++; in uv__idna_toascii_label() 143 if (todo > 0) { in uv__idna_toascii_label() 167 if (todo == 0) in uv__idna_toascii_label() 180 while (todo > 0) { in uv__idna_toascii_label() 260 todo--; in uv__idna_toascii_label()
|
/third_party/toybox/lib/ |
H A D | xwrap.c | 531 struct string_list *todo, *done = 0; in xabspath() local 539 splitpath(path, splitpath(temp, &todo)); in xabspath() 541 } else splitpath(path, &todo); in xabspath() 543 // Iterate through path components in todo, prepend processed ones to done. in xabspath() 544 while (todo) { in xabspath() 545 struct string_list *new = llist_pop(&todo), **tail; in xabspath() 582 if (errno == EINVAL && !todo) break; in xabspath() 587 if (errno != EINVAL && (exact || todo)) goto error; in xabspath() 590 if (fd == -1 && (exact || todo || errno != ENOENT)) goto error; in xabspath() 611 *tail = todo; in xabspath() [all...] |
/third_party/rust/crates/glob/src/ |
H A D | lib.rs | 99 todo: Vec<Result<(PathBuf, usize), GlobError>>, 231 todo: Vec::new(), in glob_with() 256 let todo = Vec::new(); in glob_with() 262 todo, in glob_with() 332 // the todo buffer hasn't been initialized yet, so it's done at this in next() 341 fill_todo(&mut self.todo, &self.dir_patterns, 0, &scope, self.options); in next() 346 if self.dir_patterns.is_empty() || self.todo.is_empty() { in next() 350 let (path, mut idx) = match self.todo.pop().unwrap() { in next() 379 &mut self.todo, in next() 427 &mut self.todo, in next() [all...] |
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | nodes.py | 191 todo = deque([self]) 192 while todo: 193 node = todo.popleft() 196 todo.extend(node.iter_child_nodes()) 201 todo = deque([self]) 202 while todo: 203 node = todo.popleft() 207 todo.extend(node.iter_child_nodes()) 212 todo = deque([self]) 213 while todo [all...] |
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | nodes.py | 200 todo = deque([self]) 201 while todo: 202 node = todo.popleft() 205 todo.extend(node.iter_child_nodes()) 210 todo = deque([self]) 211 while todo: 212 node = todo.popleft() 216 todo.extend(node.iter_child_nodes()) 221 todo = deque([self]) 222 while todo [all...] |
/third_party/skia/third_party/externals/jinja2/ |
H A D | nodes.py | 191 todo = deque([self]) 192 while todo: 193 node = todo.popleft() 196 todo.extend(node.iter_child_nodes()) 201 todo = deque([self]) 202 while todo: 203 node = todo.popleft() 207 todo.extend(node.iter_child_nodes()) 212 todo = deque([self]) 213 while todo [all...] |
/third_party/gptfdisk/ |
H A D | gptpart.cc | 208 int todo ; local 211 todo = 0 ; 219 todo = 1 ; 223 todo = 2 ; 227 todo = 3 ; 229 while ( todo > 0 ) { 241 todo -- ;
|
/third_party/node/lib/internal/test_runner/reporter/ |
H A D | tap.js | 35 yield reportTest(data.nesting, data.testNumber, 'not ok', data.name, data.skip, data.todo); 40 yield reportTest(data.nesting, data.testNumber, 'ok', data.name, data.skip, data.todo); 67 function reportTest(nesting, testNumber, status, name, skip, todo) { 76 } else if (todo !== undefined) { 77 line += ` # TODO${typeof todo === 'string' && todo.length ? ` ${tapEscape(todo)}` : ''}`;
|
/third_party/node/deps/npm/node_modules/are-we-there-yet/lib/ |
H A D | tracker-group.js | 68 newItem (name, todo, weight) { 69 return this.addUnit(new Tracker(name, todo), weight) 72 newStream (name, todo, weight) { 73 return this.addUnit(new TrackerStream(name, todo), weight)
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfstruncate.c | 314 const char *todo = "This is still work in progress."; in dump_resident_attr_val() local 323 printf("%s\n", todo); in dump_resident_attr_val() 327 printf("%s\n", todo); in dump_resident_attr_val() 331 printf("%s\n", todo); in dump_resident_attr_val() 335 printf("%s\n", todo); in dump_resident_attr_val() 339 printf("%s\n", todo); in dump_resident_attr_val() 421 printf("%s\n", todo); in dump_resident_attr_val() 425 printf("%s\n", todo); in dump_resident_attr_val() 432 printf("%s\n", todo); in dump_resident_attr_val()
|