Home
last modified time | relevance | path

Searched +full:detect +full:- +full:newline (Results 1 – 25 of 881) sorted by relevance

12345678910>>...36

/aosp_15_r20/external/pcre/doc/
H A Dpcre2demo.32 .\"AUTOMATICALLY GENERATED BY PrepareRelease - do not EDIT!
4 PCRE2DEMO - A demonstration C program for PCRE2
27 .RS -7
40 width. This demonstration program uses the 8-bit library. The default is to
42 "(*UTF)", both it and the subject are treated as UTF-8 strings, where
45 In Unix-like environments, if PCRE2 is installed in your standard system
48 cc -Wall pcre2demo.c -lpcre2-8 -o pcre2demo
51 with support for the pkg-config mechanism. If you have pkg-config, you can
54 cc -Wall pcre2demo.c `pkg-config --cflags --libs libpcre2-8` -o pcre2demo
56 If you do not have pkg-config, you may have to use something like this:
[all …]
H A Dpcre2build.33 PCRE2 - Perl-compatible regular expressions (revised API)
10 the library in Unix-like environments using the applications known as
23 .\" HTML <a href="NON-AUTOTOOLS-BUILD.txt">
25 \fBNON-AUTOTOOLS-BUILD\fP.
32 file if you are building in a non-Unix-like environment.
35 .SH "PCRE2 BUILD-TIME OPTIONS"
42 same options can be selected in both Unix-like and non-Unix-like environments
48 .\" HTML <a href="NON-AUTOTOOLS-BUILD.txt">
50 \fBNON-AUTOTOOLS-BUILD\fP.
57 ./configure --help
[all …]
/aosp_15_r20/external/python/cpython3/Doc/library/
Dtokenize.rst1 :mod:`tokenize` --- Tokenizer for Python source
12 --------------
16 as well, making it useful for implementing "pretty-printers", including
17 colorizers for on-screen displays.
26 ----------------
37 The generator produces 5-tuples with these members: the token type; the
38 token string; a 2-tuple ``(srow, scol)`` of ints specifying the row and
39 column where the token begins in the source; a 2-tuple ``(erow, ecol)`` of
58 UTF-8 BOM or encoding cookie, according to :pep:`263`.
87 lossless and round-trips are assured. The guarantee applies only to the
[all …]
Dtextwrap.rst1 :mod:`textwrap` --- Text wrapping and filling
12 --------------
84 This can be used to make triple-quoted strings line up with the left edge of the
92 single newline character in the output.
123 and whitespace-only lines::
157 You can re-use the same :class:`TextWrapper` object many times, and you can
193 as follows: tab, newline, vertical tab, formfeed, and carriage
215 if non-whitespace follows it. If whitespace being dropped takes up an
235 (default: ``False``) If true, :class:`TextWrapper` attempts to detect
242 unable to detect the difference between "Dr." in ::
[all …]
/aosp_15_r20/external/pcre/src/
H A Dpcre2demo.c12 width. This demonstration program uses the 8-bit library. The default is to
14 "(*UTF)", both it and the subject are treated as UTF-8 strings, where
17 In Unix-like environments, if PCRE2 is installed in your standard system
20 cc -Wall pcre2demo.c -lpcre2-8 -o pcre2demo
23 with support for the pkg-config mechanism. If you have pkg-config, you can
26 cc -Wall pcre2demo.c `pkg-config --cflags --libs libpcre2-8` -o pcre2demo
28 If you do not have pkg-config, you may have to use something like this:
30 cc -Wall pcre2demo.c -I/usr/local/include -L/usr/local/lib \
31 -R/usr/local/lib -lpcre2-8 -o pcre2demo
35 systems (Solaris is one) use the -R option.
[all …]
/aosp_15_r20/external/pcre/doc/html/
H A Dpcre2demo.html30 width. This demonstration program uses the 8-bit library. The default is to
32 "(*UTF)", both it and the subject are treated as UTF-8 strings, where
35 In Unix-like environments, if PCRE2 is installed in your standard system
38 cc -Wall pcre2demo.c -lpcre2-8 -o pcre2demo
41 with support for the pkg-config mechanism. If you have pkg-config, you can
44 cc -Wall pcre2demo.c `pkg-config --cflags --libs libpcre2-8` -o pcre2demo
46 If you do not have pkg-config, you may have to use something like this:
48 cc -Wall pcre2demo.c -I/usr/local/include -L/usr/local/lib \
49 -R/usr/local/lib -lpcre2-8 -o pcre2demo
53 systems (Solaris is one) use the -R option.
[all …]
/aosp_15_r20/external/python/cpython2/Doc/reference/
Dtoplevel_components.rst2 .. _top-level:
5 Top-level components
31 built-in and standard modules are available, but none have been initialized,
32 except for :mod:`sys` (various system services), :mod:`__builtin__` (built-in
55 in three forms: with the :option:`-c` *string* command line option, as a file
61 .. _file-input:
66 All input read from non-interactive files has the same form:
69 file_input: (NEWLINE | `statement`)*
88 interactive_input: [`stmt_list`] NEWLINE | `compound_stmt` NEWLINE
90 Note that a (top-level) compound statement must be followed by a blank line in
[all …]
/aosp_15_r20/external/python/cpython3/Doc/reference/
Dtoplevel_components.rst2 .. _top-level:
5 Top-level components
31 built-in and standard modules are available, but none have been initialized,
32 except for :mod:`sys` (various system services), :mod:`builtins` (built-in
56 in three forms: with the :option:`-c` *string* command line option, as a file
62 .. _file-input:
67 All input read from non-interactive files has the same form:
69 .. productionlist:: python-grammar
70 file_input: (NEWLINE | `statement`)*
88 .. productionlist:: python-grammar
[all …]
/aosp_15_r20/external/trusty/arm-trusted-firmware/
Dpackage-lock.json2 "name": "trusted-firmware-a",
8 "name": "trusted-firmware-a",
10 "license": "BSD-3-Clause",
13 "@commitlint/config-conventional": "^19.0.0",
14 "@commitlint/cz-commitlint": "^19.0.0",
16 "conventional-changelog-tf-a": "file:tools/conventional-changelog-tf-a",
18 "js-yaml": "^4.1.0",
19 "standard-version": "^9.5.0"
25 "node_modules/@babel/code-frame": {
27 "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz",
[all …]
/aosp_15_r20/external/antlr/runtime/JavaScript/tests/functional/
H A Drhino-python.extensions44 ... 1 COLON NEWLINE INDENT PRINT a NEWLINE DEDENT b ASSIGN 3 ...
49 Upon NEWLINE token from the lexer, however, an INDENT or DEDENT token
50 may need to be sent to the parser. The NEWLINE is the trigger for
51 this class to do it's job. NEWLINE is saved and then the first token
52 of the next line is examined. If non-leading-whitespace token,
54 the column of the next non-whitespace token will dictate indent vs
60 A stack of column numbers is tracked and used to detect changes
75 this.sp=-1; // grow upwards
79 this.lastTokenAddedIndex = -1;
109 I use char position in line 0..n-1 instead.
[all …]
/aosp_15_r20/external/arm-trusted-firmware/
H A Dpackage-lock.json2 "name": "trusted-firmware-a",
8 "name": "trusted-firmware-a",
11 "license": "BSD-3-Clause",
14 "@commitlint/config-conventional": "^14.1.0",
16 "conventional-changelog-tf-a": "file:tools/conventional-changelog-tf-a",
17 "cz-conventional-changelog": "^3.3.0",
19 "standard-version": "^9.3.2"
22 "node_modules/@babel/code-frame": {
24 "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz",
25 …"integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4…
[all …]
/aosp_15_r20/external/pcre/
H A DChangeLog2 --------------------
7 Version 10.44 07-June-2024
8 --------------------------
10 1. If a pattern contained a variable-length lookbehind in which the first
17 2. Further updates to the oss-fuzz support:
22 classes contain a lot of non-ascii characters.
26 (c) Arranged for text error messages to be shown in 16-bit and 32-bit modes.
35 bytes because this takes a long time, causing oss-fuzz to time out.
55 break property unless a zero-width joiner intervenes. PCRE2 was not insisting
61 Version 10.43 16-February-2024
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Dbigquery_v2.tables.html8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
16 font-size: 13px;
21 font-size: 26px;
22 margin-bottom: 1em;
26 font-size: 24px;
27 margin-bottom: 1em;
[all …]
Dbigquery_v2.jobs.html8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
16 font-size: 13px;
21 font-size: 26px;
22 margin-bottom: 1em;
26 font-size: 24px;
27 margin-bottom: 1em;
[all …]
/aosp_15_r20/external/iputils/
H A Dtftpsubs.c39 /* Simple minded read-ahead/write-behind subroutines for tftp user and
43 Todo: add some sort of final error check so when the write-buffer
44 is finally flushed, the caller can detect if the disk filled up
67 #define BF_ALLOC -3 /* alloc'd but not yet filled */
68 #define BF_FREE -2 /* free */
69 /* [-1 .. SEGSIZE] = size of data in the data buffer */
75 int newline = 0; /* fillbuf: in middle of newline expansion */ variable
76 int prevchar = -1; /* putbuf: previous char (cr check) */
80 struct tftphdr *w_init() { return rw_init(0); } /* write-behind */ in w_init()
81 struct tftphdr *r_init() { return rw_init(1); } /* read-ahead */ in r_init()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DFileCheck.cpp1 //===- FileCheck.cpp - Check that File's Contents match what is expected --===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // FileCheck does a line-by line check of a file that validates whether it
14 //===----------------------------------------------------------------------===//
29 Optional<uint64_t> Value = Variable->getValue(); in eval()
37 Expected<uint64_t> LeftOp = LeftOperand->eval(); in eval()
38 Expected<uint64_t> RightOp = RightOperand->eval(); in eval()
55 Expected<uint64_t> EvaluatedValue = ExpressionASTPointer->eval(); in getResult()
63 Expected<StringRef> VarVal = Context->getPatternVarValue(FromStr); in getResult()
[all …]
/aosp_15_r20/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DStructuralWhitespaceStripper.java8 * http://www.apache.org/licenses/LICENSE-2.0
66 * ----------------
75 * ----------------
82 * ----------------
88 * ----------------
100 * "not (non-space or newline)".
108 * Pattern to match strings that start with arbitrary (inline) whitespace, followed by a newline.
113 * Pattern to match strings that end with a newline, followed by trailing (inline) whitespace.
118 * Pattern to capture the content of a string after a leading newline. Only ever used on input
125 * Pattern to capture the content of a string before a trailing newline. Note that this may have
[all …]
/aosp_15_r20/libcore/json/src/main/java/org/json/
H A DJSONStringer.java8 * http://www.apache.org/licenses/LICENSE-2.0
24 // Note: this class was written without inspecting the non-free org.json sourcecode.
33 * <p>Stringers only encode well-formed JSON strings. In particular:
35 * <li>The stringer must have exactly one top-level array or object.
47 * <p>This class provides no facility for pretty-printing (ie. indenting)
58 * self-use by overrideable methods is not specified. See <i>Effective Java</i>
64 /** The output data, containing at most one top-level array or object. */
70 * appropriate separator characters (ie. commas and colons) and to detect
82 * A array with at least one value requires a comma and newline before
101 * newline before the next element.
[all …]
/aosp_15_r20/external/python/parse_type/tasks/_vendor/
Dpath.py4 # -----------------------------------------------------------------------------
27 path.py - An object representing a path to a file or directory.
118 NEWLINE = re.compile('|'.join(LINESEPS)) variable
120 NL_END = re.compile(r'(?:{0})$'.format(NEWLINE.pattern))
128 __version__ = '8.2.1' # XXX-MODIFIED-WAS: 'unknown'
230 # --- Special Python methods.
292 # --- Operations on Path strings.
384 """ p.splitpath() -> Return ``(p.parent, p.name)``.
392 """ p.splitdrive() -> Return ``(p.drive, <the rest of p>)``.
404 """ p.splitext() -> Return ``(p.stripext(), p.ext)``.
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/rich/
Dconsole.py156 def ascii_only(self) -> bool:
160 def copy(self) -> "ConsoleOptions":
182 ) -> "ConsoleOptions":
207 def update_width(self, width: int) -> "ConsoleOptions":
220 def update_height(self, height: int) -> "ConsoleOptions":
233 def reset_height(self) -> "ConsoleOptions":
243 def update_dimensions(self, width: int, height: int) -> "ConsoleOptions":
265 ) -> Union["ConsoleRenderable", "RichCast", str]: # pragma: no cover
275 ) -> "RenderResult": # pragma: no cover
292 class NewLine: class
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/rich/
Dconsole.py156 def ascii_only(self) -> bool:
160 def copy(self) -> "ConsoleOptions":
182 ) -> "ConsoleOptions":
207 def update_width(self, width: int) -> "ConsoleOptions":
220 def update_height(self, height: int) -> "ConsoleOptions":
233 def reset_height(self) -> "ConsoleOptions":
243 def update_dimensions(self, width: int, height: int) -> "ConsoleOptions":
265 ) -> Union["ConsoleRenderable", "RichCast", str]: # pragma: no cover
275 ) -> "RenderResult": # pragma: no cover
292 class NewLine: class
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/rich/
Dconsole.py156 def ascii_only(self) -> bool:
160 def copy(self) -> "ConsoleOptions":
182 ) -> "ConsoleOptions":
207 def update_width(self, width: int) -> "ConsoleOptions":
220 def update_height(self, height: int) -> "ConsoleOptions":
233 def reset_height(self) -> "ConsoleOptions":
243 def update_dimensions(self, width: int, height: int) -> "ConsoleOptions":
265 ) -> Union["ConsoleRenderable", "RichCast", str]: # pragma: no cover
275 ) -> "RenderResult": # pragma: no cover
292 class NewLine: class
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/rich/
Dconsole.py156 def ascii_only(self) -> bool:
160 def copy(self) -> "ConsoleOptions":
182 ) -> "ConsoleOptions":
207 def update_width(self, width: int) -> "ConsoleOptions":
220 def update_height(self, height: int) -> "ConsoleOptions":
233 def reset_height(self) -> "ConsoleOptions":
243 def update_dimensions(self, width: int, height: int) -> "ConsoleOptions":
265 ) -> Union["ConsoleRenderable", "RichCast", str]: # pragma: no cover
275 ) -> "RenderResult": # pragma: no cover
292 class NewLine: class
[all …]
/aosp_15_r20/external/autotest/utils/frozen_chromite/lib/
H A Doperation.py1 # -*- coding: utf-8 -*-
3 # Use of this source code is governed by a BSD-style license that can be
100 width = max(1, self._GetTerminalSize().columns -
104 unshaded = '-' * (width - block)
132 One example use of this method could be to detect 'foo' in stdout and
272 the progress bar isn't displayed, then the return value is -1.
298 return -1
357 # -1 = no newline pending
358 # n = newline pending, and line length of last line was n
359 self._pending_nl = -1
[all …]
/aosp_15_r20/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
H A DBuffer.java9 * http://www.apache.org/licenses/LICENSE-2.0
44 * byte array in Java, the runtime must zero-fill the requested array before
46 * This class avoids zero-fill and GC churn by pooling byte arrays.
115 return -1;
151 for (; offset >= (s.limit - s.pos); s = s.next) {
152 offset -= (s.limit - s.pos);
158 int toCopy = (int) Math.min(s.limit - pos, byteCount);
160 byteCount -= toCopy;
177 for (; offset >= (s.limit - s.pos); s = s.next) {
178 offset -= (s.limit - s.pos);
[all …]

12345678910>>...36