Searched defs:Regex (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/Support/
H A DRegex.h1 //===-- Regex.h - Regular Expression matcher implementation -*- C++ -*-----===//
25 class Regex { class in namespace:llvm
39 /// Compiles the given POSIX Extended Regular Expression \arg Regex.
42 Regex(StringRef Regex, unsigned Flags = NoFlags);
43 ~Regex();
/external/llvm/lib/Support/
H A DRegex.cpp1 //===-- Regex.cpp - Regular Expression matcher implementation -------------===//
14 #include "llvm/Support/Regex.h"
22 Regex::Regex(StringRef regex, unsigned Flags) { function in class:Regex
33 Regex::~Regex() {
38 bool Regex::isValid(std::string &Error) {
51 unsigned Regex::getNumMatches() const {
55 bool Regex::match(StringRef String, SmallVectorImpl<StringRef> *Matches){
94 std::string Regex
[all...]
/external/protobuf/python/
H A Dmox.py904 class Regex(Comparator): class in inherits:Comparator
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp21 #include "llvm/Support/Regex.h"
180 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max), Regex(Text) { }
183 if (Regex.isValid(Error))
189 return Regex.match(S);
193 llvm::Regex Regex; member in class:__anon118::RegexDirective

Completed in 110 milliseconds