HomeSort by relevance Sort by last modified time
    Searched refs:regexp (Results 276 - 300 of 752) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/src/go/types/
example_test.go 28 "regexp"
76 rx := regexp.MustCompile(` 0x[a-fA-F0-9]*`)
  /prebuilts/go/linux-x86/src/mime/quotedprintable/
reader_test.go 15 "regexp"
105 var badSoftRx = regexp.MustCompile(`=([^\r\n]+?\n)|([^\r\n]+$)|(\r$)|(\r[^\n]+\n)|( \r\n)`)
  /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...]
doc.go 10 facilities of package regexp (such as Compile and Match) instead of this package.
  /prebuilts/go/linux-x86/test/bench/garbage/
parser.go 254 "regexp",
255 "regexp/syntax",
  /prebuilts/tools/common/m2/repository/net/sf/json-lib/json-lib/2.3/
json-lib-2.3-jdk15.jar 
  /external/v8/src/regexp/
jsregexp.cc 5 #include "src/regexp/jsregexp.h"
17 #include "src/regexp/interpreter-irregexp.h"
18 #include "src/regexp/jsregexp-inl.h"
19 #include "src/regexp/regexp-macro-assembler-irregexp.h"
20 #include "src/regexp/regexp-macro-assembler-tracer.h"
21 #include "src/regexp/regexp-macro-assembler.h"
22 #include "src/regexp/regexp-parser.h
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/report/
report.go 24 "regexp"
81 Symbol *regexp.Regexp // Symbols to include on disassembly report.
368 // If the regexp source can be parsed as an address, also match
478 func symbolsFromBinaries(prof *profile.Profile, g *graph.Graph, rx *regexp.Regexp, address *uint64, obj plugin.ObjTool) []*objSymbol {
481 // regexp. This is an optimization to speed up pprof.
503 // Find symbols in this binary matching the user regexp.
1019 // Skip any entries that do not match the regexp (for the "peek" command).
    [all...]
source.go 35 // functions with samples that match the regexp rpt.options.symbol.
42 // Identify all the functions that match the regexp provided.
118 // functions with samples that match the regexp rpt.options.symbol.
133 // If the regexp source can be parsed as an address, also match
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/report/
report.go 24 "regexp"
81 Symbol *regexp.Regexp // Symbols to include on disassembly report.
368 // If the regexp source can be parsed as an address, also match
478 func symbolsFromBinaries(prof *profile.Profile, g *graph.Graph, rx *regexp.Regexp, address *uint64, obj plugin.ObjTool) []*objSymbol {
481 // regexp. This is an optimization to speed up pprof.
503 // Find symbols in this binary matching the user regexp.
1019 // Skip any entries that do not match the regexp (for the "peek" command).
    [all...]
source.go 35 // functions with samples that match the regexp rpt.options.symbol.
42 // Identify all the functions that match the regexp provided.
118 // functions with samples that match the regexp rpt.options.symbol.
133 // If the regexp source can be parsed as an address, also match
  /build/kati/
expr.go 22 "regexp"
716 *regexp.Regexp
721 Regexp: regexp.MustCompile(s),
725 func (r literalRE) String() string { return r.Regexp.String() }
752 re := patre.Regexp
  /prebuilts/go/darwin-x86/misc/cgo/testsanitizers/
cc_test.go 18 "regexp"
198 gccRE := regexp.MustCompile(`(\d+)\.(\d+)`)
201 clangRE := regexp.MustCompile(`clang version (\d+)\.(\d+)`)
  /prebuilts/go/linux-x86/misc/cgo/testsanitizers/
cc_test.go 18 "regexp"
198 gccRE := regexp.MustCompile(`(\d+)\.(\d+)`)
201 clangRE := regexp.MustCompile(`clang version (\d+)\.(\d+)`)
  /external/autotest/server/hosts/
cros_label.py 148 regexp = r'^.*\|\s*(\S+_v\d+\.\d+\.\d+-[0-9a-f]+)\s*$'
152 res = re.search(regexp, ecinfo.stdout)
  /external/libedit/src/
search.c 51 #elif defined(REGEXP)
52 #include <regexp.h>
95 #ifdef REGEXP
119 #elif defined (REGEXP)
120 regexp *rp;
139 #elif defined(REGEXP)
  /external/testng/src/test/java/test/
BaseTest.java 390 * @param regexp The regular expression
392 * that matched the regexp
398 public static List<Integer> grep(File fileName, String regexp, List<String> resultLines) {
405 Pattern p = Pattern.compile(".*" + regexp + ".*");
  /frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmAnalyzer.java 227 * The glob pattern is not a regexp. It only accepts the "*" keyword to mean
240 Pattern regexp = getPatternFromGlob(globPattern); local
244 if (regexp.matcher(class_name).matches() &&
252 // transforms the glob pattern in a regexp:
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
MatcherTest.java 695 String regexp = "\\p{P}"; local
698 Pattern pattern = Pattern.compile(regexp);
  /prebuilts/go/darwin-x86/src/regexp/syntax/
doc.go 10 facilities of package regexp (such as Compile and Match) instead of this package.
  /prebuilts/go/darwin-x86/src/runtime/pprof/
pprof_test.go 19 "regexp"
527 if !regexp.MustCompile(strings.Replace(test.re, "\t", "\t+", -1)).MatchString(prof) {
705 if ok, err := regexp.MatchString(r2, lines[3]); err != nil || !ok {
709 if ok, err := regexp.MatchString(r3, lines[5]); err != nil || !ok {
  /prebuilts/go/linux-x86/src/runtime/pprof/
pprof_test.go 19 "regexp"
527 if !regexp.MustCompile(strings.Replace(test.re, "\t", "\t+", -1)).MatchString(prof) {
705 if ok, err := regexp.MatchString(r2, lines[3]); err != nil || !ok {
709 if ok, err := regexp.MatchString(r3, lines[5]); err != nil || !ok {
  /device/linaro/bootloader/edk2/BaseTools/Scripts/
ConvertMasmToNasm.py 103 def MatchAndSetMo(self, regexp, string):
104 self.mo = regexp.match(string)
107 def SearchAndSetMo(self, regexp, string):
108 self.mo = regexp.search(string)
    [all...]
  /external/libxml2/include/libxml/
schemasInternals.h 833 xmlRegexpPtr regexp; /* The regex for patterns */ member in struct:_xmlSchemaFacet
  /external/libxml2/python/
libxml_wrap.h 259 PyObject * libxml_xmlRegexpPtrWrap(xmlRegexpPtr regexp);

Completed in 1263 milliseconds

<<11121314151617181920>>