Home
last modified time | relevance | path

Searched refs:encoded_string (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/security/fuzzing/
Dbase64_fuzz.cc29 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()
/external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
DDFA.pm171 my ($self, $encoded_string) = @_;
174 while ($encoded_string =~ /(.)(.)/gxms) {
184 my ($self, $encoded_string) = @_;
186 return $self->unpack_encoded_string($encoded_string);
/external/python/cpython3/Lib/email/
Dheader.py114 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)
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
D__init__.py190 getbaseclasses(encoded_string)
385 'encs' : encoded_string,
DAppleScript_Suite.py974 encoded_string = encoded_strings variable
/external/webrtc/logging/rtc_event_log/encoder/
Ddelta_encoding_unittest.cc74 std::string* encoded_string = nullptr) { in TestEncodingAndDecoding() argument
76 if (encoded_string) { in TestEncodingAndDecoding()
77 *encoded_string = encoded; in TestEncodingAndDecoding()
/external/python/pyfakefs/pyfakefs/
Dhelpers.py299 def encoded_string(self, contents): member in FileBufferIO
401 self._bytestream.write(self.encoded_string(s))
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc751 PyObject* encoded_string = NULL; in CheckString() local
755 encoded_string = arg; // Already encoded. in CheckString()
756 Py_INCREF(encoded_string); in CheckString()
758 encoded_string = PyUnicode_AsEncodedString(arg, "utf-8", NULL); in CheckString()
762 encoded_string = arg; in CheckString()
763 Py_INCREF(encoded_string); in CheckString()
766 return encoded_string; in CheckString()
775 ScopedPyObjectPtr encoded_string(CheckString(arg, descriptor)); in CheckAndSetString() local
777 if (encoded_string.get() == NULL) { in CheckAndSetString()
783 if (PyBytes_AsStringAndSize(encoded_string.get(), &value, &value_len) < 0) { in CheckAndSetString()