Home
last modified time | relevance | path

Searched refs:newline (Results 1 - 25 of 221) sorted by relevance

123456789

/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Dpostprocessor.c641 size_t newline; in process_multipart_headers() local
643 newline = 0; in process_multipart_headers()
644 while ((newline < pp->buffer_pos) && in process_multipart_headers()
645 (buf[newline] != '\r') && (buf[newline] != '\n')) in process_multipart_headers()
646 newline++; in process_multipart_headers()
647 if (newline == pp->buffer_size) in process_multipart_headers()
652 if (newline == pp->buffer_pos) in process_multipart_headers()
654 if (0 == newline) in process_multipart_headers()
662 if (buf[newline] in process_multipart_headers()
709 size_t newline; process_value_to_boundary() local
[all...]
/third_party/skia/src/gpu/
H A DGrShaderUtils.cpp37 * be self explanatory. For '#' and '//' tokens we parse until we reach a newline. in prettify()
45 * '{' and '}' are handled in basically the same way. We add a newline if we aren't in prettify()
46 * on a fresh line, dirty the line, then add a second newline, ie braces are always in prettify()
71 this->newline(); in prettify()
74 this->newline(); in prettify()
77 this->newline(); in prettify()
79 this->newline(); in prettify()
85 this->newline(); in prettify()
124 this->newline(); in parseUntilNewline()
133 // this code assumes it is not actually searching for a newline
168 void newline() { newline() function in GrShaderUtils::GLSLPrettyPrint
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/exec/
H A Dbinfmt_script.py33 # @size: bytes for bprm->buf line, including hashbang but not newline
41 # @newline: character to use as newline, not counted towards @size
44 fill="A", arg="", newline="\n", hashbang="#!"):
67 buf=hashbang + leading + root + middle + target + arg + newline
68 if len(newline) > 0:
123 fill="", target="", newline="")
126 target="", newline="")
128 test(name="newline-prefix", size=SIZE-1, good=False, leading="\n",
138 # One byte under size, leaving newline visibl
[all...]
/third_party/python/Modules/_io/
H A Dstringio.c195 decoded, &_Py_STR(newline), self->writenl, -1); in write_str()
380 Read until newline or EOF.
640 newline as newline_obj: object(c_default="NULL") = '\n'
644 The initial_value argument sets the value of object. The newline
653 const char *newline = "\n"; in _io_StringIO___init___impl() local
656 /* Parse the newline argument. We only want to allow unicode objects or in _io_StringIO___init___impl()
659 newline = NULL; in _io_StringIO___init___impl()
664 "newline must be str or None, not %.200s", in _io_StringIO___init___impl()
668 newline = PyUnicode_AsUTF8(newline_obj); in _io_StringIO___init___impl()
669 if (newline in _io_StringIO___init___impl()
[all...]
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DCheckTags.java72 private boolean newline; field in CheckTags.DocStack
113 public void output(String msg, boolean error, boolean newline) { in output() argument
114 output(msg, error, newline, index-1); in output()
117 void output(String msg, boolean error, boolean newline, int ix) { in output() argument
135 if (this.newline && i == 0) { in output()
137 this.newline = false; in output()
145 this.newline = true; in output()
151 if (index == 0 && this.newline) { in output()
161 this.newline = newline; in output()
247 boolean newline = false; global() field in CheckTags
249 output(String msg, boolean error, boolean newline) output() argument
[all...]
/third_party/ninja/
H A Dconfigure.py138 def newline(self): member in Bootstrap
139 return self.writer.newline()
251 n.newline()
254 n.newline()
267 n.newline()
428 n.newline()
442 n.newline()
456 n.newline()
466 n.newline()
478 n.newline()
[all...]
/third_party/toybox/toys/other/
H A Dfmt.c35 static void newline(void) in newline() function
48 if (!pline) return newline(); in fmt_line()
62 return newline(); in fmt_line()
66 if (count!=TT.level) newline(); in fmt_line()
77 if (TT.pos+count+!!TT.pos>=TT.width) newline(); in fmt_line()
/third_party/mesa3d/src/compiler/glsl/glcpp/
H A Dpp.c65 /* Given str, (that's expected to start with a newline terminator of some
66 * sort), return a pointer to the first character in str after the newline.
68 * A newline terminator can be any of the following sequences:
115 const char *backslash, *newline, *search_start; in remove_line_continuations() local
139 * newline terminators and will properly handle line continuation in remove_line_continuations()
144 * examining the first encountered newline terminator, and using the in remove_line_continuations()
170 * occurrence of a newline character to avoid changing any in remove_line_continuations()
177 newline = cr < lf ? cr : lf; in remove_line_continuations()
179 newline = cr; in remove_line_continuations()
181 newline in remove_line_continuations()
[all...]
/third_party/python/Tools/scripts/
H A Dupdate_file.py35 newline = "\r\n"
37 newline = "\r"
39 newline = "\n"
43 with open(tmpfile, 'w', newline=newline) as outfile:
/third_party/python/Modules/_io/clinic/
H A D_iomodule.c.h7 " errors=None, newline=None, closefd=True, opener=None)\n"
82 "newline controls how universal newlines works (it only applies to text\n"
86 "* On input, if newline is None, universal newlines mode is\n"
89 " caller. If it is \'\', universal newline mode is enabled, but line\n"
94 "* On output, if newline is None, any \'\\n\' characters written are\n"
96 " newline is \'\' or \'\\n\', no translation takes place. If newline is any\n"
130 const char *newline, int closefd, PyObject *opener);
136 static const char * const _keywords[] = {"file", "mode", "buffering", "encoding", "errors", "newline", "closefd", "opener", NULL}; in _io_open()
145 const char *newline in _io_open() local
[all...]
/third_party/tzdata/
H A Dtzselect.ksh38 # if VALUE contains \, ", or newline, awk scripts in this file use:
51 # Output one argument as-is to standard output, with trailing newline.
207 newline='
209 IFS=$newline
452 IFS=$newline;;
660 *"$newline"*)
703 *"$newline"*)
781 say >&2 " $time$newline $country_result$newline $region";;
782 ?*%?*%%|?*%%?*%) say >&2 " $time$newline
[all...]
/kernel/linux/linux-5.10/tools/scripts/
H A Dutilities.mak1 # This allows us to work with the newline character:
2 define newline macro
6 newline := $(newline) macro
13 # what should replace a newline when escaping
23 # single space each newline character in the output
27 # The only solution is to change each newline into
32 escape-nl = $(subst $(newline),$(call nl-escape,$(2)),$(1))
40 unescape-nl = $(subst $(call nl-escape,$(2)),$(newline),$(1))
108 # At least GNU make gets confused by expanding a newline
[all...]
/kernel/linux/linux-6.6/tools/scripts/
H A Dutilities.mak1 # This allows us to work with the newline character:
2 define newline macro
6 newline := $(newline) macro
13 # what should replace a newline when escaping
23 # single space each newline character in the output
27 # The only solution is to change each newline into
32 escape-nl = $(subst $(newline),$(call nl-escape,$(2)),$(1))
40 unescape-nl = $(subst $(call nl-escape,$(2)),$(newline),$(1))
108 # At least GNU make gets confused by expanding a newline
[all...]
/third_party/python/Lib/re/
H A D_constants.py44 newline = '\n'
46 newline = b'\n'
47 self.lineno = pattern.count(newline, 0, pos) + 1
48 self.colno = pos - pattern.rfind(newline, 0, pos)
49 if newline in pattern:
/third_party/ltp/tools/sparse/sparse-src/
H A Dtokenize.c52 int newline, whitespace; member
80 pos.newline = stream->newline; in stream_pos()
393 stream->newline = 1; in nextchar_slow()
429 warning(stream_pos(stream), "no newline at end of file"); in nextchar_slow()
431 warning(stream_pos(stream), "backslash-newline at end of file"); in nextchar_slow()
467 end->pos.newline = 1; in mark_eof()
470 eof_token_entry.pos.newline = 1; in mark_eof()
490 stream->newline |= stream->token->pos.newline; in drop_token()
662 int newline; drop_stream_comment() local
[all...]
/third_party/ninja/misc/
H A Dwrite_fake_manifests.py114 ninja.newline()
119 ninja.newline()
123 ninja.newline()
185 master_ninja.newline()
188 master_ninja.newline()
198 master_ninja.newline()
202 master_ninja.newline()
208 master_ninja.newline()
/kernel/linux/linux-6.6/drivers/soc/apple/
H A Drtkit-crashlog.c74 u8 *newline = memchr(ptr, '\n', end - ptr); in apple_rtkit_crashlog_dump_str() local
76 if (newline) { in apple_rtkit_crashlog_dump_str()
77 u8 tmp = *newline; in apple_rtkit_crashlog_dump_str()
78 *newline = '\0'; in apple_rtkit_crashlog_dump_str()
81 *newline = tmp; in apple_rtkit_crashlog_dump_str()
82 ptr = newline + 1; in apple_rtkit_crashlog_dump_str()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
H A DXMLRecordWriter.java30 newline(); in open()
41 newline(); in close()
174 newline(); in internalString()
230 newline(); in push()
238 newline(); in pop()
242 private void newline() { in newline() method in XMLRecordWriter
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/impl/
H A DXMLRecordWriter.java34 newline(); in open()
45 newline(); in close()
178 newline(); in internalString()
234 newline(); in push()
242 newline(); in pop()
246 private void newline() { in newline() method in XMLRecordWriter
/third_party/skia/third_party/externals/tint/src/diagnostic/
H A Dformatter.cc93 /// newline queues a newline to be written to the printer.
94 void newline() { stream << std::endl; } in newline() function
119 state.newline(); in format()
126 state.newline(); in format()
194 state.newline(); in format()
212 state.newline(); in format()
243 state.newline(); in format()
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/
H A DtokenTypes.js4 exports.word = exports.tilde = exports.tab = exports.str = exports.space = exports.slash = exports.singleQuote = exports.semicolon = exports.plus = exports.pipe = exports.openSquare = exports.openParenthesis = exports.newline = exports.greaterThan = exports.feed = exports.equals = exports.doubleQuote = exports.dollar = exports.cr = exports.comment = exports.comma = exports.combinator = exports.colon = exports.closeSquare = exports.closeParenthesis = exports.caret = exports.bang = exports.backslash = exports.at = exports.asterisk = exports.ampersand = void 0;
55 var newline = 10; // '\n'.charCodeAt(0); variable
56 exports.newline = newline;
/third_party/skia/src/xml/
H A DSkXMLWriter.cpp215 this->newline(); in onAddText()
220 this->newline(); in onAddText()
233 this->newline(); in onEndElement()
242 this->newline(); in onStartElementLen()
253 this->newline(); in writeHeader()
256 void SkXMLStreamWriter::newline() { in newline() function in SkXMLStreamWriter
258 fStream.newline(); in newline()
/third_party/python/Lib/
H A Dtempfile.py539 newline=None, suffix=None, prefix=None,
547 'newline' -- the newline argument to io.open (default None)
580 newline=newline, encoding=encoding, errors=errors,
607 newline=None, suffix=None, prefix=None,
615 'newline' -- the newline argument to io.open (default None)
639 newline=newline, encodin
[all...]
/kernel/linux/linux-5.10/drivers/staging/greybus/
H A Duart.c485 struct gb_uart_set_line_coding_request newline; in gb_tty_set_termios() local
490 newline.rate = cpu_to_le32(tty_get_baud_rate(tty)); in gb_tty_set_termios()
491 newline.format = termios->c_cflag & CSTOPB ? in gb_tty_set_termios()
493 newline.parity = termios->c_cflag & PARENB ? in gb_tty_set_termios()
499 newline.data_bits = 5; in gb_tty_set_termios()
502 newline.data_bits = 6; in gb_tty_set_termios()
505 newline.data_bits = 7; in gb_tty_set_termios()
509 newline.data_bits = 8; in gb_tty_set_termios()
517 newline.rate = gb_tty->line_coding.rate; in gb_tty_set_termios()
529 newline in gb_tty_set_termios()
[all...]
/third_party/node/deps/npm/node_modules/cli-columns/
H A Dindex.js9 newline: '\n',
72 return cells.join(options.newline);
79 .join(options.newline);

Completed in 14 milliseconds

123456789