HomeSort by relevance Sort by last modified time
    Searched full:regex (Results 326 - 350 of 5854) sorted by null

<<11121314151617181920>>

  /platform_testing/tests/functional/devicehealthtests/src/com/android/devicehealth/tests/
KnownFailures.java 22 import java.util.regex.Matcher;
23 import java.util.regex.Pattern;
37 // + ":search.*$", Pattern.MULTILINE), // regex pattern
41 // to contain the pattern described by regex
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
SpecialCaseList.h 47 // Note that the wild card is in fact an llvm::Regex, but * is automatically
57 #include "llvm/Support/Regex.h"
64 class Regex;
103 /// "literal" (i.e. no regex metacharacters) are stored in Strings, while all
104 /// others are represented as a single pipe-separated regex in RegEx. The
106 /// literal strings than Regex.
116 std::unique_ptr<Regex> RegEx;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
SpecialCaseList.h 47 // Note that the wild card is in fact an llvm::Regex, but * is automatically
57 #include "llvm/Support/Regex.h"
64 class Regex;
103 /// "literal" (i.e. no regex metacharacters) are stored in Strings, while all
104 /// others are represented as a single pipe-separated regex in RegEx. The
106 /// literal strings than Regex.
116 std::unique_ptr<Regex> RegEx;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
SpecialCaseList.h 47 // Note that the wild card is in fact an llvm::Regex, but * is automatically
57 #include "llvm/Support/Regex.h"
64 class Regex;
103 /// "literal" (i.e. no regex metacharacters) are stored in Strings, while all
104 /// others are represented as a single pipe-separated regex in RegEx. The
106 /// literal strings than Regex.
116 std::unique_ptr<Regex> RegEx;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
SpecialCaseList.h 47 // Note that the wild card is in fact an llvm::Regex, but * is automatically
57 #include "llvm/Support/Regex.h"
64 class Regex;
103 /// "literal" (i.e. no regex metacharacters) are stored in Strings, while all
104 /// others are represented as a single pipe-separated regex in RegEx. The
106 /// literal strings than Regex.
116 std::unique_ptr<Regex> RegEx;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
SpecialCaseList.h 47 // Note that the wild card is in fact an llvm::Regex, but * is automatically
57 #include "llvm/Support/Regex.h"
64 class Regex;
103 /// "literal" (i.e. no regex metacharacters) are stored in Strings, while all
104 /// others are represented as a single pipe-separated regex in RegEx. The
106 /// literal strings than Regex.
116 std::unique_ptr<Regex> RegEx;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
SpecialCaseList.h 47 // Note that the wild card is in fact an llvm::Regex, but * is automatically
57 #include "llvm/Support/Regex.h"
64 class Regex;
103 /// "literal" (i.e. no regex metacharacters) are stored in Strings, while all
104 /// others are represented as a single pipe-separated regex in RegEx. The
106 /// literal strings than Regex.
116 std::unique_ptr<Regex> RegEx;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
SpecialCaseList.h 47 // Note that the wild card is in fact an llvm::Regex, but * is automatically
57 #include "llvm/Support/Regex.h"
64 class Regex;
103 /// "literal" (i.e. no regex metacharacters) are stored in Strings, while all
104 /// others are represented as a single pipe-separated regex in RegEx. The
106 /// literal strings than Regex.
116 std::unique_ptr<Regex> RegEx;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
SpecialCaseList.h 47 // Note that the wild card is in fact an llvm::Regex, but * is automatically
57 #include "llvm/Support/Regex.h"
64 class Regex;
103 /// "literal" (i.e. no regex metacharacters) are stored in Strings, while all
104 /// others are represented as a single pipe-separated regex in RegEx. The
106 /// literal strings than Regex.
116 std::unique_ptr<Regex> RegEx;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.alg/re.alg.match/
grep.pass.cpp 10 // <regex>
19 #include <regex>
30 assert(std::regex_match(s, m, std::regex("tour\nto\ntournament",
46 assert(!std::regex_match(s, m, std::regex("tour\n\ntournament",
  /tools/loganalysis/src/com/android/loganalysis/parser/
TraceFormatParser.java 24 import java.util.regex.Matcher;
25 import java.util.regex.Pattern;
28 * Read trace format and generate a regex that matches output of such format.
31 * string, finds all parameters, and generates a regex that matches output of such format. Each
32 * parameter corresponds to a named-capturing group in the regex. The parameter names are converted
33 * to camel case because Java regex group name must contain only letters and numbers.
80 // regex building blocks to match simple numeric/hex/string parameters, exposed for unit testing
116 // scan the printf string, categorizing parameters and generating a matching regex
154 /** Helper function to create a regex group with given name. */
  /external/autotest/client/common_lib/
android_utils.py 20 def get_config_value_regex(section, regex):
21 """Get config values from global config based on regex of the key.
24 @param regex: Regular expression of the key pattern.
26 @return: A dictionary of all config values matching the regex. Value is
29 configs = CONFIG.get_config_value_regex(section, regex)
32 match = re.match(regex, key)
54 # regex pattern for CLIENT/android_aliases_[product]. For example,
66 # regex pattern for CLIENT/android_board_name[product]. For example,
136 # regex pattern for CLIENT/android_standalone_images_[board]. For example,
148 # regex pattern for CLIENT/android_standalone_images_[board]. For example
    [all...]
  /external/libtextclassifier/
zlib-utils.cc 119 // Compress regex rules.
135 DatetimeModelPattern_::RegexT* regex = pattern->regexes[j].get(); local
136 regex->compressed_pattern.reset(new CompressedBufferT);
137 zlib_compressor->Compress(regex->pattern,
138 regex->compressed_pattern.get());
139 regex->pattern.clear();
179 // Decompress regex rules.
197 DatetimeModelPattern_::RegexT* regex = pattern->regexes[j].get(); local
198 if (!DecompressBuffer(regex->compressed_pattern.get(),
199 zlib_decompressor.get(), &regex->pattern))
    [all...]
  /cts/hostsidetests/cpptools/src/com/android/cts/cpptools/
RunAsHostTest.java 21 import java.util.regex.Pattern;
22 import java.util.regex.Matcher;
  /cts/tests/autofillservice/src/android/autofillservice/cts/
AntiTrimmerTextWatcher.java 22 import java.util.regex.Pattern;
30 * Regex used to revert a String that was "anti-trimmed".
  /cts/tests/tests/os/src/android/os/cts/
SPMITest.java 24 import java.util.regex.Matcher;
25 import java.util.regex.Pattern;
  /cts/tests/tests/security/src/android/security/cts/
EncryptionTest.java 29 import java.util.regex.Matcher;
30 import java.util.regex.Pattern;
  /external/autotest/site_utils/stats/
log_daemon_common.py 17 regex and emitter is a function called when the regex matches.
  /external/capstone/packages/macports/devel/capstone/
Portfile 37 livecheck.type regex
39 livecheck.regex ${name}-(\[0-9.\]+)${extract.suffix}
  /external/icu/icu4c/source/i18n/
regexst.h 12 // For the public Regular Expression API, see the file "unicode/regex.h"
44 UnicodeSet *fPropSets[URX_LAST_SET]; // The sets for common regex items, e.g. \s
  /external/libcxx/test/libcxx/experimental/memory/memory.resource.aliases/
header_regex_libcpp_version.pass.cpp 12 // <experimental/regex>
14 #include <experimental/regex>
  /external/libcxx/test/std/re/re.alg/re.alg.replace/
test1.pass.cpp 10 // <regex>
22 #include <regex>
31 std::regex phone_numbers("\\d{3}-\\d{4}");
43 std::regex phone_numbers("\\d{3}-\\d{4}");
56 std::regex phone_numbers("\\d{3}-\\d{4}");
69 std::regex phone_numbers("\\d{3}-\\d{4}");
82 std::regex phone_numbers("\\d{3}-\\d{4}");
95 std::regex phone_numbers("\\d{3}-\\d{4}");
test2.pass.cpp 10 // <regex>
22 #include <regex>
31 std::regex phone_numbers("\\d{3}-\\d{4}");
43 std::regex phone_numbers("\\d{3}-\\d{4}");
56 std::regex phone_numbers("\\d{3}-\\d{4}");
69 std::regex phone_numbers("\\d{3}-\\d{4}");
82 std::regex phone_numbers("\\d{3}-\\d{4}");
95 std::regex phone_numbers("\\d{3}-\\d{4}");
  /external/libcxx/test/std/re/re.iter/re.regiter/re.regiter.cnstr/
default.pass.cpp 10 // <regex>
16 #include <regex>
  /external/libcxx/test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/
default.pass.cpp 10 // <regex>
16 #include <regex>

Completed in 2080 milliseconds

<<11121314151617181920>>