Home
last modified time | relevance | path

Searched +full:no +full:- +full:control +full:- +full:regex (Results 1 – 25 of 331) sorted by relevance

12345678910>>...14

/third_party/node/test/parallel/
Dtest-require-nul.js7 /* eslint-disable no-control-regex */
11 /* eslint-enable no-control-regex */
Dtest-repl-uncaught-exception.js33 // eslint-disable-next-line no-control-regex
34 assert.strictEqual(accum.replace(/\u001b\[[0-9]+m/g, ''), '2\n');
71 // To actually verify that the test passed we have to make sure no
/third_party/alsa-lib/src/ucm/
Ducm_confdoc.h14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
94 cset "name='My control' on"
224 ---------------|----------------------------------------------
225 cdev ARG | ALSA control device name for snd_ctl_open()
226 cset ARG | ALSA control set - snd_ctl_ascii_elem_id_parse() + snd_ctl_ascii_value_parse()
227 cset-new ARG | Create new ALSA user control element - snd_ctl_ascii_elem_id_parse() + description
228 ctl-remove ARG | Remove ALSA user control element - snd_ctl_ascii_elem_id_parse()
232 exec ARG | execute a specific command (without shell - *man execv*)
233 shell ARG | execute a specific command (using shell - *man system*)
234 cfg-save ARG | save LibraryConfig to a file
[all …]
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/
Dnaming-convention.md1 # Enforces naming conventions for everything across a codebase (`naming-convention`)
4 …ally, a well-designed style guide can help communicate intent, such as by enforcing all private pr…
10 …orce conventions for any identifier, using granular selectors to create a fine-grained style guide.
12 ### Note - this rule only needs type information in specific cases, detailed below
33 regex: string;
46 regex: string;
49 // the allowed values for these are dependent on the selector - see below
89 For steps 1-4, if the identifier matches the option, the matching part will be removed.
93 1. validate leading underscore - pass
94 - Trim leading underscore - `name = IMyInterface`
[all …]
/third_party/boost/libs/regex/doc/
Dconfiguration.qbk2 Copyright 2006-2007 John Maddock.
13 You shouldn't need to do anything special to configure Boost.Regex for use
14 with your compiler - the [@../../../config/index.html Boost.Config subsystem] should already take c…
22 The following macros (see [@../../../../boost/regex/user.hpp user.hpp]) control how Boost.Regex int…
27 [[BOOST_REGEX_USE_C_LOCALE][Forces Boost.Regex to use the global C locale in its traits class suppo…
28Regex to use std::locale in it's default traits class, regular expressions can then be imbued with…
29 [[BOOST_REGEX_NO_W32][Tells Boost.Regex not to use any Win32 API's even when available (implies BOO…
39 …and C++ builds, this tells Boost.Regex that it should link to the dll build of the Boost.Regex. B…
40 [[BOOST_REGEX_NO_LIB][For Microsoft and Borland C++ builds, this tells Boost.Regex that it should n…
41 [[BOOST_REGEX_NO_FASTCALL][For Microsoft builds, this tells Boost.Regex to use the `__cdecl` callin…
[all …]
Dstandards.qbk2 Copyright 2006-2007 John Maddock.
13 Boost.Regex is intended to conform to the [tr1].
30 (*VERB) The [@http://perldoc.perl.org/perlre.html#Special-Backtracking-Control-Verbs
31 backtracking control verbs] are not recognised or implemented at this time.
42 No character collating names are recognized except those specified in the
61 [[1.3][Subtraction and Intersection][Indirectly support by forward-lookahead:
70 [[1.4][Simple Word Boundaries][Conforming: non-spacing marks are included in the set of word charac…
73 …: provided you use the u32* algorithms, then UTF-8, UTF-16 and UTF-32 are all treated as sequences…
84 [[3.5][Tailored Ranges][Supported: \[a-b\] matches any character that collates in the range a to b,…
86 [[3.7][Incremental Matches][Supported: pass the flag `match_partial` to the regex algorithms.]]
[all …]
Dcharacter_class_names.qbk2 Copyright 2006-2007 John Maddock.
13 The following character class names are always supported by Boost.Regex:
16 [[Name] [POSIX-standard name] [Description]]
17 [[alnum] [Yes] [Any alpha-numeric character.]]
20 [[cntrl] [Yes] [Any control character.]]
21 [[d] [No] [Any decimal digit]]
24 [[l] [No] [Any lower case character.]]
28 [[s] [No] [Any whitespace character.]]
30 [[unicode] [No] [Any extended character whose code point is above 255 in value.]]
31 [[u] [No] [Any upper case character.]]
[all …]
Dhistory.qbk2 Copyright 2006-2007 John Maddock.
11 …should be submitted at [@https://github.com/boostorg/regex/issues https://github.com/boostorg/rege…
13 Currently open issues can be viewed [@https://github.com/boostorg/regex/issues?q=is%3Aopen+is%3Aiss…
15 All issues including closed ones can be viewed [@https://github.com/boostorg/regex/issues?q=is%3Ais…
17 [h4 Boost.Regex-5.1.4 (Boost-172.0)]
19 * Minor build fixes, see [@https://github.com/boostorg/regex/issues/89 #89].
21 [h4 Boost.Regex-5.1.3 (Boost-1.64.0)]
23 * Compiling with Oracle C++ toolset is no longer restricted to static linking.
24 * Big effort to de-fuzz the library using libFuzzer and fix identified issues, see: [@https://svn.…
26 [h4 Boost.Regex-5.1.2 (Boost-1.62.0)]
[all …]
Dsyntax_perl.qbk2 Copyright 2006-2007 John Maddock.
15 default behavior in Boost.Regex or you can pass the flag [^perl] to the
19 // since Perl is the default option there's no need to explicitly specify the syntax used here:
20 boost::regex e1(my_expression);
22 boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);
31 Other characters are special only in certain situations - for example `]` is special only after an …
50 [h4 Marked sub-expressions]
52 A section beginning [^(] and ending [^)] acts as a marked sub-expression.
53 Whatever matched the sub-expression is split out in a separate field by
54 the matching algorithms. Marked sub-expressions can also repeated, or
[all …]
/third_party/node/deps/npm/node_modules/fast-json-stable-stringify/
D.eslintrc.yml6 block-scoped-var: 2
7 callback-return: 2
8 dot-notation: 2
10 linebreak-style: [2, unix]
11 new-cap: 2
12 no-console: [2, allow: [warn, error]]
13 no-else-return: 2
14 no-eq-null: 2
15 no-fallthrough: 2
16 no-invalid-this: 2
[all …]
/third_party/alsa-lib/test/lsb/
Dmidi_event.c4 #include <regex.h>
11 static int midi_matches_regex(unsigned char *midi, int count, const char *regex) in midi_matches_regex() argument
23 if (regcomp(&re, regex, REG_EXTENDED) != 0) { in midi_matches_regex()
52 TEST_CHECK(DECODE() == -ENOENT); in test_decode()
80 ev.data.control.value = 3; in test_decode()
84 ev.data.control.value = 0x444; in test_decode()
88 ev.data.control.value = 5; in test_decode()
113 ev.data.control.channel = 6; in test_decode()
114 ev.data.control.param = 7; in test_decode()
115 ev.data.control.value = 0x888; in test_decode()
[all …]
/third_party/node/deps/npm/node_modules/har-validator/node_modules/json-schema-traverse/
D.eslintrc.yml6 block-scoped-var: 2
8 curly: [2, multi-or-nest, consistent]
9 dot-location: [2, property]
10 dot-notation: 2
12 linebreak-style: [2, unix]
13 new-cap: 2
14 no-console: [2, allow: [warn, error]]
15 no-else-return: 2
16 no-eq-null: 2
17 no-fallthrough: 2
[all …]
/third_party/boost/tools/bcp/doc/
Dbcp.qbk13 [/last-revision $Date: 2008-02-21 12:58:15 +0000 (Thu, 21 Feb 2008) $]
34 bcp boost/regex.hpp /foo
37 Copies boost/regex.hpp and all dependencies including the regex source code (in libs/regex/src) and
38 build files (in libs/regex/build) to /foo. Does not copy the regex documentation, test, or example…
42 bcp regex /foo
45 Copies the full regex lib (in libs/regex) including dependencies (such as the boost.test source req…
46 by the regex test programs) to /foo. Does not copy the Boost.Build system.
49 bcp --namespace=myboost --namespace-alias regex config build /foo
52 Copies the full regex lib (in libs\/regex) plus the config lib (libs\/config) and the build system …
54 of binary libraries to begin with the prefix "myboost" rather than "boost". The --namespace-alias …
[all …]
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/
Ddataset_op.cc2 * Copyright 2019-2021 Huawei Technologies Co., Ltd
8 * http://www.apache.org/licenses/LICENSE-2.0
21 #include <regex>
51 dataset_size_(-1), in DatasetOp()
52 num_classes_(-1) { in DatasetOp()
72 if (tree_ != child->tree_) { in AddChild()
78 child->AddParent(this); in AddChild()
91 if (tree_ != child->tree_) { in RemoveChild()
98 child->RemoveParent(this); in RemoveChild()
104 for (auto &prev_parent : this->parent_) { in InsertAsParent()
[all …]
/third_party/flutter/skia/tools/
Dcompare_codereview.py5 # Use of this source code is governed by a BSD-style license that can be
33 regex. [Search for "You can't parse [X]HTML with regex." for more
98 and 'build-result' in attrs.get('class', '').split()):
101 # <a class="build-result" href="*">. Then we save the
102 # (non-standard) status attribute and the URL.
155 regex. [Search for "You can't parse [X]HTML with regex." for more
213 # nest-level for backing out.
259 self._li_level -= 1
307 for i, wrapped_line in enumerate(wrap_to(line, 68 - (2 * indent))):
326 control = CodeReviewHTMLParser.parse(control_url)
[all …]
/third_party/skia/tools/
Dcompare_codereview.py5 # Use of this source code is governed by a BSD-style license that can be
33 regex. [Search for "You can't parse [X]HTML with regex." for more
98 and 'build-result' in attrs.get('class', '').split()):
101 # <a class="build-result" href="*">. Then we save the
102 # (non-standard) status attribute and the URL.
155 regex. [Search for "You can't parse [X]HTML with regex." for more
213 # nest-level for backing out.
259 self._li_level -= 1
307 for i, wrapped_line in enumerate(wrap_to(line, 68 - (2 * indent))):
326 control = CodeReviewHTMLParser.parse(control_url)
[all …]
/third_party/boost/libs/compute/cmake/
DFindEigen.cmake1 # Ceres Solver - A fast non-linear least squares minimizer
3 # http://code.google.com/p/ceres-solver/
20 # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
32 # FindEigen.cmake - Find Eigen library, version >= 3.
44 # The following variables control the behaviour of this module:
53 # are NOT re-called (i.e. search for library is not repeated) if these variables
56 # or by the user passing -DVAR=VALUE directives to CMake when called (which
58 # bypassing the HINTS variables and other hard-coded search locations.
75 MESSAGE(STATUS "Failed to find Eigen - " ${REASON_MSG} ${ARGN})
77 MESSAGE(FATAL_ERROR "Failed to find Eigen - " ${REASON_MSG} ${ARGN})
[all …]
/third_party/boost/libs/log/test/
DJamfile.v22 # Copyright Andrey Semashev 2007 - 2015.
11 import regex ;
13 import ../build/log-platform-config ;
17 <conditional>@log-platform-config.set-platform-defines
26 <toolset>intel-win:<define>_SCL_SECURE_NO_WARNINGS
27 <toolset>intel-win:<define>_SCL_SECURE_NO_DEPRECATE
28 <toolset>intel-win:<define>_CRT_SECURE_NO_WARNINGS
29 <toolset>intel-win:<define>_CRT_SECURE_NO_DEPRECATE
35 …<toolset>msvc:<cxxflags>/wd4003 # not enough actual parameters for macro 'X' - caused by BOOST_PP_…
40 # warning #780: using-declaration ignored -- it refers to the current namespace
[all …]
/third_party/python/Doc/library/
Dcompileall.rst1 :mod:`compileall` --- Byte-compile Python libraries
5 :synopsis: Tools for byte-compiling all Python source files in a directory tree.
9 --------------
13 This module can be used to create the cached byte-code files at library
18 Command-line use
19 ----------------
21 This module can work as a script (using :program:`python -m compileall`) to
30 source files, traversed recursively. If no argument is given, behave as if
31 the command line was ``-l <directories from sys.path>``.
33 .. cmdoption:: -l
[all …]
/third_party/node/deps/npm/node_modules/https-proxy-agent/
D.eslintrc.js6 'parser': '@typescript-eslint/parser',
13 '@typescript-eslint'
29 'class-methods-use-this': 0,
30 'consistent-return': 0,
31 'func-names': 0,
32 'global-require': 0,
33 'guard-for-in': 0,
34 'import/no-duplicates': 0,
35 'import/no-dynamic-require': 0,
36 'import/no-extraneous-dependencies': 0,
[all …]
/third_party/jinja2/
Dlexer.py1 # -*- coding: utf-8 -*-
36 e[+\-]?(\d+_)*\d+ # exponent part
48 # Python 2, no Unicode support, use ASCII identifiers
49 name_re = re.compile(r"[a-zA-Z_][a-zA-Z0-9_]*")
112 "-": TOKEN_SUB,
142 "(%s)" % "|".join(re.escape(x) for x in sorted(operators, key=lambda x: -len(x)))
380 Use the built-in :func:`next` instead of calling this directly.
453 # Even though it looks like a no-op, creating instances fails
496 # non-whitespace between the newline and block.
511 r"(?P<raw_begin>%s(\-|\+|)\s*raw\s*(?:\-%s\s*|%s))"
[all …]
/third_party/skia/third_party/externals/jinja2/
Dlexer.py1 # -*- coding: utf-8 -*-
36 e[+\-]?(\d+_)*\d+ # exponent part
48 # Python 2, no Unicode support, use ASCII identifiers
49 name_re = re.compile(r"[a-zA-Z_][a-zA-Z0-9_]*")
112 "-": TOKEN_SUB,
142 "(%s)" % "|".join(re.escape(x) for x in sorted(operators, key=lambda x: -len(x)))
380 Use the built-in :func:`next` instead of calling this directly.
453 # Even though it looks like a no-op, creating instances fails
496 # non-whitespace between the newline and block.
511 r"(?P<raw_begin>%s(\-|\+|)\s*raw\s*(?:\-%s\s*|%s))"
[all …]
/third_party/musl/
DCOPYRIGHT3 ----------------------------------------------------------------------
4 Copyright © 2005-2020 Rich Felker, et al.
20 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
24 ----------------------------------------------------------------------
66 Jo-Philipp Wich
77 M Farkas-Dyck (Strake)
111 Portions of this software are derived from third-party works licensed
114 The TRE regular expression implementation (src/regex/reg* and
115 src/regex/tre*) is Copyright © 2001-2008 Ville Laurikari and licensed
116 under a 2-clause BSD license (license text in the source files). The
[all …]
/third_party/boost/libs/xpressive/doc/
Dstatic_regexes.qbk15 technique called ['expression templates] to embed a mini-language dedicated
17 over their string-based brethren. In particular, static regexes:
19 * are syntax-checked at compile-time; they will never fail at run-time due to
23 user-defined actions that execute when parts of your regex match.
25 require no state tables, virtual functions, byte-code or calls through
28 static regex that finds patterns in an array of integers, for instance.
33 C++. Rather, we map the regex ['constructs], picking new syntax that is
38 You create a static regex by assigning one to an object of type _basic_regex_.
39 For instance, the following defines a regex that can be used to find patterns
49 instance, in the regex above, `'$'` and `'.'` match the characters `'$'` and
[all …]
/third_party/boost/tools/bcp/doc/html/
Dindex.html3 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
19 <div class="spirit-nav"></div>
47 <dt><span class="section"><a href="index.html#bcp.syntax.module">module-list</a></span></dt>
48 <dt><span class="section"><a href="index.html#bcp.syntax.output">output-path</a></span></dt>
76 <pre class="programlisting">bcp boost/regex.hpp /foo
79 Copies boost/regex.hpp and all dependencies including the regex source code
80 (in libs/regex/src) and build files (in libs/regex/build) to /foo. Does not
81 copy the regex documentation, test, or example code. Also does not copy the
84 <pre class="programlisting">bcp regex /foo
87 Copies the full regex lib (in libs/regex) including dependencies (such as the
[all …]

12345678910>>...14