HomeSort by relevance Sort by last modified time
    Searched refs:next_ch (Results 1 - 6 of 6) sorted by null

  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V40.java 67 final char next_ch = text.charAt(++i); local
68 if (next_ch == 'n' || next_ch == 'N') {
71 builder.append(next_ch);
VCardParserImpl_V30.java 323 final char next_ch = text.charAt(++i); local
324 if (next_ch == 'n' || next_ch == 'N') {
327 builder.append(next_ch);
  /external/chromium_org/third_party/webrtc/base/
base64.h 52 // The result will be saved in |next_ch|.
54 static bool GetNextBase64Char(char ch, char* next_ch);
base64.cc 78 bool Base64::GetNextBase64Char(char ch, char* next_ch) {
79 if (next_ch == NULL) {
86 *next_ch = (*p) ? *p : Base64Table[0];
  /external/lldb/source/Core/
SourceManager.cpp 578 register char next_ch = s[1]; local
579 if (is_newline_char (next_ch))
581 if (curr_ch != next_ch)
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
session_unittest.cc 165 char next_ch = username[username.size() - 1]; local
167 rtc::Base64::GetNextBase64Char(next_ch, &next_ch);
168 username[username.size() - 1] = next_ch;
    [all...]

Completed in 942 milliseconds