/aosp_15_r20/cts/tests/tests/util/src/android/util/cts/ |
H A D | Base64Test.java | 50 private String decodeString(String in) throws Exception { in decodeString() method in Base64Test 61 String dec = decodeString(b64); in encodeToString() 94 assertEquals("hello, world", decodeString("aGVsbG8sIHdvcmxk")); in testDecodeExtraChars() 99 assertEquals("hello, world", decodeString(" aGVs bG8s IHdv cmxk ")); in testDecodeExtraChars() 100 assertEquals("hello, world", decodeString(" aGV sbG8 sIHd vcmx k ")); in testDecodeExtraChars() 101 assertEquals("hello, world", decodeString(" aG VsbG 8sIH dvcm xk ")); in testDecodeExtraChars() 102 assertEquals("hello, world", decodeString(" a GVsb G8sI Hdvc mxk ")); in testDecodeExtraChars() 103 assertEquals("hello, world", decodeString(" a G V s b G 8 s I H d v c m x k ")); in testDecodeExtraChars() 104 assertEquals("hello, world", decodeString("_a*G_V*s_b*G_8*s_I*H_d*v_c*m_x*k_")); in testDecodeExtraChars() 105 assertEquals("hello, world", decodeString("aGVsbG8sIHdvcmxk")); in testDecodeExtraChars() [all …]
|
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/util/ |
H A D | Base64Test.java | 47 private String decodeString(String in) throws Exception { in decodeString() method in Base64Test 58 String dec = decodeString(b64); in encodeToString() 91 assertEquals("hello, world", decodeString("aGVsbG8sIHdvcmxk")); in testDecodeExtraChars() 96 assertEquals("hello, world", decodeString(" aGVs bG8s IHdv cmxk ")); in testDecodeExtraChars() 97 assertEquals("hello, world", decodeString(" aGV sbG8 sIHd vcmx k ")); in testDecodeExtraChars() 98 assertEquals("hello, world", decodeString(" aG VsbG 8sIH dvcm xk ")); in testDecodeExtraChars() 99 assertEquals("hello, world", decodeString(" a GVsb G8sI Hdvc mxk ")); in testDecodeExtraChars() 100 assertEquals("hello, world", decodeString(" a G V s b G 8 s I H d v c m x k ")); in testDecodeExtraChars() 101 assertEquals("hello, world", decodeString("_a*G_V*s_b*G_8*s_I*H_d*v_c*m_x*k_")); in testDecodeExtraChars() 102 assertEquals("hello, world", decodeString("aGVsbG8sIHdvcmxk")); in testDecodeExtraChars() [all …]
|
/aosp_15_r20/system/chre/apps/test/common/chre_cross_validator_wifi/src/ |
H A D | wifi_scan_result.cc | 29 wifiScanResultProto.ssid = {.funcs = {.decode = decodeString}, .arg = mSsid}; in WifiScanResult() 30 wifiScanResultProto.bssid = {.funcs = {.decode = decodeString}, in WifiScanResult() 60 bool WifiScanResult::decodeString(pb_istream_t *stream, in decodeString() function in WifiScanResult
|
/aosp_15_r20/external/kotlinx.serialization/formats/json-tests/commonTest/src/kotlinx/serialization/ |
H A D | SerializableOnPropertyTypeAndTypealiasTest.kt | 23 return WithoutDefault(decoder.decodeString()) in deserialize() 36 return WithoutDefault(decoder.decodeString().removeSuffix("#")) in deserialize() 49 return WithDefault(decoder.decodeString().removeSuffix("#")) in deserialize()
|
H A D | NotNullSerializersCompatibilityOnFileTest.kt | 27 return FileContextualType(decoder.decodeString()) in deserialize() 45 return ContextualType(decoder.decodeString()) in deserialize()
|
/aosp_15_r20/external/jsoncpp/src/lib_json/ |
H A D | json_reader.cpp | 180 successful = decodeString(token); in readValue() 458 if (!decodeString(tokenName, name)) in readObject() 610 bool Reader::decodeString(Token& token) { in decodeString() function in Json::Reader 612 if (!decodeString(token, decoded_string)) in decodeString() 621 bool Reader::decodeString(Token& token, String& decoded) { in decodeString() function in Json::Reader 953 bool decodeString(Token& token); 954 bool decodeString(Token& token, String& decoded); 1075 successful = decodeString(token); in readValue() 1457 if (!decodeString(tokenName, name)) in readObject() 1657 bool OurReader::decodeString(Token& token) { in decodeString() function in Json::OurReader [all …]
|
/aosp_15_r20/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/tags/propagation/ |
H A D | BinarySerializationUtils.java | 134 TagKey key = createTagKey(decodeString(buffer)); in parseTags() 135 TagValue val = createTagValue(key, decodeString(buffer)); in parseTags() 192 private static final String decodeString(ByteBuffer buffer) { in decodeString() method in BinarySerializationUtils
|
/aosp_15_r20/external/deqp-deps/glslang/SPIRV/ |
D | disassemble.cpp | 109 std::pair<int, std::string> decodeString(); 301 std::pair<int, std::string> SpirvStream::decodeString() in decodeString() function in spv::SpirvStream 330 std::pair<int, std::string> decoderes = decodeString(); in disassembleString() 354 idDescriptor[resultId] = decodeString().second; in disassembleInstruction() 451 idDescriptor[stream[word - 1]] = decodeString().second; in disassembleInstruction()
|
/aosp_15_r20/external/angle/third_party/glslang/src/SPIRV/ |
H A D | disassemble.cpp | 111 std::pair<int, std::string> decodeString(); 303 std::pair<int, std::string> SpirvStream::decodeString() in decodeString() function in spv::SpirvStream 332 std::pair<int, std::string> decoderes = decodeString(); in disassembleString() 368 idDescriptor[resultId] = decodeString().second; in disassembleInstruction() 465 idDescriptor[stream[word - 1]] = decodeString().second; in disassembleInstruction()
|
/aosp_15_r20/external/kotlinx.serialization/core/commonMain/src/kotlinx/serialization/encoding/ |
H A D | AbstractDecoder.kt | 34 override fun decodeString(): String = decodeValue() as String in decodeValue() method in kotlinx.serialization.encoding.AbstractDecoder 58 …override fun decodeStringElement(descriptor: SerialDescriptor, index: Int): String = decodeString() in decodeBooleanElement()
|
/aosp_15_r20/prebuilts/go/linux-x86/src/vendor/golang.org/x/net/http2/hpack/ |
D | hpack.go | 381 hf.Name, err = d.decodeString(undecodedName) 386 hf.Value, err = d.decodeString(undecodedValue) 509 func (d *Decoder) decodeString(u undecodedString) (string, error) { func
|
/aosp_15_r20/external/robolectric/resources/src/main/java/org/robolectric/res/android/ |
H A D | ResStringPool.java | 12 import static org.robolectric.res.android.ResourceString.decodeString; 349 return decodeString(buf, bufOffset + str, ResourceString.Type.UTF16); in stringAt() 375 return decodeString(buf, bufOffset + u8str, ResourceString.Type.UTF8); in stringAt()
|
/aosp_15_r20/prebuilts/go/linux-x86/src/debug/buildinfo/ |
D | buildinfo.go | 201 vers, data = decodeString(data[32:]) 202 mod, data = decodeString(data) 247 func decodeString(data []byte) (s string, rest []byte) { func
|
/aosp_15_r20/prebuilts/vndk/v30/x86_64/include/external/jsoncpp/include/json/ |
D | reader.h | 204 bool decodeString(Token& token); 205 bool decodeString(Token& token, std::string& decoded);
|
/aosp_15_r20/prebuilts/vndk/v30/arm64/include/external/jsoncpp/include/json/ |
D | reader.h | 204 bool decodeString(Token& token); 205 bool decodeString(Token& token, std::string& decoded);
|
/aosp_15_r20/prebuilts/vndk/v30/arm/include/external/jsoncpp/include/json/ |
D | reader.h | 204 bool decodeString(Token& token); 205 bool decodeString(Token& token, std::string& decoded);
|
/aosp_15_r20/prebuilts/vndk/v30/x86/include/external/jsoncpp/include/json/ |
D | reader.h | 204 bool decodeString(Token& token); 205 bool decodeString(Token& token, std::string& decoded);
|
/aosp_15_r20/frameworks/native/libs/gralloc/types/ |
H A D | Gralloc4.cpp | 372 status_t decodeString(InputHidlVec* input, std::string* output) { in decodeString() function 436 status_t err = decodeString(input, &output->name); in decodeExtendableType() 473 status_t err = decodeString(input, &name); in decodeMetadataType() 593 status_t err = decodeString(input, &name); in decodeBufferDescriptorInfoHelper() 957 return decodeMetadata(MetadataType_Name, name, outName, decodeString); in decodeName() 1214 status_t decodeString(const MetadataType& metadataType, const hidl_vec<uint8_t>& input, in decodeString() function 1216 return decodeMetadata(metadataType, input, output, decodeString); in decodeString()
|
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/draft/ |
H A D | Compacter.java | 47 public static List<String> decodeString(String encodedString) { in decodeString() method in Compacter 137 return decodeString(in); in getFromCompacted()
|
/aosp_15_r20/external/pigweed/pw_tokenizer/ts/ |
H A D | printf_decoder.ts | 59 private decodeString(args: Uint8Array): DecodedArg { method in PrintfDecoder 153 return this.decodeString(args);
|
/aosp_15_r20/prebuilts/vndk/v34/x86/include/external/jsoncpp/include/json/ |
D | reader.h | 204 bool decodeString(Token& token); 205 bool decodeString(Token& token, String& decoded);
|
/aosp_15_r20/prebuilts/vndk/v31/x86/include/external/jsoncpp/include/json/ |
D | reader.h | 205 bool decodeString(Token& token); 206 bool decodeString(Token& token, String& decoded);
|
/aosp_15_r20/prebuilts/vndk/v31/x86_64/include/external/jsoncpp/include/json/ |
D | reader.h | 205 bool decodeString(Token& token); 206 bool decodeString(Token& token, String& decoded);
|
/aosp_15_r20/prebuilts/vndk/v31/arm/include/external/jsoncpp/include/json/ |
D | reader.h | 205 bool decodeString(Token& token); 206 bool decodeString(Token& token, String& decoded);
|
/aosp_15_r20/prebuilts/vndk/v31/arm64/include/external/jsoncpp/include/json/ |
D | reader.h | 205 bool decodeString(Token& token); 206 bool decodeString(Token& token, String& decoded);
|