Home
last modified time | relevance | path

Searched refs:debugPrint (Results 1 – 25 of 50) sorted by relevance

12

/third_party/flutter/flutter/dev/integration_tests/external_ui/lib/
Dmain.dart13 debugPrint('Application starting...');
45 debugPrint('Starting .5x speed test...');
53 debugPrint('Stopping .5x speed test...');
60 debugPrint('Starting 2x speed test...');
68 debugPrint('Stopping 2x speed test...');
75 debugPrint('Test complete.');
94 debugPrint('Awaiting calm (3 second pause)...');
96 debugPrint('Calibrating...');
108 debugPrint('Calibrated: frame rate ${_flutterFrameRate.toStringAsFixed(1)}fps.');
117 debugPrint('Calibrating... ${(100.0 * tickCount / calibrationTickCount).floor()}%');
/third_party/flutter/flutter/examples/flutter_gallery/test_memory/
Dmemory_nav.dart29 debugPrint('Received tap.');
40 debugPrint('==== MEMORY BENCHMARK ==== READY ====');
43 debugPrint('Continuing...');
56 debugPrint('Navigating...');
76 debugPrint('Tapping... (iteration $iteration)');
79 debugPrint('Backing out...');
85 debugPrint('==== MEMORY BENCHMARK ==== DONE ====');
Dback_button.dart25 debugPrint('==== MEMORY BENCHMARK ==== $state ====');
26 debugPrint('This was lifecycle event number $iteration in this instance');
34 debugPrint('==== MEMORY BENCHMARK ==== READY ====');
Dimage_cache_memory.dart49 debugPrint('==== MEMORY BENCHMARK ==== READY ====');
54 debugPrint('Scrolling...');
62 debugPrint('==== MEMORY BENCHMARK ==== DONE ====');
/third_party/typescript/tests/baselines/reference/
DparserModule1.js18 export function debugPrint(s: string) { function
49 function debugPrint(s) { function
54 CompilerDiagnostics.debugPrint = debugPrint;
DparserModule1.symbols38 export function debugPrint(s: string) {
39 >debugPrint : Symbol(debugPrint, Decl(parserModule1.ts, 14, 9))
DparserRealSource1.js24 export function debugPrint(s: string) { function
174 function debugPrint(s) { function
179 CompilerDiagnostics.debugPrint = debugPrint;
DparserModule1.types39 export function debugPrint(s: string) {
40 >debugPrint : (s: string) => void
/third_party/flutter/flutter/packages/flutter/test/gestures/
Ddebug_test.dart13 final DebugPrintCallback oldCallback = debugPrint;
15 debugPrint = (String s, { int wrapWidth }) { log.add(s); };
53 debugPrint = oldCallback;
59 final DebugPrintCallback oldCallback = debugPrint;
61 debugPrint = (String s, { int wrapWidth }) { log.add(s); };
95 debugPrint = oldCallback;
102 final DebugPrintCallback oldCallback = debugPrint;
104 debugPrint = (String s, { int wrapWidth }) { log.add(s); };
146 debugPrint = oldCallback;
/third_party/flutter/flutter/dev/benchmarks/complex_layout/test_memory/
Dscroll_perf.dart26 debugPrint('Received tap.');
41 debugPrint('==== MEMORY BENCHMARK ==== READY ====');
44 debugPrint('Continuing...');
59 debugPrint('Scroll down... $iteration/$maxIterations');
66 debugPrint('Scroll up... $iteration/$maxIterations');
71 debugPrint('==== MEMORY BENCHMARK ==== DONE ====');
/third_party/flutter/flutter/packages/flutter/test/foundation/
Ddebug_test.dart16 originalDebugPrintCallback = debugPrint;
17 debugPrint = (String message, { int wrapWidth }) {
24 debugPrint = originalDebugPrintCallback;
29 debugPrint('action()');
Dprint_test.dart12 test('debugPrint', () {
41 test('debugPrint throttling', () {
61 test('debugPrint can print null', () {
Derror_reporting_test.dart49 expect(debugPrint, equals(debugPrintThrottled));
50 debugPrint = (String message, { int wrapWidth }) {
227 debugPrint = debugPrintThrottled;
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/
Ddebug.dart18 /// value of the [debugPrint] variable. This is useful for test frameworks that
19 /// override [debugPrint] themselves and want to check that their own custom
26 if (debugPrint != debugPrintOverride ||
42 /// The instrumentation will be printed to the logs using [debugPrint]. In
60 debugPrint('Action "$description" took ${stopwatch.elapsed}');
Dprint.dart8 /// Signature for [debugPrint] implementations.
24 /// [debugPrint] variable to a new implementation that matches the
29 DebugPrintCallback debugPrint = debugPrintThrottled;
31 /// Alternative implementation of [debugPrint] that does not throttle.
41 /// Implementation of [debugPrint] that throttles messages. This avoids dropping
86 /// [debugPrint], which is used to report errors to the console).
107 /// The default [debugPrint] implementation uses this for its line wrapping.
Dassertions.dart621 /// console using [debugPrint].
642 debugPrint(
650 debugPrint('Another exception was thrown: ${details.summary}');
740 /// Dump the current stack to the console using [debugPrint] and
751 debugPrint(label);
761 debugPrint(FlutterError.defaultStackFilter(lines).join('\n'));
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dfade_transition_test.dart11 final DebugPrintCallback oldPrint = debugPrint;
13 debugPrint = (String message, { int wrapWidth }) {
32 debugPrint = oldPrint;
/third_party/mesa3d/src/amd/addrlib/src/core/
Daddrobject.cpp53 m_client.callbacks.debugPrint = NULL; in Object()
218 if (m_client.callbacks.debugPrint != NULL) in DebugPrint()
231 m_client.callbacks.debugPrint(&debugPrintInput); in DebugPrint()
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/ModuleDeclarations/
DparserModule1.ts17 export function debugPrint(s: string) { function
/third_party/flutter/flutter/packages/flutter_test/lib/src/
Dwidget_tester.dart170 /// debugPrint('Time taken: ${timer.elapsedMilliseconds}ms');
494 debugPrint('No widgets found at ${binding.globalToLocal(event.position)}.');
507debugPrint('Some possible finders for the widgets at ${binding.globalToLocal(event.position)}:');
517 debugPrint(' find.byTooltip(\'${widget.message}\')');
528 debugPrint(' find.text(\'${widget.data}\')');
546 debugPrint(' find.byKey($keyLabel)');
556 debugPrint(' find.byType(${element.widget.runtimeType})');
565debugPrint(' find.widgetWithText(${element.widget.runtimeType}, \'$descendantText\')');
575 debugPrint(' find.byElementType(${element.runtimeType})');
583 debugPrint(' <could not come up with any unique finders>');
Dbinding.dart101 /// This constructor overrides the [debugPrint] global hook to point to
104 debugPrint = debugPrintOverride;
113 /// The value to set [debugPrint] to while tests are running.
116 /// change the behavior of [debugPrint]. For example,
117 /// [AutomatedTestWidgetsFlutterBinding] uses it to make [debugPrint]
120 DebugPrintCallback get debugPrintOverride => debugPrint;
494debugPrint = debugPrintOverride; // just in case the test overrides it -- otherwise we won't see t…
527debugPrint = debugPrintOverride; // just in case the test overrides it -- otherwise we won't see t…
554debugPrint = debugPrintOverride; // just in case the test overrides it -- otherwise we won't see t…
1399 final DebugPrintCallback testPrint = debugPrint;
[all …]
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/
DparserRealSource1.ts23 export function debugPrint(s: string) { function
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Dbinding.dart381 debugPrint(RendererBinding.instance?.renderView?.toStringDeep() ?? 'Render tree unavailable.');
386debugPrint(RendererBinding.instance?.renderView?.debugLayer?.toStringDeep() ?? 'Layer tree unavail…
396debugPrint(RendererBinding.instance?.renderView?.debugSemantics?.toStringDeep(childOrder: childOrd…
/third_party/flutter/flutter/examples/stocks/lib/
Dstock_data.dart83 debugPrint('Failed to load stock data chunk ${_nextChunk - 1}');
/third_party/flutter/flutter/packages/flutter/lib/src/gestures/
Dbinding.dart134 debugPrint('$event: $hitTestResult');
149 debugPrint('$event');

12