HomeSort by relevance Sort by last modified time
    Searched defs:Regexp (Results 1 - 18 of 18) sorted by null

  /prebuilts/go/darwin-x86/test/interface/
pointer.go 16 type Regexp struct {
  /prebuilts/go/linux-x86/test/interface/
pointer.go 16 type Regexp struct {
  /external/llvm/lib/Support/
SpecialCaseList.cpp 96 // Get our prefix and unparsed regexp.
107 std::string Regexp = SplitRegexp.first;
110 // See if we can store Regexp in Strings.
111 if (Regex::isLiteralERE(Regexp)) {
112 Entries[Prefix][Category].Strings.insert(Regexp);
117 for (size_t pos = 0; (pos = Regexp.find("*", pos)) != std::string::npos;
119 Regexp.replace(pos, strlen("*"), ".*");
122 // Check that the regexp is valid.
123 Regex CheckRE(Regexp);
131 // Add this regexp into the proper group by its prefix
    [all...]
  /prebuilts/go/darwin-x86/src/regexp/syntax/
regexp.go 8 // In this package, re is always a *Regexp and r is always a rune.
17 // A Regexp is a node in a regular expression syntax tree.
18 type Regexp struct {
21 Sub []*Regexp // subexpressions, if any
22 Sub0 [1]*Regexp // storage for short Sub
62 func (x *Regexp) Equal(y *Regexp) bool {
115 func writeRegexp(b *bytes.Buffer, re *Regexp) {
245 func (re *Regexp) String() string {
291 // MaxCap walks the regexp to find the maximum capture index
    [all...]
  /prebuilts/go/linux-x86/src/regexp/syntax/
regexp.go 8 // In this package, re is always a *Regexp and r is always a rune.
17 // A Regexp is a node in a regular expression syntax tree.
18 type Regexp struct {
21 Sub []*Regexp // subexpressions, if any
22 Sub0 [1]*Regexp // storage for short Sub
62 func (x *Regexp) Equal(y *Regexp) bool {
115 func writeRegexp(b *bytes.Buffer, re *Regexp) {
245 func (re *Regexp) String() string {
291 // MaxCap walks the regexp to find the maximum capture index
    [all...]
  /external/regex-re2/re2/
regexp.cc 9 #include "re2/regexp.h"
16 Regexp::Regexp(RegexpOp op, ParseFlags parse_flags)
32 Regexp::~Regexp() {
34 LOG(DFATAL) << "Regexp not destroyed.";
52 // If it's possible to destroy this regexp without recurring,
54 bool Regexp::QuickDestroy() {
62 static map<Regexp*, int> *ref_map;
65 int Regexp::Ref()
    [all...]
re2.h 13 // REGEXP SYNTAX:
195 class Regexp;
236 ErrorTrailingBackslash, // trailing \ at end of regexp
241 ErrorBadUTF8, // invalid UTF-8 in regexp
255 Quiet // do not log about regexp parse errors
286 // portion of the regexp.
289 // Returns the program size, a very approximate measure of a regexp's "cost".
293 // Returns the underlying Regexp; not for general use.
296 re2::Regexp* Regexp() const { return entire_regexp_;
    [all...]
regexp.h 17 // Any operation that traverses the Regexp structures should be written
18 // using Regexp::Walker (see walker-inl.h), not recursively, because deeply nested
27 // Regexp::Parse parses regular expressions encoded in UTF-8.
39 // Regexp::Parse. In particular, many of the basic Perl additions
42 // If parsed with the flag Regexp::Latin1, both the regular expression
48 // Once Regexp has parsed a regular expression, it provides methods
53 // To call a sublibrary, Regexp does not simply prepare a
55 // sublibrary. Instead, Regexp prepares, from its own parsed form, the
61 // to be that used by Regexp's parser, not the syntax expected
62 // by the sublibrary. Regexp might accept a restricted o
    [all...]
  /prebuilts/go/darwin-x86/src/regexp/
regexp.go 5 // Package regexp implements regular expression search.
12 // go doc regexp/syntax
14 // The regexp implementation provided by this package is
19 // http://swtch.com/~rsc/regexp/regexp1.html
24 // There are 16 methods of Regexp that match a regular expression and identify
65 package regexp package
70 "regexp/syntax"
78 // Regexp is the representation of a compiled regular expression.
79 // A Regexp is safe for concurrent use by multiple goroutines.
80 type Regexp struct
    [all...]
  /prebuilts/go/linux-x86/src/regexp/
regexp.go 5 // Package regexp implements regular expression search.
12 // go doc regexp/syntax
14 // The regexp implementation provided by this package is
19 // http://swtch.com/~rsc/regexp/regexp1.html
24 // There are 16 methods of Regexp that match a regular expression and identify
65 package regexp package
70 "regexp/syntax"
78 // Regexp is the representation of a compiled regular expression.
79 // A Regexp is safe for concurrent use by multiple goroutines.
80 type Regexp struct
    [all...]
  /external/guice/extensions/struts2/lib/
ant-1.6.5.jar 
  /prebuilts/misc/common/robolectric/lib/
ant-1.8.0.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.7.0/
ant-1.7.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.2/
ant-1.8.2.jar 

Completed in 304 milliseconds