Home
last modified time | relevance | path

Searched refs:Error (Results 1 – 25 of 73) sorted by relevance

123

/development/tools/winscope/src/viewers/components/rects/
Dui_rect_builder.ts120 throw Error('x not set');
124 throw Error('y not set');
128 throw Error('width not set');
132 throw Error('height not set');
136 throw Error('label not set');
140 throw Error('isVisible not set');
144 throw Error('isDisplay not set');
148 throw Error('id not set');
152 throw Error('groupId not set');
156 throw Error('isVirtual not set');
[all …]
/development/tools/winscope/src/trace/
Dtrace_rect_builder.ts109 throw Error('x not set');
113 throw Error('y not set');
117 throw Error('width not set');
121 throw Error('height not set');
125 throw Error('id not set');
129 throw Error('name not set');
133 throw Error('cornerRadius not set');
137 throw Error('groupId not set');
141 throw Error('isVisible not set');
145 throw Error('isDisplay not set');
[all …]
Dparser_mock.ts34 throw new Error(`Timestamps and entries must have the same length`);
51 throw new Error('Not implemented');
76 throw new Error(
Dframe_map.ts130 throw Error(`Entry index out of bounds: ${entry}`);
139 throw Error(`Entry index out of bounds: ${entry}`);
148 throw Error(`Frame index out of bounds: ${frame}`);
157 throw Error(`Frame index out of bounds: ${frame}`);
/development/tools/winscope/src/common/
Dassert_utils.ts19 throw new Error(`Expected value, but found '${value}'`);
26 throw new Error(
35 throw new Error('This line should never execute');
Dpersistent_store_proxy.ts60 throw Error("Can't use symbol keys only strings");
72 throw Error(
/development/tools/external_crates/crate_health_proc_macros/src/
Dlib.rs15 use syn::{parse_macro_input, DeriveInput, Error};
20 name_and_version_map::expand(input).unwrap_or_else(Error::into_compile_error).into() in derive_name_and_version_map()
27 Data, DataStruct, DeriveInput, Error, Field, GenericArgument, PathArguments, Result, Type,
38 .ok_or(Error::new_spanned(mapfield, "mapfield ident is none"))?; in expand()
86 _ => Err(Error::new_spanned(input, "Not a struct")), in get_struct()
102 return Err(Error::new_spanned(strukt.struct_token, "No field of type NameAndVersionMap")); in get_map_field()
115 Err(Error::new_spanned(typ, "Must be BTreeMap")) in get_map_type()
122 Err(Error::new_spanned(arg, "Could not extract argument type")) in get_type()
/development/tools/winscope/src/trace/tree_node/
Dproperty_tree_builder_from_proto.ts60 throw Error('proto not set');
63 throw Error('rootId not set');
66 throw Error('rootName not set');
/development/tools/winscope/src/parsers/transitions/legacy/
Dparser_transitions_shell.ts92 throw new Error('Proto needs a non-null id');
100 throw new Error('Requires at least one non-null timestamp');
103 throw new Error('missing realToBootTimeOffsetNs');
106 throw new Error('Missing handler mapping');
Dparser_transitions_wm.ts81 throw new Error('Entry need a non null id');
89 throw new Error('Requires at least one non-null timestamp');
92 throw new Error('missing realToBootTimeOffsetNs');
Dtraces_parser_transitions.ts50 throw new Error('Missing WM Transition trace');
54 throw new Error('Missing Shell Transition trace');
174 throw Error("Can't merge transitions with mismatching ids");
/development/tools/winscope/src/app/
Dglobal_error_handler.ts21 handleError(error: Error) {
22 Analytics.Error.logGlobalException(error.message);
/development/tools/winscope/src/trace_processor/
Dlogging.ts23 throw new Error('Value doesn\'t exist');
30 throw new Error(optMsg ?? 'Failed assertion');
76 throw new Error('This code should not be reachable');
Dquery_result.ts100 throw Error('Index out of range');
124 throw Error('Index out of range');
134 throw Error('invalid varint encoding');
144 export class QueryError extends Error {
224 throw new Error(`Unknown CellType ${actual}`);
696 throw new Error(
772 throw new Error(`Invalid cell type ${cellType}`);
805 throw new Error(
848 throw new Error(
Dproto_ring_buffer.ts129 throw new Error(
144 throw new Error(
/development/tools/winscope/src/app/components/timeline/expanded-timeline/
Dcanvas_drawer.ts28 throw new Error("Couldn't get context from canvas");
35 throw Error('Canvas not set');
40 throw new Error('Failed to parse provided hex color');
53 throw Error('Canvas not set');
/development/tools/winscope/src/test/unit/
Dtree_builder.ts34 throw Error('id not set');
37 throw Error('name not set');
Dparser_builder.ts70 throw new Error(
84 throw new Error(
Dtrace_builder.ts71 throw new Error(`Can't set frames before specifying the entries`);
133 throw new Error(
/development/tools/winscope/src/parsers/
Dhierarchy_tree_builder.ts43 throw Error('root not set');
47 throw Error('children not set');
/development/tools/winscope/src/test/remote_tool_mock/
Dapp_component.ts137 throw new Error('Failed to open winscope');
256 throw Error("Winscope shouldn't send timestamps with UNKNOWN type");
285 throw new Error('Failed to read input files');
/development/tools/winscope/src/parsers/input_method/
Dhierarchy_tree_builder_input_method_test.ts48 const noEntryError = new Error('root not set');
53 const noChildrenError = new Error('children not set');
/development/tools/winscope/src/parsers/protolog/legacy/
Dparser_protolog.ts178 throw new Error('Invalid format string');
213 throw new Error(
235 throw new Error('No param for format string conversion');
265 class FormatStringMismatchError extends Error {
/development/tools/winscope/src/parsers/transitions/perfetto/
Dparser_transitions.ts145 throw new Error('Entry need a non null id');
157 throw new Error('Requires at least one non-null timestamp');
/development/tools/external_crates/crate_health/src/
Dlib.rs23 use thiserror::Error;
62 #[derive(Error, Debug)]

123