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++ -*-----===//
28 class Regex { class in namespace:llvm
46 /// Compiles the given regular expression \p Regex.
47 Regex(StringRef Regex, unsigned Flags = NoFlags);
48 ~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
35 Regex::~Regex() {
40 bool Regex::isValid(std::string &Error) {
53 unsigned Regex::getNumMatches() const {
57 bool Regex::match(StringRef String, SmallVectorImpl<StringRef> *Matches){
96 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.cpp22 #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:__anon3799::RegexDirective

Completed in 131 milliseconds