Home
last modified time | relevance | path

Searched refs:fromProto (Results 1 – 25 of 27) sorted by relevance

12

/development/tools/winscope/src/flickerlib/windows/
DWindowContainer.ts36 WindowContainer.fromProto = function (
78 return DisplayContent.fromProto(proto.displayContent, isActivityInTree) ??
79 DisplayArea.fromProto(proto.displayArea, isActivityInTree) ??
80 Task.fromProto(proto.task, isActivityInTree) ??
81 TaskFragment.fromProto(proto.taskFragment, isActivityInTree) ??
82 Activity.fromProto(proto.activity) ??
83 WindowToken.fromProto(proto.windowToken, isActivityInTree) ??
84 WindowState.fromProto(proto.window, isActivityInTree) ??
85 WindowContainer.fromProto(proto.windowContainer);
DWindowToken.ts21 WindowToken.fromProto = function (proto: any, isActivityInTree: Boolean): WindowToken {
26 const windowContainer = WindowContainer.fromProto(
DDisplayArea.ts21 DisplayArea.fromProto = function (proto: any, isActivityInTree: Boolean): DisplayArea {
25 const windowContainer = WindowContainer.fromProto(
DTaskFragment.ts21 TaskFragment.fromProto = function (proto: any, isActivityInTree: Boolean): TaskFragment {
25 const windowContainer = WindowContainer.fromProto(
DActivity.ts22 Activity.fromProto = function (proto: any): Activity {
26 const windowContainer = WindowContainer.fromProto(
DTask.ts21 Task.fromProto = function (proto: any, isActivityInTree: Boolean): Task {
26 const windowContainer = WindowContainer.fromProto(
DDisplayContent.ts21 DisplayContent.fromProto = function (proto: any, isActivityInTree: Boolean): DisplayContent {
25 const windowContainer = WindowContainer.fromProto(
/development/tools/winscope/src/flickerlib/
DWindowManagerTrace.ts20 WindowManagerTrace.fromProto = function (proto: any) {
23 const transformedEntry = WindowManagerState.fromProto(
35 return WindowManagerState.fromProto(proto);
DErrorTrace.ts20 ErrorTrace.fromProto = function (proto: any) {
23 const transformedState = ErrorState.fromProto(
DTagTrace.ts20 TagTrace.fromProto = function (proto: any): TagTrace {
23 const transformedState = TagState.fromProto(
DLayersTrace.ts20 LayersTrace.fromProto = function (proto: any): LayersTrace {
23 const transformedEntry = LayerTraceEntry.fromProto(
DWindowManagerState.ts26 WindowManagerState.fromProto = function (proto: any, timestamp: number = 0, where: string = ""): Wi…
90 const windowContainer = WindowContainer.fromProto(
/development/tools/winscope/src/flickerlib/tags/
DTagState.ts20 TagState.fromProto = function (timestamp: number, protos: any[]): TagState {
21 const tags = protos.map(it => Tag.fromProto(it));
DTag.ts35 Tag.fromProto = function (proto: any): Tag {
/development/tools/winscope/src/flickerlib/errors/
DErrorState.ts20 ErrorState.fromProto = function (protos: any[], timestamp: number): ErrorState {
21 const errors = protos.map(it => Error.fromProto(it));
DError.ts20 Error.fromProto = function (proto: any): Error {
/development/tools/winscope/src/traces/
DTraceError.ts34 static fromProto(proto: any): ErrorTrace { method in TraceError
35 return ErrorTrace.fromProto(proto);
DTraceTag.ts34 static fromProto(proto: any): TagTrace { method in TraceTag
35 return TagTrace.fromProto(proto);
DSurfaceFlinger.ts38 static fromProto(proto: any): LayersTrace { method in SurfaceFlinger
39 return LayersTrace.fromProto(proto);
DWindowManager.ts39 static fromProto(proto: any): WindowManagerTrace { method in WindowManager
40 return WindowManagerTrace.fromProto(proto);
/development/tools/winscope/src/dumps/
DSurfaceFlinger.ts36 static fromProto(proto: any): LayersTrace { method in SurfaceFlinger
38 const entry = LayersTraceEntry.fromProto(
DWindowManager.ts35 static fromProto(proto: any): WindowManagerTrace { method in WindowManager
/development/tools/winscope/src/flickerlib/layers/
DLayer.ts23 Layer.fromProto = function (proto: any): Layer {
30 const transform = Transform.fromProto(proto.transform, proto.position)
31 const bufferTransform = Transform.fromProto(proto.bufferTransform, /* position */ null)
DLayerTraceEntry.ts21 LayerTraceEntry.fromProto = function (protos: any[], displayProtos: any[],
23 const layers = protos.map(it => Layer.fromProto(it));
/development/tools/winscope/src/
Ddecode.js320 transform: WindowManagerTrace.fromProto,
331 transform: SurfaceFlingerTrace.fromProto,
353 transform: [SurfaceFlingerDump.fromProto, SurfaceFlingerTrace.fromProto],
364 transform: WindowManagerDump.fromProto,
471 transform: TagTrace.fromProto,
481 transform: ErrorTrace.fromProto,

12