Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:decoded_chars
(Results
1 - 2
of
2
) sorted by relevance
/third_party/python/Modules/_io/
H
A
D
textio.c
667
PyObject *
decoded_chars
; /* buffer for text returned from decoder */
member
1112
Py_CLEAR(self->
decoded_chars
);
in _io_TextIOWrapper___init___impl()
1331
if (self->
decoded_chars
!= NULL) {
in _io_TextIOWrapper_reconfigure_impl()
1384
Py_CLEAR(self->
decoded_chars
);
in textiowrapper_clear()
1416
Py_VISIT(self->
decoded_chars
);
in textiowrapper_traverse()
1724
Py_XSETREF(self->
decoded_chars
, chars);
in textiowrapper_set_decoded_chars()
1734
if (self->
decoded_chars
== NULL)
in textiowrapper_get_decoded_chars()
1737
/*
decoded_chars
is guaranteed to be "ready". */
in textiowrapper_get_decoded_chars()
1738
avail = (PyUnicode_GET_LENGTH(self->
decoded_chars
)
in textiowrapper_get_decoded_chars()
1747
chars = PyUnicode_Substring(self->
decoded_chars
,
in textiowrapper_get_decoded_chars()
1771
PyObject *
decoded_chars
, *chunk_size;
textiowrapper_read_chunk()
local
[all...]
/third_party/python/Lib/
H
A
D
_pyio.py
2276
raise AssertionError("rewind
decoded_chars
out of bounds")
2307
decoded_chars
= self._decoder.decode(input_chunk, eof)
2308
self._set_decoded_chars(
decoded_chars
)
2309
if
decoded_chars
:
Completed in 8 milliseconds