Home
last modified time | relevance | path

Searched refs:CharIndices (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/llvm/test/Transforms/AlignmentFromAssumptions/
Damdgpu-crash.ll7 %"core::str::CharIndices.29.66.90.114.138.149.165.173.181.197.205.213.229.387.398" = type { [0 x i6…
13 …%_15.i.i = alloca %"core::str::CharIndices.29.66.90.114.138.149.165.173.181.197.205.213.229.387.39…
17 …st %"core::str::CharIndices.29.66.90.114.138.149.165.173.181.197.205.213.229.387.398" addrspace(5)…
18 …%ptrint53.i.i = ptrtoint %"core::str::CharIndices.29.66.90.114.138.149.165.173.181.197.205.213.229…
25 …entptr inbounds %"core::str::CharIndices.29.66.90.114.138.149.165.173.181.197.205.213.229.387.398"…
/external/rust/crates/bstr/src/
Dutf8.rs163 pub struct CharIndices<'a> { struct
169 impl<'a> CharIndices<'a> { argument
170 pub(crate) fn new(bs: &'a [u8]) -> CharIndices<'a> { in new()
171 CharIndices { bs: bs, forward_index: 0, reverse_index: bs.len() } in new()
199 impl<'a> Iterator for CharIndices<'a> { implementation
215 impl<'a> DoubleEndedIterator for CharIndices<'a> { implementation
228 impl<'a> ::core::iter::FusedIterator for CharIndices<'a> {} implementation
Dlib.rs405 decode as decode_utf8, decode_last as decode_last_utf8, CharIndices,
Dext_slice.rs23 use utf8::{self, CharIndices, Chars, Utf8Chunks, Utf8Error};
1707 fn char_indices(&self) -> CharIndices { in char_indices() argument
1708 CharIndices::new(self.as_bytes()) in char_indices()
3332 chars: CharIndices<'a>,
/external/rust/crates/rayon/src/
Dstr.rs88 fn par_char_indices(&self) -> CharIndices<'_> { in par_char_indices()
89 CharIndices { in par_char_indices()
439 pub struct CharIndices<'ch> { struct
448 impl<'ch> ParallelIterator for CharIndices<'ch> { implementation
/external/rust/crates/itertools/src/
Dpeeking_take_while.rs135 peeking_next_by_clone! { ['a] ::std::str::CharIndices<'a> }
/external/rust/crates/proc-macro2/src/
Dparse.rs6 use std::str::{Bytes, CharIndices, Chars};
49 fn char_indices(&self) -> CharIndices<'a> { in char_indices()
/external/rust/crates/nom/src/
Dtraits.rs10 use crate::lib::std::str::CharIndices;
382 type Iter = CharIndices<'a>;