HomeSort by relevance Sort by last modified time
    Searched refs:next_ch (Results 1 - 4 of 4) 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/webrtc/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];

Completed in 261 milliseconds