Searched refs:previous_char (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/regex/src/ |
D | input.rs | 81 fn previous_char(&self, at: InputAt) -> Char; in previous_char() method 115 fn previous_char(&self, at: InputAt) -> Char { in previous_char() method 116 (**self).previous_char(at) in previous_char() 173 fn previous_char(&self, at: InputAt) -> Char { in previous_char() method 181 let c = self.previous_char(at); in is_empty_match() 191 let (c1, c2) = (self.previous_char(at), self.next_char(at)); in is_empty_match() 195 let (c1, c2) = (self.previous_char(at), self.next_char(at)); in is_empty_match() 199 let (c1, c2) = (self.previous_char(at), self.next_char(at)); in is_empty_match() 203 let (c1, c2) = (self.previous_char(at), self.next_char(at)); in is_empty_match() 266 fn previous_char(&self, at: InputAt) -> Char { in previous_char() method [all …]
|
/external/libchrome/base/json/ |
D | json_parser.cc | 285 char previous_char = '\0'; in EatComment() local 288 if (previous_char == '*' && c == '/') { in EatComment() 295 previous_char = *ConsumeChar(); in EatComment()
|
/external/pdfium/xfa/fde/ |
D | cfde_texteditengine.cpp | 1016 wchar_t previous_char = GetChar(pos - 1); in GetIndexForPoint() local 1017 if (previous_char == L' ' || previous_char == L'\n' || in GetIndexForPoint() 1018 previous_char == L'\r') { in GetIndexForPoint()
|