OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Base64DecodePolicy
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/text/
Base64.h
42
enum
Base64DecodePolicy
{
54
WTF_EXPORT bool base64Decode(const String&, Vector<char>&, CharacterMatchFunctionPtr shouldIgnoreCharacter = 0,
Base64DecodePolicy
= Base64DoNotValidatePadding);
55
WTF_EXPORT bool base64Decode(const Vector<char>&, Vector<char>&, CharacterMatchFunctionPtr shouldIgnoreCharacter = 0,
Base64DecodePolicy
= Base64DoNotValidatePadding);
56
WTF_EXPORT bool base64Decode(const char*, unsigned, Vector<char>&, CharacterMatchFunctionPtr shouldIgnoreCharacter = 0,
Base64DecodePolicy
= Base64DoNotValidatePadding);
57
WTF_EXPORT bool base64Decode(const UChar*, unsigned, Vector<char>&, CharacterMatchFunctionPtr shouldIgnoreCharacter = 0,
Base64DecodePolicy
= Base64DoNotValidatePadding);
84
using WTF::
Base64DecodePolicy
;
Base64.cpp
130
bool base64Decode(const Vector<char>& in, Vector<char>& out, CharacterMatchFunctionPtr shouldIgnoreCharacter,
Base64DecodePolicy
policy)
142
static inline bool base64DecodeInternal(const T* data, unsigned length, Vector<char>& out, CharacterMatchFunctionPtr shouldIgnoreCharacter,
Base64DecodePolicy
policy)
221
bool base64Decode(const char* data, unsigned length, Vector<char>& out, CharacterMatchFunctionPtr shouldIgnoreCharacter,
Base64DecodePolicy
policy)
226
bool base64Decode(const UChar* data, unsigned length, Vector<char>& out, CharacterMatchFunctionPtr shouldIgnoreCharacter,
Base64DecodePolicy
policy)
231
bool base64Decode(const String& in, Vector<char>& out, CharacterMatchFunctionPtr shouldIgnoreCharacter,
Base64DecodePolicy
policy)
Completed in 55 milliseconds