Home
last modified time | relevance | path

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

/external/rust/crates/percent-encoding/
Dlib.rs390 let initial_bytes = self.bytes.as_slice(); in if_any() localVariable
391 let unchanged_bytes_len = initial_bytes.len() - bytes_iter.len() - 3; in if_any()
392 let mut decoded = initial_bytes[..unchanged_bytes_len].to_owned(); in if_any()
/external/tensorflow/tensorflow/lite/tools/
Dflatbuffer_utils_test.py172 initial_bytes = flatbuffer_utils.convert_object_to_bytearray(initial_model)
191 self.assertEqual(initial_bytes, final_bytes)
/external/python/cpython2/Lib/
D_pyio.py796 def __init__(self, initial_bytes=None): argument
798 if initial_bytes is not None:
799 buf.extend(initial_bytes)
/external/python/cpython3/Lib/
D_pyio.py895 def __init__(self, initial_bytes=None): argument
897 if initial_bytes is not None:
898 buf += initial_bytes
/external/python/cpython2/Lib/test/
Dtest_memoryio.py484 self.ioclass(initial_bytes=buf)
/external/python/cpython3/Lib/test/
Dtest_memoryio.py538 self.ioclass(initial_bytes=buf)
/external/python/cpython2/Doc/library/
Dio.rst550 .. class:: BytesIO([initial_bytes])
555 The optional argument *initial_bytes* is a :class:`bytes` object that
/external/python/cpython3/Doc/library/
Dio.rst623 .. class:: BytesIO([initial_bytes])
629 The optional argument *initial_bytes* is a :term:`bytes-like object` that