/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
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/syslinux/gpxe/src/core/ |
uri.c | 460 * @v encoded_string URI-encoded string 466 * @a encoded_string. 468 size_t uri_decode ( const char *encoded_string, char *buf, ssize_t len ) { 474 for ( remaining = len; *encoded_string; remaining-- ) { 475 if ( *encoded_string == '%' ) { 476 encoded_string++; 478 encoded_string ); 480 encoded_string += ( hexbuf_end - hexbuf ); 482 c = *(encoded_string++);
|
/external/syslinux/gpxe/src/include/gpxe/ |
uri.h | 180 extern size_t uri_decode ( const char *encoded_string, char *buf, ssize_t len );
|
/external/python/cpython3/Lib/email/ |
header.py | 85 # (encoded_string, encoding, charset). For unencoded strings, the last 116 for encoded_string, encoding, charset in words: 119 decoded_words.append((encoded_string, charset)) 121 word = email.quoprimime.header_decode(encoded_string) 124 paderr = len(encoded_string) % 4 # Postel's law: add missing padding 126 encoded_string += '==='[:4 - paderr] 128 word = email.base64mime.decode(encoded_string)
|
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/ |
__init__.py | 190 getbaseclasses(encoded_string) 385 'encs' : encoded_string,
|
AppleScript_Suite.py | 974 encoded_string = encoded_strings variable [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
__init__.py | 190 getbaseclasses(encoded_string) 385 'encs' : encoded_string,
|
AppleScript_Suite.py | 974 encoded_string = encoded_strings variable [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
__init__.py | 190 getbaseclasses(encoded_string) 385 'encs' : encoded_string,
|
AppleScript_Suite.py | 974 encoded_string = encoded_strings variable [all...] |
/external/protobuf/python/google/protobuf/pyext/ |
message.cc | 678 PyObject* encoded_string = NULL; local 682 encoded_string = arg; // Already encoded. 683 Py_INCREF(encoded_string); 685 encoded_string = PyUnicode_AsEncodedObject(arg, "utf-8", NULL); 689 encoded_string = arg; 690 Py_INCREF(encoded_string); 693 return encoded_string; 702 ScopedPyObjectPtr encoded_string(CheckString(arg, descriptor)); 704 if (encoded_string.get() == NULL) { 710 if (PyBytes_AsStringAndSize(encoded_string.get(), &value, &value_len) < 0) [all...] |