OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Base64Table
(Results
1 - 3
of
3
) sorted by null
/external/chromium/third_party/libjingle/source/talk/base/
base64.h
82
static const std::string
Base64Table
;
/external/chromium_org/third_party/libjingle/source/talk/base/
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
[];
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];
Completed in 307 milliseconds