Searched refs:regex (Results 201 - 225 of 469) sorted by relevance
12345678910>>...19
/third_party/rust/crates/memchr/bench/src/memmem/ |
H A D | imp.rs | 304 /// 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(®ex [all...] |
/third_party/python/Lib/ |
H A D | _strptime.py | 185 # 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 D | relocs.h | 17 #include <regex.h>
|
/kernel/linux/linux-5.10/arch/mips/boot/tools/ |
H A D | relocs.h | 17 #include <regex.h>
|
/kernel/linux/linux-6.6/arch/mips/boot/tools/ |
H A D | relocs.h | 17 #include <regex.h>
|
/kernel/linux/linux-6.6/arch/x86/tools/ |
H A D | relocs.h | 17 #include <regex.h>
|
/kernel/liteos_a/testsuites/unittest/process/plimits/smoke/ |
H A D | It_process_plimits_004.cpp | 37 #include <regex>
|
/third_party/musl/libc-test/src/regression/ |
H A D | regex-ere-backref.c | 3 #include <regex.h>
|
H A D | regex-bracket-icase.c | 3 #include <regex.h>
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/i18n/ |
H A D | SimpleLanguageTag.java | 21 import java.util.regex.Pattern;
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/regex/ |
H A D | Node.java | 17 package com.google.i18n.phonenumbers.metadata.regex;
|
H A D | TrailingPathOptimizer.java | 17 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 D | RegexParser.h | 80 void regex();
|
/kernel/linux/linux-5.10/arch/loongarch/boot/tools/ |
H A D | relocs.h | 16 #include <regex.h>
|
/kernel/liteos_a/testsuites/unittest/container/smoke/ |
H A D | It_time_container_009.cpp | 72 std::regex reg("'time:\\[[0-9]+\\]'"); in ItTimeContainer009()
|
/kernel/linux/linux-5.10/Documentation/sphinx/ |
H A D | cdomain.py | 113 match_iterators = [regex.finditer(n) for regex in markup_func]
|
H A D | automarkup.py | 78 # 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 D | automarkup.py | 82 # 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 D | cdomain.py | 113 match_iterators = [regex.finditer(n) for regex in markup_func]
|
/kernel/linux/linux-5.10/tools/lib/traceevent/plugins/ |
H A D | Makefile | 173 --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 D | LocalePriorityList.java | 22 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 D | AbstractPathValueMapper.java | 12 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 D | RegexTransformer.java | 3 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 D | LocalePriorityList.java | 23 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 D | Deprecator.java | 18 import java.util.regex.Matcher; 19 import java.util.regex.Pattern;
|
Completed in 10 milliseconds
12345678910>>...19