Home
last modified time | relevance | path

Searched defs:NormalizedPos (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/rust/compiler/rustc_query_system/src/ich/
Dimpls_syntax.rs132 fn stable_normalized_pos(np: NormalizedPos, source_file_start: BytePos) -> (u32, u32) { in stable_normalized_pos()
133 let NormalizedPos { pos, diff } = np; in stable_normalized_pos() localVariable
/third_party/rust/rust/compiler/rustc_span/src/
Dlib.rs1146 pub struct NormalizedPos { struct
1148 pub pos: BytePos,
1150 pub diff: u32,
1828 fn normalize_src(src: &mut String, start_pos: BytePos) -> Vec<NormalizedPos> { in normalize_src()
1842 fn remove_bom(src: &mut String, normalized_pos: &mut Vec<NormalizedPos>) { in remove_bom()
1852 fn normalize_newlines(src: &mut String, normalized_pos: &mut Vec<NormalizedPos>) { in normalize_newlines()
Dsource_map.rs342 mut file_local_normalized_pos: Vec<NormalizedPos>, in new_imported_source_file()