Home
last modified time | relevance | path

Searched refs:regex (Results 201 - 225 of 469) sorted by relevance

12345678910>>...19

/third_party/rust/crates/memchr/bench/src/memmem/
H A Dimp.rs304 /// regex's implementation of substring search.
306 /// regex is where the concept of using heuristics based on an a priori
307 /// assumption of byte frequency originated. Eventually, regex will just use the
309 /// regex tends to have higher latency. It would be good to measure that.
311 /// For regex, we don't provide oneshots, since that requires compiling the
312 /// regex which we know is going to be ridiculously slow. No real need to
314 pub(crate) mod regex {
321 unimplemented!("regex does not support oneshot searches")
327 let finder = regex::Regex::new(&regex
[all...]
/third_party/python/Lib/
H A D_strptime.py185 # The " [1-9]" part of the regex is to make %c from ANSI C work
220 """Convert a list to a regex string for matching a directive.
234 regex = '|'.join(re_escape(stuff) for stuff in to_convert)
235 regex = '(?P<%s>%s' % (directive, regex)
236 return '%s)' % regex
239 """Return regex pattern for the format string.
242 regex syntax are escaped.
247 # as regex syntax. Cannot use re.escape since we have to deal with
/kernel/linux/linux-5.10/arch/x86/tools/
H A Drelocs.h17 #include <regex.h>
/kernel/linux/linux-5.10/arch/mips/boot/tools/
H A Drelocs.h17 #include <regex.h>
/kernel/linux/linux-6.6/arch/mips/boot/tools/
H A Drelocs.h17 #include <regex.h>
/kernel/linux/linux-6.6/arch/x86/tools/
H A Drelocs.h17 #include <regex.h>
/kernel/liteos_a/testsuites/unittest/process/plimits/smoke/
H A DIt_process_plimits_004.cpp37 #include <regex>
/third_party/musl/libc-test/src/regression/
H A Dregex-ere-backref.c3 #include <regex.h>
H A Dregex-bracket-icase.c3 #include <regex.h>
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/i18n/
H A DSimpleLanguageTag.java21 import java.util.regex.Pattern;
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/regex/
H A DNode.java17 package com.google.i18n.phonenumbers.metadata.regex;
H A DTrailingPathOptimizer.java17 package com.google.i18n.phonenumbers.metadata.regex;
29 import com.google.i18n.phonenumbers.metadata.regex.Edge.SimpleEdge;
94 // but not all, other paths; we could but it's far less likely to reduce regex size). in optimize()
/third_party/skia/src/sksl/lex/
H A DRegexParser.h80 void regex();
/kernel/linux/linux-5.10/arch/loongarch/boot/tools/
H A Drelocs.h16 #include <regex.h>
/kernel/liteos_a/testsuites/unittest/container/smoke/
H A DIt_time_container_009.cpp72 std::regex reg("'time:\\[[0-9]+\\]'"); in ItTimeContainer009()
/kernel/linux/linux-5.10/Documentation/sphinx/
H A Dcdomain.py113 match_iterators = [regex.finditer(n) for regex in markup_func]
H A Dautomarkup.py78 # Associate each regex with the function that will markup its matches
96 match_iterators = [regex.finditer(t) for regex in markup_func]
109 # Call the function associated with the regex that matched this text and
121 # own C role, but both match the same regex, so we try both.
/kernel/linux/linux-6.6/Documentation/sphinx/
H A Dautomarkup.py82 # Associate each regex with the function that will markup its matches
100 match_iterators = [regex.finditer(t) for regex in markup_func]
113 # Call the function associated with the regex that matched this text and
135 # own C role, but both match the same regex, so we try both.
H A Dcdomain.py113 match_iterators = [regex.finditer(n) for regex in markup_func]
/kernel/linux/linux-5.10/tools/lib/traceevent/plugins/
H A DMakefile173 --regex-c++='/_PE\(([^,)]*).*/TEP_ERRNO__\1/'
178 --regex='/_PE(\([^,)]*\).*/TEP_ERRNO__\1/'
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DLocalePriorityList.java22 import java.util.regex.Matcher;
23 import java.util.regex.Pattern;
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/
H A DAbstractPathValueMapper.java12 import java.util.regex.Matcher;
13 import java.util.regex.Pattern;
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/
H A DRegexTransformer.java3 package org.unicode.icu.tool.cldrtoicu.regex;
21 import java.util.regex.Pattern;
115 // A regex to capture any sort-indices in the full path string (which must be removed).
120 // Since the regex transformer works around "ordered elements" in a completely different
126 // Only do expensive regex stuff if there's an "ordered" element with a sort index. in getFullXPathWithoutSortIndices()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DLocalePriorityList.java23 import java.util.regex.Matcher;
24 import java.util.regex.Pattern;
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DDeprecator.java18 import java.util.regex.Matcher;
19 import java.util.regex.Pattern;

Completed in 10 milliseconds

12345678910>>...19