HomeSort by relevance Sort by last modified time
    Searched defs:in_str (Results 1 - 6 of 6) sorted by null

  /external/libchrome/base/json/
string_escape_unittest.cc 33 std::string in_str = in_ptr; local
41 bool convert_ok = EscapeJSONString(in_str, false, &out);
46 std::string fooout = GetQuotedJSONString(in_str);
  /external/tensorflow/tensorflow/core/kernels/
decode_raw_op.cc 41 const string& in_str = flat_in(i); variable
43 str_size = in_str.size();
45 OP_REQUIRES(context, str_size == in_str.size(),
49 i, " has size ", str_size, " != ", in_str.size()));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
textio.c 329 Py_UNICODE *in_str; local
334 in_str = PyUnicode_AS_UNICODE(output);
344 only_lf = (memchr(in_str, '\r', len * sizeof(Py_UNICODE)) == NULL);
352 memchr(in_str, '\n', len * sizeof(Py_UNICODE)) != NULL) {
354 s = in_str;
355 end = in_str + len;
378 s = in_str;
379 end = in_str + len;
425 in = in_str;
427 end = in_str + len;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
textio.c 320 Py_UNICODE *in_str; local
325 in_str = PyUnicode_AS_UNICODE(output);
335 only_lf = (memchr(in_str, '\r', len * sizeof(Py_UNICODE)) == NULL);
343 memchr(in_str, '\n', len * sizeof(Py_UNICODE)) != NULL) {
345 s = in_str;
346 end = in_str + len;
369 s = in_str;
370 end = in_str + len;
416 in = in_str;
418 end = in_str + len;
    [all...]
  /external/python/cpython2/Modules/_io/
textio.c 329 Py_UNICODE *in_str; local
334 in_str = PyUnicode_AS_UNICODE(output);
344 only_lf = (memchr(in_str, '\r', len * sizeof(Py_UNICODE)) == NULL);
352 memchr(in_str, '\n', len * sizeof(Py_UNICODE)) != NULL) {
354 s = in_str;
355 end = in_str + len;
378 s = in_str;
379 end = in_str + len;
425 in = in_str;
427 end = in_str + len
    [all...]
  /external/python/cpython3/Modules/_io/
textio.c 377 void *in_str; local
383 in_str = PyUnicode_DATA(output);
394 only_lf = (memchr(in_str, '\r', kind * len) == NULL);
402 memchr(in_str, '\n', kind * len) != NULL) {
410 while (PyUnicode_READ(kind, in_str, i) > '\n')
412 c = PyUnicode_READ(kind, in_str, i++);
433 while (PyUnicode_READ(kind, in_str, i) > '\r')
435 c = PyUnicode_READ(kind, in_str, i++);
439 if (PyUnicode_READ(kind, in_str, i) == '\n') {
457 void *in_str = PyUnicode_DATA(output) local
    [all...]

Completed in 332 milliseconds