HomeSort by relevance Sort by last modified time
    Searched refs:encoded_string (Results 1 - 4 of 4) sorted by null

  /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);
  /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 335 PyObject* encoded_string = NULL; local
339 encoded_string = PyString_AsEncodedObject(arg, "utf-8", NULL);
341 encoded_string = arg; // Already encoded.
342 Py_INCREF(encoded_string);
345 encoded_string = PyUnicode_AsEncodedObject(arg, "utf-8", NULL);
349 encoded_string = arg;
350 Py_INCREF(encoded_string);
353 if (encoded_string == NULL) {
359 if (PyBytes_AsStringAndSize(encoded_string, &value, &value_len) < 0) {
360 Py_DECREF(encoded_string);
    [all...]

Completed in 77 milliseconds