Searched refs:encoded_string (Results 1 – 5 of 5) sorted by relevance
/external/antlr/runtime/Perl5/lib/ANTLR/Runtime/ |
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);
|
/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)
|
/external/protobuf/python/google/protobuf/pyext/ |
D | message.cc | 678 PyObject* encoded_string = NULL; in CheckAndGetInteger() local 682 encoded_string = arg; // Already encoded. in CheckAndGetInteger() 683 Py_INCREF(encoded_string); in CheckAndGetInteger() 685 encoded_string = PyUnicode_AsEncodedObject(arg, "utf-8", NULL); in CheckAndGetInteger() 689 encoded_string = arg; in CheckAndGetInteger() 690 Py_INCREF(encoded_string); in CheckAndGetInteger() 693 return encoded_string; in CheckAndGetInteger() 702 ScopedPyObjectPtr encoded_string(CheckString(arg, descriptor)); in CheckAndGetInteger() local 704 if (encoded_string.get() == NULL) { in CheckAndGetInteger() 710 if (PyBytes_AsStringAndSize(encoded_string.get(), &value, &value_len) < 0) { in CheckAndGetInteger()
|
/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
|