Searched refs:DecodeFlags (Results 1 – 3 of 3) sorted by relevance
/external/webrtc/webrtc/base/ |
D | base64.h | 44 typedef int DecodeFlags; typedef 62 static bool DecodeFromArray(const char* data, size_t len, DecodeFlags flags, 64 static bool DecodeFromArray(const char* data, size_t len, DecodeFlags flags, 73 static inline std::string Decode(const std::string& data, DecodeFlags flags) { in Decode() 78 static inline bool Decode(const std::string& data, DecodeFlags flags, in Decode() 83 static inline bool Decode(const std::string& data, DecodeFlags flags, in Decode() 93 static size_t GetNextQuantum(DecodeFlags parse_flags, bool illegal_pads, 98 DecodeFlags flags, T* result,
|
D | base64.cc | 138 size_t Base64::GetNextQuantum(DecodeFlags parse_flags, bool illegal_pads, in GetNextQuantum() 192 bool Base64::DecodeFromArray(const char* data, size_t len, DecodeFlags flags, in DecodeFromArray() 198 bool Base64::DecodeFromArray(const char* data, size_t len, DecodeFlags flags, in DecodeFromArray() 206 DecodeFlags flags, T* result, in DecodeFromArrayTemplate() 212 const DecodeFlags parse_flags = flags & DO_PARSE_MASK; in DecodeFromArrayTemplate() 213 const DecodeFlags pad_flags = flags & DO_PAD_MASK; in DecodeFromArrayTemplate() 214 const DecodeFlags term_flags = flags & DO_TERM_MASK; in DecodeFromArrayTemplate()
|
D | base64_unittest.cc | 916 const char* decoded, Base64::DecodeFlags flags) in DecodeTest()
|