Home
last modified time | relevance | path

Searched refs:logs (Results 1 – 25 of 410) sorted by relevance

12345678910>>...17

/third_party/flutter/flutter/packages/flutter_test/test/
Dcontroller_test.dart271 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/
Dgesture_detector_semantics_test.dart84 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/
Dcompute_buildstats.py155 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/
Dcompute_buildstats.py164 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/
DnavTo.ts65 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/
Dfull.py24 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/
Dtest-freeze-intrinsics.js16 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/
Dct_log.c39 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/
DCTLOG_STORE_new.pod24 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/
Dmain.c22 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/
Dmain.c22 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/
Dct_log_list.cnf1 # 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/
Dminimal-http-server-mimetypes.c59 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/
Dminimal-http-server-proxy.c47 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/
Dmain.c24 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/
Dminimal-http-server-basicauth.c79 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/
Dminimal-ws-broker.c62 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/
DREADME.md3 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/
Dminimal-ws-proxy.c65 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/
Dminimal-http-server.c52 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/
Dminimal-ws-server-ring.c62 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/
Dmain.c62 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/
Dmain.c24 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/
Dminimal-ws-server-pmd.c72 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/
Dminimal-ws-server-pmd-corner.c72 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()

12345678910>>...17