summaryrefslogtreecommitdiff
path: root/src/pkg/regexp/all_test.go
Commit message (Expand)AuthorAgeFilesLines
* regexp: skip TestOnePassCutoff in short modeDmitriy Vyukov2014-06-241-0/+13
* regexp: add one-pass optimization from RE2David Covert2014-03-071-0/+55
* all: fix some mistakes found by go tool vet .Rob Pike2013-09-271-4/+4
* regexp: fix index panic in ReplaceErik St. Martin2012-12-221-0/+4
* regexp: re-enable TestBadCompileRuss Cox2012-12-111-24/+23
* regexp: add SplitRick Arnold2012-11-271-0/+54
* regexp: allow substitutions in Replace, ReplaceStringRuss Cox2012-02-071-2/+86
* regexp: add SubexpNamesRuss Cox2012-01-191-22/+37
* panics: use the new facilities of testing.B insteadRob Pike2011-12-201-8/+4
* all: rename os.Error to error in various non-code contextsRuss Cox2011-11-011-1/+1
* src/pkg/[n-z]*: gofix -r error -force=errorRuss Cox2011-11-011-3/+2
* regexp: move to old/regexp, replace with exp/regexpRuss Cox2011-09-261-2/+5
* pkg: spelling tweaks, I-ZRobert Hencke2011-05-301-1/+1
* regexp tests: make some benchmarks more meaningfulRob Pike2011-02-011-4/+4
* regexp: reject bare ?Ben Lynn2011-01-191-1/+2
* regexp: fix performance bug, make anchored searches fail fast.Rob Pike2011-01-031-0/+46
* regexp: change Expr() to String(); add HasOperator method to Regexp.Rob Pike2010-12-171-15/+20
* regexp: add HasMeta and regexp.Expr().Rob Pike2010-12-161-0/+12
* gofmt -s -w src miscRobert Griesemer2010-10-221-77/+77
* regexp: delete the deprecated methods and tests.Rob Pike2010-08-121-248/+16
* regexp: restore accidentally deleted test item.Rob Pike2010-06-221-0/+1
* regexp: bug fix: need to track whether match begins with fixed prefix.Rob Pike2010-06-221-1/+2
* Optimization to regexp _CharClass: keep track of overall range ofKyle Consalus2010-06-021-4/+32
* regexp: allow escaping of any punctuationRuss Cox2010-04-261-0/+9
* regex: Remove unneeded imports from test.Christopher Wedgwood2010-03-071-3/+0
* regexp: add ReplaceAllFunc and ReplaceAllStringFuncAndrew Gerrand2010-03-071-0/+46
* strings: delete Runes, BytesRuss Cox2010-02-251-5/+5
* The prefix optimization applies only to the first iteration.Rob Pike2010-02-171-1/+4
* Add query to find number of subexpressions.Peter Froehlich2009-12-241-0/+28
* 1) Change default gofmt default settings forRobert Griesemer2009-12-151-103/+103
* fix bug in prefix code: must stop one character before any potential match of...Rob Pike2009-11-231-0/+2
* add a match arena to regexp to avoid generating garbage.Rob Pike2009-11-191-0/+27
* two easy optimizations for regexp:Rob Pike2009-11-191-0/+5
* move evaluation of null-matching instructions one iteration earlier.Rob Pike2009-11-141-10/+6
* remove dead code from testRob Pike2009-11-121-68/+8
* - replaced gofmt expression formatting algorithm withRobert Griesemer2009-11-091-3/+3
* remove semis after statements in one-statement statement listsRobert Griesemer2009-11-091-29/+29
* more lgtm files from gofmtRuss Cox2009-10-081-3/+3
* apply gofmt to rand reflect regexp rpc runtime sort strconv strings sync sysc...Russ Cox2009-10-071-93/+95
* more "declared and not used".Russ Cox2009-09-151-5/+5
* convert non-low-level non-google pkg codeRuss Cox2009-08-121-1/+0
* make a simpler regexp implementation with fewer dependencies and put it insid...Rob Pike2009-08-111-14/+14
* Add methods AllMatches, AllMatchesString, AllMatchesIter,Stephen Ma2009-08-091-0/+99
* support []byte (more efficient) as well as string in the interfaces.Rob Pike2009-08-051-5/+57
* special case: recognize '[^\n]' and make it as fast as '.'Rob Pike2009-08-051-0/+2
* Add a ReplaceAll method to Regexp.Steve Newman2009-06-181-0/+122
* mv src/lib to src/pkgRob Pike2009-06-091-0/+235