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:writenl
(Results
1 - 2
of
2
) sorted by relevance
/third_party/python/Modules/_io/
H
A
D
stringio.c
43
PyObject *
writenl
;
member
193
if (self->
writenl
) {
in write_str()
195
decoded, &_Py_STR(newline), self->
writenl
, -1);
in write_str()
577
Py_CLEAR(self->
writenl
);
in _io_StringIO_close_impl()
607
Py_CLEAR(self->
writenl
);
in stringio_dealloc()
692
Py_CLEAR(self->
writenl
);
in _io_StringIO___init___impl()
712
self->
writenl
= self->readnl;
in _io_StringIO___init___impl()
713
Py_INCREF(self->
writenl
);
in _io_StringIO___init___impl()
H
A
D
textio.c
643
const char *
writenl
; /* ASCII-encoded; NULL stands for \n */
member
835
self->
writenl
= (const char *)PyUnicode_1BYTE_DATA(self->readnl);
in set_newline()
836
if (strcmp(self->
writenl
, "\n") == 0) {
in set_newline()
837
self->
writenl
= NULL;
in set_newline()
842
self->
writenl
= "\r\n";
in set_newline()
844
self->
writenl
= NULL;
in set_newline()
1605
if ((self->writetranslate && self->
writenl
!= NULL) || self->line_buffering)
in _io_TextIOWrapper_write_impl()
1609
if (haslf && self->writetranslate && self->
writenl
!= NULL) {
in _io_TextIOWrapper_write_impl()
1611
"ss", "\n", self->
writenl
);
in _io_TextIOWrapper_write_impl()
Completed in 6 milliseconds