HomeSort by relevance Sort by last modified time
    Searched refs:regexp (Results 251 - 275 of 680) sorted by null

<<11121314151617181920>>

  /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",
  /external/v8/src/
value-serializer.cc 655 void ValueSerializer::WriteJSRegExp(JSRegExp* regexp) {
658 Utils::ToLocal(handle(regexp->Pattern(), isolate_));
663 WriteVarint(static_cast<uint32_t>(regexp->GetFlags()));
1351 Handle<JSRegExp> regexp; local
    [all...]
  /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...]
  /external/bison/
maint.mk 65 # You can override this variable in cfg.mk to set your own regexp
104 this-vc-tag-regexp = v$(VERSION_REGEXP)
109 this-vc-tag-regexp = $(this-vc-tag)
143 # Select which lines of NEWS are searched for $(news-check-regexp).
145 # lines 1..10 of NEWS for $(news-check-regexp).
148 news-check-regexp ?= '^\*.* $(VERSION_REGEXP) \($(today)\)'
221 # grep-E-style regexp selecting the files to check. For in_vc_files,
222 # the regexp is used to select matching files from the list of all
229 # Select the files (non) containing strings matching this regexp.
530 # 'print Regexp::Assemble->new(file => "/dev/stdin")->as_string'|sed 's/\?://g
    [all...]
  /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/src/cmd/doc/
doc_test.go 10 "regexp"
413 re, err := regexp.Compile(yes)
423 re, err := regexp.Compile(no)
  /prebuilts/go/linux-x86/src/cmd/doc/
doc_test.go 10 "regexp"
413 re, err := regexp.Compile(yes)
423 re, err := regexp.Compile(no)
  /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/regex-re2/
Makefile 73 re2/regexp.h\
106 obj/re2/regexp.o\
  /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/base/tools/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 654 String regexp = "\\p{P}"; local
657 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 20 "regexp"
536 if !regexp.MustCompile(strings.Replace(test.re, "\t", "\t+", -1)).MatchString(prof) {
653 if ok, err := regexp.MatchString(r2, lines[3]); err != nil || !ok {
657 if ok, err := regexp.MatchString(r3, lines[5]); err != nil || !ok {
  /prebuilts/go/linux-x86/src/runtime/pprof/
pprof_test.go 20 "regexp"
536 if !regexp.MustCompile(strings.Replace(test.re, "\t", "\t+", -1)).MatchString(prof) {
653 if ok, err := regexp.MatchString(r2, lines[3]); err != nil || !ok {
657 if ok, err := regexp.MatchString(r3, lines[5]); err != nil || !ok {
  /device/linaro/bootloader/edk2/BaseTools/Scripts/
ConvertMasmToNasm.py 102 def MatchAndSetMo(self, regexp, string):
103 self.mo = regexp.match(string)
106 def SearchAndSetMo(self, regexp, string):
107 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);
  /external/strace/maint/
ioctls_sym.sh 37 regexp="${r_define}${r_cmd_name}${r_value}"
408 # Keep this in sync with $regexp by replacing $r_cmd_name with $r_local_names.
  /external/testng/ant/3rdparty/
DTDDoc.jar 
  /prebuilts/go/darwin-x86/src/cmd/go/
vendor_test.go 14 "regexp"
106 re := regexp.MustCompile(`cannot find package "notfound" in any of:

Completed in 1113 milliseconds

<<11121314151617181920>>