/third_party/flutter/flutter/packages/flutter_test/test/ |
D | controller_test.dart | 271 final List<String> logs = <String>[]; 277 onPointerDown: (PointerDownEvent event) => logs.add('down ${event.buttons}'), 278 onPointerMove: (PointerMoveEvent event) => logs.add('move ${event.buttons}'), 279 onPointerUp: (PointerUpEvent event) => logs.add('up ${event.buttons}'), 288 for(int i = 0; i < logs.length; i++) { 290 expect(logs[i], 'down $b'); 291 else if (i != logs.length - 1) 292 expect(logs[i], 'move $b'); 294 expect(logs[i], 'up 0'); 302 final List<String> logs = <String>[]; [all …]
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | gesture_detector_semantics_test.dart | 84 final Set<String> logs = <String>{}; 91 onHorizontalDragStart: (_) { logs.add('horizontal'); }, 92 onPanStart: (_) { logs.add('pan'); }, 100 expect(logs, <String>{'horizontal', 'pan'}); 118 final Set<String> logs = <String>{}; 126 ..onTap = () { logs.add('tap'); }; 150 ..onStart = (_) { logs.add('horizontal'); }; 163 expect(logs, <String>{'horizontal'}); 164 logs.clear(); 171 expect(logs, <String>{'tap'}); [all …]
|
/third_party/skia/infra/bots/recipes/ |
D | compute_buildstats.py | 155 logs = result.presentation.logs 156 logs['perf_json'] = sections[1].split('\n') 183 logs = result.presentation.logs 184 logs['perf_json'] = sections[2].split('\n') 216 logs = result.presentation.logs 219 logs['bloaty_file_symbol_short'] = sections[1].split('\n') 220 logs['bloaty_file_symbol_full'] = sections[2].split('\n') 221 logs['bloaty_symbol_file_short'] = sections[3].split('\n') 222 logs['bloaty_symbol_file_full'] = sections[4].split('\n') 223 logs['perf_json'] = sections[5].split('\n') [all …]
|
/third_party/flutter/skia/infra/bots/recipes/ |
D | compute_buildstats.py | 164 logs = result.presentation.logs 167 logs['bloaty_file_symbol_short'] = sections[1].split('\n') 168 logs['bloaty_file_symbol_full'] = sections[2].split('\n') 169 logs['bloaty_symbol_file_short'] = sections[3].split('\n') 170 logs['bloaty_symbol_file_full'] = sections[4].split('\n') 171 logs['perf_json'] = sections[5].split('\n') 192 logs = result.presentation.logs 195 logs['bloaty_symbol_short'] = sections[1].split('\n') 196 logs['bloaty_symbol_full'] = sections[2].split('\n') 197 logs['perf_json'] = sections[3].split('\n')
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | navTo.ts | 65 const logs: string[] = []; constant 66 logger.info = s => logs.push(s); 69 logs.length = 0; 77 assert.deepEqual(logs, []); 118 const logs: string[] = []; constant 119 logger.info = s => logs.push(s); 122 logs.length = 0; 131 assert.isFalse(contains(logs, "Search path: /a")); 132 … assert.isFalse(contains(logs, "For info: /a/index.ts :: Config file name: /a/tsconfig.json"));
|
/third_party/gn/infra/recipe_modules/target/examples/ |
D | full.py | 24 step_result.presentation.logs['name'] = [target.os] 25 step_result.presentation.logs['arch'] = [target.arch] 26 step_result.presentation.logs['platform'] = [target.platform] 27 step_result.presentation.logs['triple'] = [target.triple] 28 step_result.presentation.logs['string'] = [str(target)]
|
/third_party/node/test/parallel/ |
D | test-freeze-intrinsics.js | 16 const logs = []; variable 17 s.log = (msg) => logs.push(msg); 21 assert.strictEqual(logs.length, 1); 22 assert.strictEqual(logs[0], 'custom');
|
/third_party/openssl/crypto/ct/ |
D | ct_log.c | 39 STACK_OF(CTLOG) *logs; 121 ret->logs = sk_CTLOG_new_null(); in CTLOG_STORE_new_ex() 122 if (ret->logs == NULL) { in CTLOG_STORE_new_ex() 142 sk_CTLOG_pop_free(store->logs, CTLOG_free); in CTLOG_STORE_free() 214 if (!sk_CTLOG_push(load_ctx->log_store->logs, ct_log)) { in ctlog_store_load_log() 345 for (i = 0; i < sk_CTLOG_num(store->logs); ++i) { in CTLOG_STORE_get0_log_by_id() 346 const CTLOG *log = sk_CTLOG_value(store->logs, i); in CTLOG_STORE_get0_log_by_id()
|
/third_party/openssl/doc/man3/ |
D | CTLOG_STORE_new.pod | 24 logs). The list can be loaded from one or more files and then searched by LogID 27 CTLOG_STORE_new_ex() creates an empty list of CT logs associated with 38 path instead. Both of these functions append any loaded CT logs to the 59 If there are any invalid CT logs in a file, they are skipped and the remaining 60 valid logs will still be added to the CTLOG_STORE. A CT log will be considered 66 all CT logs in the file are successfully parsed and loaded, 0 otherwise.
|
/third_party/libwebsockets/minimal-examples/api-tests/api-test-gencrypto/ |
D | main.c | 22 int result = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE; in main() local 25 logs = atoi(p); in main() 27 lws_set_log_level(logs, NULL); in main()
|
/third_party/libwebsockets/minimal-examples/api-tests/api-test-cose/ |
D | main.c | 22 int result = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE; in main() local 25 logs = atoi(p); in main() 27 lws_set_log_level(logs, NULL); in main()
|
/third_party/openssl/apps/ |
D | ct_log_list.cnf | 1 # This file specifies the Certificate Transparency logs 4 # Google's list of logs can be found here: 5 # www.certificate-transparency.org/known-logs
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-mimetypes/ |
D | minimal-http-server-mimetypes.c | 59 int n = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE in main() local 70 logs = atoi(p); in main() 72 lws_set_log_level(logs, NULL); in main()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-proxy/ |
D | minimal-http-server-proxy.c | 47 int n = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE in main() local 56 logs = atoi(p); in main() 58 lws_set_log_level(logs, NULL); in main()
|
/third_party/libwebsockets/minimal-examples/api-tests/api-test-jose/ |
D | main.c | 24 int result = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE; in main() local 27 logs = atoi(p); in main() 29 lws_set_log_level(logs, NULL); in main()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-basicauth/ |
D | minimal-http-server-basicauth.c | 79 int n = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE in main() local 90 logs = atoi(p); in main() 92 lws_set_log_level(logs, NULL); in main()
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-broker/ |
D | minimal-ws-broker.c | 62 int n = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE in main() local 73 logs = atoi(p); in main() 75 lws_set_log_level(logs, NULL); in main()
|
/third_party/flutter/flutter/dev/benchmarks/microbenchmarks/ |
D | README.md | 3 To run these benchmarks on a device, first run `flutter logs' in one 4 window to see the device logs, then, in a different window, run any of 15 The results should be in the device logs.
|
/third_party/libwebsockets/minimal-examples/client-server/minimal-ws-proxy/ |
D | minimal-ws-proxy.c | 65 int n = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE in main() local 76 logs = atoi(p); in main() 78 lws_set_log_level(logs, NULL); in main()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server/ |
D | minimal-http-server.c | 52 int n = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE in main() local 63 logs = atoi(p); in main() 65 lws_set_log_level(logs, NULL); in main()
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-ring/ |
D | minimal-ws-server-ring.c | 62 int n = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE in main() local 73 logs = atoi(p); in main() 75 lws_set_log_level(logs, NULL); in main()
|
/third_party/libwebsockets/minimal-examples/dbus-server/minimal-dbus-ws-proxy/ |
D | main.c | 62 int n = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE in main() local 73 logs = atoi(p); in main() 75 lws_set_log_level(logs, NULL); in main()
|
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lwsac/ |
D | main.c | 24 int n, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE, acc; in main() local 31 logs = atoi(p); in main() 33 lws_set_log_level(logs, NULL); in main()
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-pmd/ |
D | minimal-ws-server-pmd.c | 72 int n = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE in main() local 83 logs = atoi(p); in main() 85 lws_set_log_level(logs, NULL); in main()
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-pmd-corner/ |
D | minimal-ws-server-pmd-corner.c | 72 int n = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE in main() local 83 logs = atoi(p); in main() 85 lws_set_log_level(logs, NULL); in main()
|