/aosp_15_r20/external/antlr/runtime/Perl5/lib/ANTLR/Runtime/ |
H A D | DFA.pm | 171 my ($self, $encoded_string) = @_; 174 while ($encoded_string =~ /(.)(.)/gxms) { 184 my ($self, $encoded_string) = @_; 186 return $self->unpack_encoded_string($encoded_string);
|
/aosp_15_r20/external/tensorflow/tensorflow/security/fuzzing/ |
H A D | base64_fuzz.cc | 29 std::string encoded_string; in LLVMFuzzerTestOneInput() local 32 s = tensorflow::Base64Encode(input, &encoded_string); in LLVMFuzzerTestOneInput() 34 s = tensorflow::Base64Decode(encoded_string, &decoded_string); in LLVMFuzzerTestOneInput()
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/email/ |
H A D | header.py | 114 for encoded_string, encoding, charset in words: 117 decoded_words.append((encoded_string, charset)) 119 word = email.quoprimime.header_decode(encoded_string) 122 paderr = len(encoded_string) % 4 # Postel's law: add missing padding 124 encoded_string += '==='[:4 - paderr] 126 word = email.base64mime.decode(encoded_string)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/email/ |
D | header.py | 114 for encoded_string, encoding, charset in words: 117 decoded_words.append((encoded_string, charset)) 119 word = email.quoprimime.header_decode(encoded_string) 122 paderr = len(encoded_string) % 4 # Postel's law: add missing padding 124 encoded_string += '==='[:4 - paderr] 126 word = email.base64mime.decode(encoded_string)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/email/ |
D | header.py | 114 for encoded_string, encoding, charset in words: 117 decoded_words.append((encoded_string, charset)) 119 word = email.quoprimime.header_decode(encoded_string) 122 paderr = len(encoded_string) % 4 # Postel's law: add missing padding 124 encoded_string += '==='[:4 - paderr] 126 word = email.base64mime.decode(encoded_string)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/email/ |
D | header.py | 114 for encoded_string, encoding, charset in words: 117 decoded_words.append((encoded_string, charset)) 119 word = email.quoprimime.header_decode(encoded_string) 122 paderr = len(encoded_string) % 4 # Postel's law: add missing padding 124 encoded_string += '==='[:4 - paderr] 126 word = email.base64mime.decode(encoded_string)
|
/aosp_15_r20/external/python/cpython3/Lib/email/ |
D | header.py | 114 for encoded_string, encoding, charset in words: 117 decoded_words.append((encoded_string, charset)) 119 word = email.quoprimime.header_decode(encoded_string) 122 paderr = len(encoded_string) % 4 # Postel's law: add missing padding 124 encoded_string += '==='[:4 - paderr] 126 word = email.base64mime.decode(encoded_string)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/email/ |
D | header.py | 114 for encoded_string, encoding, charset in words: 117 decoded_words.append((encoded_string, charset)) 119 word = email.quoprimime.header_decode(encoded_string) 122 paderr = len(encoded_string) % 4 # Postel's law: add missing padding 124 encoded_string += '==='[:4 - paderr] 126 word = email.base64mime.decode(encoded_string)
|
/aosp_15_r20/external/rust/android-crates-io/crates/os_str_bytes/src/windows/ |
D | mod.rs | 67 let mut encoded_string = Vec::with_capacity(encoder.size_hint().0); in from_bytes() localVariable 69 encoded_string.push(wchar?); in from_bytes() 76 .then(|| OsStringExt::from_wide(&encoded_string))) in from_bytes()
|
/aosp_15_r20/external/perfetto/protos/perfetto/trace/chrome/ |
H A D | v8.proto | 43 // the `oneof encoded_string`` direcly embedded in the message), so use this 47 oneof encoded_string { oneof 63 oneof encoded_string { oneof
|
/aosp_15_r20/external/cronet/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | message.cc | 702 PyObject* encoded_string = nullptr; in CheckString() local 706 encoded_string = arg; // Already encoded. in CheckString() 707 Py_INCREF(encoded_string); in CheckString() 709 encoded_string = PyUnicode_AsEncodedString(arg, "utf-8", nullptr); in CheckString() 713 encoded_string = arg; in CheckString() 714 Py_INCREF(encoded_string); in CheckString() 717 return encoded_string; in CheckString() 726 ScopedPyObjectPtr encoded_string(CheckString(arg, descriptor)); in CheckAndSetString() local 728 if (encoded_string.get() == nullptr) { in CheckAndSetString() 734 if (PyBytes_AsStringAndSize(encoded_string.get(), &value, &value_len) < 0) { in CheckAndSetString()
|
/aosp_15_r20/external/protobuf/python/google/protobuf/pyext/ |
H A D | message.cc | 702 PyObject* encoded_string = nullptr; in CheckString() local 706 encoded_string = arg; // Already encoded. in CheckString() 707 Py_INCREF(encoded_string); in CheckString() 709 encoded_string = PyUnicode_AsEncodedString(arg, "utf-8", nullptr); in CheckString() 713 encoded_string = arg; in CheckString() 714 Py_INCREF(encoded_string); in CheckString() 717 return encoded_string; in CheckString() 726 ScopedPyObjectPtr encoded_string(CheckString(arg, descriptor)); in CheckAndSetString() local 728 if (encoded_string.get() == nullptr) { in CheckAndSetString() 734 if (PyBytes_AsStringAndSize(encoded_string.get(), &value, &value_len) < 0) { in CheckAndSetString()
|
/aosp_15_r20/external/webrtc/logging/rtc_event_log/encoder/ |
H A D | delta_encoding_unittest.cc | 74 std::string* encoded_string = nullptr) { in TestEncodingAndDecoding() argument 76 if (encoded_string) { in TestEncodingAndDecoding() 77 *encoded_string = encoded; in TestEncodingAndDecoding()
|
/aosp_15_r20/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/ |
D | __init__.py | 190 getbaseclasses(encoded_string) 385 'encs' : encoded_string,
|
D | AppleScript_Suite.py | 974 encoded_string = encoded_strings variable
|
/aosp_15_r20/external/pigweed/third_party/perfetto/repo/protos/perfetto/trace/ |
H A D | perfetto_trace.proto | 6090 // the `oneof encoded_string`` direcly embedded in the message), so use this 6094 oneof encoded_string { oneof 6110 oneof encoded_string { oneof
|
/aosp_15_r20/external/perfetto/protos/perfetto/trace/ |
H A D | perfetto_trace.proto | 6390 // the `oneof encoded_string`` direcly embedded in the message), so use this 6394 oneof encoded_string { oneof 6410 oneof encoded_string { oneof
|