Searched refs:Error (Results 1 – 25 of 73) sorted by relevance
123
/development/tools/winscope/src/viewers/components/rects/ |
D | ui_rect_builder.ts | 120 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/ |
D | trace_rect_builder.ts | 109 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 …]
|
D | parser_mock.ts | 34 throw new Error(`Timestamps and entries must have the same length`); 51 throw new Error('Not implemented'); 76 throw new Error(
|
D | frame_map.ts | 130 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/ |
D | assert_utils.ts | 19 throw new Error(`Expected value, but found '${value}'`); 26 throw new Error( 35 throw new Error('This line should never execute');
|
D | persistent_store_proxy.ts | 60 throw Error("Can't use symbol keys only strings"); 72 throw Error(
|
/development/tools/external_crates/crate_health_proc_macros/src/ |
D | lib.rs | 15 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/ |
D | property_tree_builder_from_proto.ts | 60 throw Error('proto not set'); 63 throw Error('rootId not set'); 66 throw Error('rootName not set');
|
/development/tools/winscope/src/parsers/transitions/legacy/ |
D | parser_transitions_shell.ts | 92 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');
|
D | parser_transitions_wm.ts | 81 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');
|
D | traces_parser_transitions.ts | 50 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/ |
D | global_error_handler.ts | 21 handleError(error: Error) { 22 Analytics.Error.logGlobalException(error.message);
|
/development/tools/winscope/src/trace_processor/ |
D | logging.ts | 23 throw new Error('Value doesn\'t exist'); 30 throw new Error(optMsg ?? 'Failed assertion'); 76 throw new Error('This code should not be reachable');
|
D | query_result.ts | 100 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(
|
D | proto_ring_buffer.ts | 129 throw new Error( 144 throw new Error(
|
/development/tools/winscope/src/app/components/timeline/expanded-timeline/ |
D | canvas_drawer.ts | 28 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/ |
D | tree_builder.ts | 34 throw Error('id not set'); 37 throw Error('name not set');
|
D | parser_builder.ts | 70 throw new Error( 84 throw new Error(
|
D | trace_builder.ts | 71 throw new Error(`Can't set frames before specifying the entries`); 133 throw new Error(
|
/development/tools/winscope/src/parsers/ |
D | hierarchy_tree_builder.ts | 43 throw Error('root not set'); 47 throw Error('children not set');
|
/development/tools/winscope/src/test/remote_tool_mock/ |
D | app_component.ts | 137 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/ |
D | hierarchy_tree_builder_input_method_test.ts | 48 const noEntryError = new Error('root not set'); 53 const noChildrenError = new Error('children not set');
|
/development/tools/winscope/src/parsers/protolog/legacy/ |
D | parser_protolog.ts | 178 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/ |
D | parser_transitions.ts | 145 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/ |
D | lib.rs | 23 use thiserror::Error; 62 #[derive(Error, Debug)]
|
123