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

  /external/chromium_org/third_party/webrtc/base/
base64.cc 32 const char Base64::Base64Table[] =
82 const char* p = strchr(Base64Table, ch);
86 *next_ch = (*p) ? *p : Base64Table[0];
110 (*result)[dest_ix++] = Base64Table[c];
116 (*result)[dest_ix++] = Base64Table[c];
123 (*result)[dest_ix++] = Base64Table[c];
130 (*result)[dest_ix++] = Base64Table[c];
base64.h 48 // Get the char next to the |ch| from the Base64Table.
49 // If the |ch| is the last one in the Base64Table then returns
90 static const char Base64Table[];

Completed in 68 milliseconds