Home
last modified time | relevance | path

Searched refs:decodeBase64Char (Results 1 – 6 of 6) sorted by relevance

/external/jackson-core/src/test/java/com/fasterxml/jackson/core/base64/
DBase64CodecTest.java48 assertEquals(Base64Variant.BASE64_VALUE_INVALID, std.decodeBase64Char('?')); in testCharEncoding()
49 assertEquals(Base64Variant.BASE64_VALUE_INVALID, std.decodeBase64Char((int) '?')); in testCharEncoding()
50 assertEquals(Base64Variant.BASE64_VALUE_INVALID, std.decodeBase64Char((char) 0xA0)); in testCharEncoding()
51 assertEquals(Base64Variant.BASE64_VALUE_INVALID, std.decodeBase64Char(0xA0)); in testCharEncoding()
56 assertEquals(0, std.decodeBase64Char('A')); in testCharEncoding()
57 assertEquals(1, std.decodeBase64Char((int) 'B')); in testCharEncoding()
58 assertEquals(2, std.decodeBase64Char((byte)'C')); in testCharEncoding()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DBase64Variant.java210 public int decodeBase64Char(char c) in decodeBase64Char() method in Base64Variant
216 public int decodeBase64Char(int ch) in decodeBase64Char() method in Base64Variant
515 int bits = decodeBase64Char(ch); in decode()
525 bits = decodeBase64Char(ch); in decode()
541 bits = decodeBase64Char(ch); in decode()
574 bits = decodeBase64Char(ch); in decode()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
DUTF8DataInputJsonParser.java469 int bits = b64variant.decodeBase64Char(ch); in _readBinary()
491 bits = b64variant.decodeBase64Char(ch); in _readBinary()
499 bits = b64variant.decodeBase64Char(ch); in _readBinary()
534 bits = b64variant.decodeBase64Char(ch); in _readBinary()
2782 int bits = b64variant.decodeBase64Char(ch); in _decodeBase64()
2796 bits = b64variant.decodeBase64Char(ch); in _decodeBase64()
2803 bits = b64variant.decodeBase64Char(ch); in _decodeBase64()
2837 bits = b64variant.decodeBase64Char(ch); in _decodeBase64()
DReaderBasedJsonParser.java530 int bits = b64variant.decodeBase64Char(ch); in _readBinary()
556 bits = b64variant.decodeBase64Char(ch); in _readBinary()
567 bits = b64variant.decodeBase64Char(ch); in _readBinary()
608 bits = b64variant.decodeBase64Char(ch); in _readBinary()
2726 int bits = b64variant.decodeBase64Char(ch); in _decodeBase64()
2744 bits = b64variant.decodeBase64Char(ch); in _decodeBase64()
2755 bits = b64variant.decodeBase64Char(ch); in _decodeBase64()
2797 bits = b64variant.decodeBase64Char(ch); in _decodeBase64()
DUTF8StreamJsonParser.java577 int bits = b64variant.decodeBase64Char(ch); in _readBinary()
603 bits = b64variant.decodeBase64Char(ch); in _readBinary()
614 bits = b64variant.decodeBase64Char(ch); in _readBinary()
655 bits = b64variant.decodeBase64Char(ch); in _readBinary()
3644 int bits = b64variant.decodeBase64Char(ch); in _decodeBase64()
3662 bits = b64variant.decodeBase64Char(ch); in _decodeBase64()
3673 bits = b64variant.decodeBase64Char(ch); in _decodeBase64()
3714 bits = b64variant.decodeBase64Char(ch); in _decodeBase64()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/base/
DParserBase.java1153 int bits = b64variant.decodeBase64Char(unescaped); in _decodeBase64Escape()
1175 int bits = b64variant.decodeBase64Char(unescaped); in _decodeBase64Escape()