Home
last modified time | relevance | path

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

/external/rust/crates/unicode-normalization/src/
Dstream_safe.rs35 let next_ch = match self.buffer.take().or_else(|| self.iter.next()) { in next() localVariable
39 let d = classify_nonstarters(next_ch); in next()
45 self.buffer = Some(next_ch); in next()
58 Some(next_ch) in next()
/external/webrtc/rtc_base/third_party/base64/
Dbase64.cc75 bool Base64::GetNextBase64Char(char ch, char* next_ch) { in GetNextBase64Char() argument
76 if (next_ch == nullptr) { in GetNextBase64Char()
83 *next_ch = (*p) ? *p : Base64Table[0]; in GetNextBase64Char()
Dbase64.h55 static bool GetNextBase64Char(char ch, char* next_ch);
/external/rust/crates/proc-macro2/src/
Dparse.rs535 macro_rules! next_ch { macro
551 next_ch!(chars @ '0'..='7'); in backslash_x_char()
552 next_ch!(chars @ '0'..='9' | 'a'..='f' | 'A'..='F'); in backslash_x_char()
560 next_ch!(chars @ b'0'..=b'9' | b'a'..=b'f' | b'A'..=b'F'); in backslash_x_byte()
561 next_ch!(chars @ b'0'..=b'9' | b'a'..=b'f' | b'A'..=b'F'); in backslash_x_byte()
569 next_ch!(chars @ '{'); in backslash_u()
/external/llvm-project/lldb/tools/debugserver/source/
DJSON.cpp325 const char next_ch = PeekChar(); in GetToken() local
326 switch (next_ch) { in GetToken()
377 error << "error: unexpected " << next_ch << " character at offset " in GetToken()
/external/llvm-project/lldb/source/Core/
DSourceManager.cpp655 char next_ch = s[1]; in CalculateLineOffsets() local
656 if (is_newline_char(next_ch)) { in CalculateLineOffsets()
657 if (curr_ch != next_ch) in CalculateLineOffsets()
/external/pdfium/fpdfsdk/
Dfpdf_edittext.cpp390 int next_ch = it->first; in LoadCompositeFont() local
392 if (next_ch == ch + 1 && next_w == w) { in LoadCompositeFont()
396 ch = next_ch; in LoadCompositeFont()
/external/rust/crates/unicode-segmentation/src/
Dgrapheme.rs621 if let Some(next_ch) = iter.next() { in next_boundary()
622 ch = next_ch; in next_boundary()