Home
last modified time | relevance | path

Searched refs:regular (Results 1 – 25 of 875) sorted by relevance

12345678910>>...35

/third_party/vk-gl-cts/android/cts/master/vk-master-2020-03-01/
Dmemory.txt17 dEQP-VK.memory.binding.priority.regular.suballocated.buffer_33
18 dEQP-VK.memory.binding.priority.regular.suballocated.buffer_257
19 dEQP-VK.memory.binding.priority.regular.suballocated.buffer_4087
20 dEQP-VK.memory.binding.priority.regular.suballocated.buffer_8095
21 dEQP-VK.memory.binding.priority.regular.suballocated.buffer_1048577
22 dEQP-VK.memory.binding.priority.regular.suballocated.image_8_8
23 dEQP-VK.memory.binding.priority.regular.suballocated.image_8_33
24 dEQP-VK.memory.binding.priority.regular.suballocated.image_8_257
25 dEQP-VK.memory.binding.priority.regular.suballocated.image_33_8
26 dEQP-VK.memory.binding.priority.regular.suballocated.image_33_33
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DTestLocaleValidity.java187 check(tests, foundKeys, Datasubtype.regular, Datasubtype.unknown); in testBasic()
217 check(tests, null, Datasubtype.regular, Datasubtype.unknown);
231 check(tests, null, Datasubtype.regular, Datasubtype.unknown);
242 check(tests, null, Datasubtype.regular, Datasubtype.unknown, Datasubtype.deprecated);
302 …showValid(Datasubtype.unknown, Datatype.script, EnumSet.of(Datasubtype.regular, Datasubtype.unknow…
303 showValid(null, Datatype.script, EnumSet.of(Datasubtype.regular), "Zzzz");
304 … showValid(Datasubtype.regular, Datatype.subdivision, EnumSet.of(Datasubtype.regular), "US-CA");
305 … showValid(Datasubtype.regular, Datatype.subdivision, EnumSet.of(Datasubtype.regular), "US", "CA");
306 showValid(null, Datatype.subdivision, EnumSet.of(Datasubtype.regular), "US-?");
307 showValid(null, Datatype.subdivision, EnumSet.of(Datasubtype.regular), "US", "?");
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DTestLocaleValidity.java186 check(tests, foundKeys, Datasubtype.regular, Datasubtype.unknown); in testBasic()
216 check(tests, null, Datasubtype.regular, Datasubtype.unknown);
230 check(tests, null, Datasubtype.regular, Datasubtype.unknown);
241 check(tests, null, Datasubtype.regular, Datasubtype.unknown, Datasubtype.deprecated);
301 …showValid(Datasubtype.unknown, Datatype.script, EnumSet.of(Datasubtype.regular, Datasubtype.unknow…
302 showValid(null, Datatype.script, EnumSet.of(Datasubtype.regular), "Zzzz");
303 … showValid(Datasubtype.regular, Datatype.subdivision, EnumSet.of(Datasubtype.regular), "US-CA");
304 … showValid(Datasubtype.regular, Datatype.subdivision, EnumSet.of(Datasubtype.regular), "US", "CA");
305 showValid(null, Datatype.subdivision, EnumSet.of(Datasubtype.regular), "US-?");
306 showValid(null, Datatype.subdivision, EnumSet.of(Datasubtype.regular), "US", "?");
/third_party/mesa3d/src/compiler/nir/
Dnir_lower_goto_ifs.c53 struct path regular; member
208 if (_mesa_set_search(routing->regular.reachable, target)) { in route_to()
209 set_path_vars(b, routing->regular.fork, target); in route_to()
240 if (_mesa_set_search(routing->regular.reachable, then_block)) { in route_to_cond()
241 if (_mesa_set_search(routing->regular.reachable, else_block)) { in route_to_cond()
242 set_path_vars_cond(b, routing->regular.fork, condition, in route_to_cond()
303 print_block_set(routing->regular.reachable); in loop_routing_start()
319 if (_mesa_set_search(routing->regular.reachable, entry->key)) in loop_routing_start()
329 routing->brk = routing_backup->regular; in loop_routing_start()
331 routing->regular = loop_path; in loop_routing_start()
[all …]
/third_party/curl/tests/data/
Dtest111455 Filetype: regular file
65 Filetype: regular file
75 Filetype: regular file
97 Filetype: regular file
106 Filetype: regular file
122 Filetype: regular file
Dtest57664 Filetype: regular file
77 Filetype: regular file
90 Filetype: regular file
121 Filetype: regular file
133 Filetype: regular file
175 Filetype: regular file
/third_party/libabigail/doc/manuals/
Dlibabigail-concepts.rst110 The value of some properties might be a regular expression. In that
111 case, they must comply with the syntax of `extended POSIX regular
113 …s/manual/html_node/find_html/posix_002dextended-regular-expression-syntax.html#posix_002dextended-
114 Note that Libabigail uses the regular expression engine of the `GNU C
117 Escaping a character in a regular expression
122 character ``*`` is a special character in the extended POSIX regular
123 expression syntax. And that character must be escaped for the regular
124 expression engine. Thus the regular expression that would match the
133 that is handed to the regular expression engine. Hence the ``\\``
136 So, in short, to escape a character in a regular expression, always
[all …]
/third_party/python/Doc/library/
Dre.rst14 This module provides regular expression matching operations similar to
29 string, because the regular expression must be ``\\``, and each
30 backslash must be expressed as ``\\`` inside a regular Python string
34 will happen even if it is a valid escape sequence for a regular expression.
36 The solution is to use Python's raw string notation for regular expression
43 It is important to note that most regular expression operations are available as
45 :ref:`compiled regular expressions <re-objects>`. The functions are shortcuts
61 A regular expression (or RE) specifies a set of strings that matches it; the
63 regular expression (or if a given regular expression matches a particular
66 Regular expressions can be concatenated to form new regular expressions; if *A*
[all …]
/third_party/typescript/tests/baselines/reference/
DfreshLiteralInference.types6 const value = f1("1"); // regular "1"
12 let x1 = value; // regular "1"
22 const obj2 = f2({ value: "1" }); // { value: regular "1" }
30 let x2 = obj2.value; // regular "1"
DarrowFunctionParsingDoesNotConfuseParenthesizedObjectForArrowHead.types11 …e that errors will be gone run: () => { //replace arrow function with regular function to see t…
12 …e that errors will be gone run: () => { //replace arrow function with regular function to see t…
13 …e that errors will be gone run: () => { //replace arrow function with regular function to see t…
21 run: () => { //replace arrow function with regular function to see that errors will be gone
23 >() => { //replace arrow function with regular function to see that errors will be gone // c…
DfreshLiteralInference.symbols9 const value = f1("1"); // regular "1"
13 let x1 = value; // regular "1"
26 const obj2 = f2({ value: "1" }); // { value: regular "1" }
31 let x2 = obj2.value; // regular "1"
DunterminatedRegexAtEndOfSource1.errors.txt1 tests/cases/compiler/unterminatedRegexAtEndOfSource1.ts(1,10): error TS1161: Unterminated regular e…
7 !!! error TS1161: Unterminated regular expression literal.
DparserMissingToken2.errors.txt1 …t5/MissingTokens/parserMissingToken2.ts(1,2): error TS1161: Unterminated regular expression litera…
7 !!! error TS1161: Unterminated regular expression literal.
Dparser645086_1.errors.txt3 …ipt5/RegressionTests/parser645086_1.ts(1,15): error TS1161: Unterminated regular expression litera…
13 !!! error TS1161: Unterminated regular expression literal.
Dparser645086_2.errors.txt3 …ipt5/RegressionTests/parser645086_2.ts(1,16): error TS1161: Unterminated regular expression litera…
13 !!! error TS1161: Unterminated regular expression literal.
DparserRegularExpressionDivideAmbiguity4.errors.txt2 …serRegularExpressionDivideAmbiguity4.ts(1,6): error TS1161: Unterminated regular expression litera…
11 !!! error TS1161: Unterminated regular expression literal.
/third_party/rust/crates/regex/regex-syntax/
DREADME.md3 This crate provides a robust regular expression parser.
18 is a faithful abstract syntax of a regular expression, and can convert regular
20 form. The latter type is a high level intermediate representation of a regular
23 structure of the regular expression. While an `Hir` can be converted back to
50 compile a regular expression into an automaton. Therefore, there is little need
54 crate is intended to be reasonably safe to use with user supplied regular
65 or all of these data tables. If a regular expression attempts to use Unicode
/third_party/ffmpeg/libavcodec/mips/
Dvp9dsp_mips.h89 VP9_8TAP_MIPS_MSA_FUNC(64, regular, FILTER_8TAP_REGULAR);
90 VP9_8TAP_MIPS_MSA_FUNC(32, regular, FILTER_8TAP_REGULAR);
91 VP9_8TAP_MIPS_MSA_FUNC(16, regular, FILTER_8TAP_REGULAR);
92 VP9_8TAP_MIPS_MSA_FUNC(8, regular, FILTER_8TAP_REGULAR);
93 VP9_8TAP_MIPS_MSA_FUNC(4, regular, FILTER_8TAP_REGULAR);
268 VP9_8TAP_MIPS_MMI_FUNC(64, regular, FILTER_8TAP_REGULAR);
269 VP9_8TAP_MIPS_MMI_FUNC(32, regular, FILTER_8TAP_REGULAR);
270 VP9_8TAP_MIPS_MMI_FUNC(16, regular, FILTER_8TAP_REGULAR);
271 VP9_8TAP_MIPS_MMI_FUNC(8, regular, FILTER_8TAP_REGULAR);
272 VP9_8TAP_MIPS_MMI_FUNC(4, regular, FILTER_8TAP_REGULAR);
/third_party/rust/crates/regex/
DREADME.md3 A Rust library for parsing, compiling, and executing regular expressions. Its
4 syntax is similar to Perl-style regular expressions, but lacks a few features
6 linear time with respect to the size of the regular expression and search text.
85 It is an anti-pattern to compile the same regular expression in a loop since
91 In Rust, it can sometimes be a pain to pass regular expressions around if
94 regular expressions are compiled exactly once.
112 ### Usage: match regular expressions on `&[u8]`
145 ### Usage: match multiple regular expressions simultaneously
148 overlapping) regular expressions in a single scan of the search text:
180 ### Usage: a regular expression parser
[all …]
DHACKING.md7 you can do no better than Russ Cox's article series on implementing regular
13 As you probably already know, this library executes regular expressions using
15 with respect to both the regular expression and the text being searched.
25 speed up the Pike VM: extract one or more literal prefixes from the regular
37 Of course, detecting prefix literals can only take us so far. Not all regular
46 regular expressions.
76 prefix and suffix literals from regular expressions.
81 syntax for a regular expression and the output is a sequence of opcodes that
87 Consider a simple regular expression like `a|b`. Its compiled form looks like
145 we must have compiled the regular expression *in reverse*.
[all …]
/third_party/python/Modules/_decimal/tests/
Drunall.bat29 echo # ==================== regular tests =======================
57 echo # ==================== regular tests =======================
91 echo # ==================== regular tests =======================
119 echo # ==================== regular tests =======================
/third_party/rust/crates/regex/regex-capi/
DREADME.md50 All regular expressions must be valid UTF-8.
60 matched or not depends on the regular expression. For example, with the
71 toggled in the regular expression itself, this allows one to pick and choose
72 which parts of the regular expression must match UTF-8 or not.
76 one wants to match arbitrary bytes. The flag can be disabled in a regular
81 possible to use C literal escape sequences in this case since regular
/third_party/python/Doc/howto/
Dregex.rst18 This document is an introductory tutorial to using regular expressions in Python
42 The regular expression language is relatively small and restricted, so not all
43 possible string processing tasks can be done using regular expressions. There
44 are also tasks that *can* be done with regular expressions, but the expressions
47 elaborate regular expression, it will also probably be more understandable.
53 We'll start by learning about the simplest possible regular expressions. Since
54 regular expressions are used to operate on strings, we'll begin with the most
57 For a detailed explanation of the computer science underlying regular
66 regular expression ``test`` will match the string ``test`` exactly. (You can
121 :const:`re.ASCII` flag when compiling the regular expression.
[all …]
/third_party/ffmpeg/libavcodec/arm/
Dvp9dsp_init_arm.c61 decl_mc_func(op, regular, dir, sz); \
86 define_8tap_2d_fn(put, regular, sz) \
89 define_8tap_2d_fn(avg, regular, sz) \
119 init_mc_func(idx, 0, put, FILTER_8TAP_REGULAR, regular, dir, mx, my, sz, pfx); \ in vp9dsp_mc_init_arm()
122 init_mc_func(idx, 1, avg, FILTER_8TAP_REGULAR, regular, dir, mx, my, sz, pfx); \ in vp9dsp_mc_init_arm()
/third_party/ffmpeg/libavcodec/aarch64/
Dvp9dsp_init_aarch64.c61 decl_mc_func(op, regular, dir, sz); \
89 define_8tap_2d_fn(put, regular, sz) \
92 define_8tap_2d_fn(avg, regular, sz) \
132 init_mc_func(idx, 0, put, FILTER_8TAP_REGULAR, regular, dir, mx, my, sz, pfx); \ in vp9dsp_mc_init_aarch64()
135 init_mc_func(idx, 1, avg, FILTER_8TAP_REGULAR, regular, dir, mx, my, sz, pfx); \ in vp9dsp_mc_init_aarch64()

12345678910>>...35