/development/tools/winscope/src/parsers/surface_flinger/computations/ |
D | visibility_properties_computation.ts | 165 ? opaqueLayers.push(layer) 166 : translucentLayers.push(layer); 232 if (this.isHiddenByPolicy(layer)) reasons.push('flag is hidden'); 235 reasons.push(`hidden by parent ${this.getDefinedValue(layer, 'parent')}`); 241 reasons.push('buffer is empty'); 245 reasons.push('alpha is 0'); 250 reasons.push('bounds is 0x0'); 260 reasons.push('crop is 0x0'); 264 reasons.push('transform is invalid'); 271 reasons.push('relativeOf layer has been removed'); [all …]
|
D | layer_extractor.ts | 35 traverseList.push(...LayerExtractor.extractLayersTopToBottom(c)); 47 traverseList.push(...LayerExtractor.extractLayersTopToBottom(c)); 49 traverseList.push(layer); 51 traverseList.push(...LayerExtractor.extractLayersTopToBottom(c));
|
/development/tools/winscope/src/parsers/surface_flinger/ |
D | transform_utils.ts | 105 typeFlags.push('IDENTITY'); 109 typeFlags.push('SCALE'); 113 typeFlags.push('TRANSLATE'); 117 typeFlags.push('ROT_INVALID'); 126 typeFlags.push('ROT_270'); 133 typeFlags.push('ROT_180'); 136 typeFlags.push('ROT_90'); 139 typeFlags.push('FLIP_V'); 142 typeFlags.push('FLIP_H');
|
/development/tools/winscope/src/test/unit/ |
D | tree_node_utils.ts | 37 if (left !== undefined) children.push({name: 'left', value: left}); 38 if (top !== undefined) children.push({name: 'top', value: top}); 39 if (right !== undefined) children.push({name: 'right', value: right}); 40 if (bottom !== undefined) children.push({name: 'bottom', value: bottom}); 56 if (r !== undefined) children.push({name: 'r', value: r}); 57 if (g !== undefined) children.push({name: 'g', value: g}); 58 if (b !== undefined) children.push({name: 'b', value: b}); 59 if (a !== undefined) children.push({name: 'a', value: a});
|
/development/samples/UiAutomator/ |
D | README | 8 To run this demo you must build it first and push it on your device: 9 # adb push uiautomator.samples.jar /data/local/tmp 20 To run this demo you must build it first and push it on your device: 21 # adb push uiautomator.samples.jar /data/local/tmp 29 To run this demo you must build it first and push it on your device: 30 # adb push uiautomator.samples.jar /data/local/tmp
|
/development/tools/winscope/src/parsers/input/perfetto/ |
D | traces_parser_input.ts | 48 this.descriptors.push(d); 109 this.timestamps?.push( 136 mergedIndices.push([curIndex1++, type1]); 139 mergedIndices.push([curIndex2++, type2]); 142 mergedIndices.push([curIndex1++, type1]); 145 mergedIndices.push([curIndex2++, type2]); 185 mergedResult.push(keyResult[curKeyIndex++]); 187 mergedResult.push(motionResult[curMotionIndex++]);
|
/development/tools/cargo_embargo/src/cargo/ |
D | cargo_out.rs | 76 crates.push(c); in parse_cargo_out_str() 90 args.push(&rustc[start + 1..end]); in args_from_rustc_invocation() 95 args.push(&rustc[start + 1..end]); in args_from_rustc_invocation() 101 args.push(&rustc[start..end]); in args_from_rustc_invocation() 103 args.push(&rustc[start..]); in args_from_rustc_invocation() 195 result.rustc_invocations.push(args); in parse() 222 result.rustc_invocations.push(args); in parse() 245 result.warning_files.push(fpath); in parse() 251 result.test_errors.push(line.to_string()); in parse() 253 result.errors.push(line.to_string()); in parse() [all …]
|
/development/tools/winscope/src/viewers/components/rects/ |
D | rect_spec.ts | 73 legend.push(...RectLegendFactory.makeLegendForPinnedRects()); 96 legend.push(...RectLegendFactory.makeLegendForPinnedRects()); 98 legend.push( 114 legend.push(...RectLegendFactory.makeLegendForPinnedRects()); 127 legend.push(...RectLegendFactory.makeLegendForPinnedRects());
|
/development/tools/winscope/src/app/components/ |
D | snack_bar_opener.ts | 44 this.queue.push(messages); 69 messages.push(warning.getMessage()); 73 messages.push( 93 assertDefined(groups.get(warning.getDescriptor())).push(warning);
|
/development/tools/winscope/src/parsers/window_manager/ |
D | custom_query_utils.ts | 66 result.push({token, title}); 124 result.push({token, title}); 142 result.push({token, title}); 158 result.push({token, title}); 178 result.push({token, title}); 210 result.push({token, title}); 222 result.push({token: hash, title: hash});
|
/development/tools/winscope/src/parsers/perfetto/ |
D | utils.ts | 92 vsyncIdOrderedByRow.push(-1n); 105 vsyncIdOrderedByRow.push(value ?? -1n); 110 vsyncIdOrderedByRow.push(-1n); 126 vsyncIdOrderedByEntry.push(vsyncId);
|
D | parser_factory.ts | 106 parsers.push(...parser.getWindowParsers()); 108 parsers.push(parser); 119 errors.push(msg); 126 errors.push('Perfetto trace has no Winscope trace entries');
|
/development/tools/winscope/src/viewers/common/operations/ |
D | flatten_children_test.ts | 67 expectedChildren.push(firstChild); 76 expectedChildren.push(child); 85 expectedChildren.push(secondChild); 94 expectedChildren.push(child);
|
D | flatten_children.ts | 36 children.push(child); 37 children.push(...this.extractFlattenedChildren(child));
|
/development/samples/browseable/LNotifications/src/com.example.android.lnotifications/ |
D | HeadsUpNotificationFragment.java | 121 Intent push = new Intent(); in createNotification() local 122 push.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in createNotification() 123 push.setClass(getActivity(), LNotificationActivity.class); in createNotification() 126 push, PendingIntent.FLAG_CANCEL_CURRENT); in createNotification()
|
/development/tools/winscope/src/trace/tree_node/operations/ |
D | operation_chain.ts | 31 push(enclosedOperation: Operation<T>) { method in OperationChain 32 this.enclosedOperations.push(enclosedOperation);
|
/development/tools/winscope/src/parsers/search/ |
D | parser_search.ts | 99 this.timestamps.push(this.timestampConverter.makeZeroTimestamp()); 101 this.timestamps.push( 107 this.timestamps.push(this.timestampConverter.makeZeroTimestamp());
|
/development/tools/winscope/src/viewers/common/ |
D | hierarchy_presenter.ts | 127 curr.trees.push(...trees); 130 this.currentTrees.push(curr); 144 curr.formattedTrees.push(formattedTree); 169 trees.push(...curr.formattedTrees); 244 currTrees.push({trace, trees: [tree], entry}); 248 prevTrees.push({ 357 this.pinnedIds.push(newId); 377 formatted.push(formattedTree); 393 this.pinnedItems.push(...this.extractPinnedItems(formattedTree)); 472 pinnedNodes.push(tree); [all …]
|
D | add_diffs.ts | 77 diffNodes.push(oldNode); 115 diffNodes.push(oldNode); 135 diffNodes.push(newNode); 164 childDiffTrees.forEach((child) => diffChildren.push(child));
|
D | properties_presenter.ts | 141 predicatesDiscardingChildren.push( 147 predicatesDiscardingChildren.push( 153 predicatesDiscardingChildren.push(UiTreeUtils.isNotCalculated);
|
/development/tools/winscope/src/trace_processor/ |
D | engine.ts | 234 this.pendingParses.push(asyncRes); 246 this.pendingEOFs.push(asyncRes); 260 this.pendingResetTraceProcessors.push(asyncRes); 278 this.pendingRestoreTables.push(asyncRes); 288 this.pendingComputeMetrics.push(asyncRes); 328 this.pendingQueries.push(result); 371 outerProto.msg.push(rpc); 384 cpus.push(it.cpu);
|
/development/tools/winscope/src/common/ |
D | string_utils.ts | 40 result.push('_'); 41 result.push(currChar.toLowerCase()); 43 result.push(currChar);
|
/development/tools/winscope/src/viewers/viewer_transactions/ |
D | presenter.ts | 124 allowlist.push(...properties); 127 allowlist.push( 194 entries.push(new TransactionsEntry(entry, fields, layerState)); 223 entries.push(new TransactionsEntry(entry, fields, displayState)); 239 entries.push(new TransactionsEntry(entry, fields, undefined)); 263 entries.push(new TransactionsEntry(entry, fields, layerCreationArgs)); 284 entries.push(new TransactionsEntry(entry, fields, destroyedLayerId)); 312 entries.push(new TransactionsEntry(entry, fields, displayState)); 333 entries.push(new TransactionsEntry(entry, fields, removedDisplayId)); 354 entries.push(
|
/development/tools/winscope/src/viewers/ |
D | viewer_factory.ts | 68 viewers.push(new ViewerSearch(traces, store, timestampConverter)); 79 viewers.push(new Viewer(trace as Trace<any>, traces, store)); 92 viewers.push(new Viewer(traces, store));
|
/development/tools/winscope/src/trace_collection/wdp/ |
D | stream_provider.ts | 33 this.streams.push(stream); 49 this.streams.push(stream);
|