index
:
golang
debian-sid
pristine-tar
upstream-sid
[no description]
Dyson
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
pkg
/
regexp
/
regexp.go
Age
Commit message (
Expand
)
Author
Files
Lines
2011-02-18
Imported Upstream version 2011.02.15
upstream/2011.02.15
Ondřej Surý
1
-73
/
+223
2011-02-14
Imported Upstream version 2011-02-01.1
upstream/2011-02-01.1
Ondřej Surý
1
-28
/
+22
2011-01-17
Imported Upstream version 2011.01.12
upstream/2011.01.12
Ondřej Surý
1
-420
/
+530
2010-06-22
regexp: bug fix: need to track whether match begins with fixed prefix.
Rob Pike
1
-16
/
+18
2010-06-02
Optimization to regexp _CharClass: keep track of overall range of
Kyle Consalus
1
-6
/
+16
2010-04-26
regexp: allow escaping of any punctuation
Russ Cox
1
-4
/
+4
2010-03-31
testing/regexp: use recover.
Rob Pike
1
-3
/
+1
2010-03-31
regexp: use panic/recover to handle errors
Rob Pike
1
-72
/
+50
2010-03-26
regexp: don't return non-nil *Regexp if there is an error.
Rob Pike
1
-0
/
+3
2010-03-24
delete all uses of panicln by rewriting them using panic or,
Rob Pike
1
-1
/
+1
2010-03-16
gofmt: more consistent formatting of const/var decls
Robert Griesemer
1
-11
/
+11
2010-03-07
regexp: add ReplaceAllFunc and ReplaceAllStringFunc
Andrew Gerrand
1
-2
/
+18
2010-02-17
The prefix optimization applies only to the first iteration.
Rob Pike
1
-5
/
+13
2009-12-24
Add query to find number of subexpressions.
Peter Froehlich
1
-0
/
+3
2009-12-15
1) Change default gofmt default settings for
Robert Griesemer
1
-446
/
+446
2009-11-24
Change to container/vector interface:
Robert Griesemer
1
-2
/
+2
2009-11-23
fix bug in prefix code: must stop one character before any potential match of...
Rob Pike
1
-3
/
+6
2009-11-20
gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkg
Russ Cox
1
-7
/
+7
2009-11-20
fix build
Rob Pike
1
-1
/
+0
2009-11-20
slight simplification made possible by the code now processing match states
Rob Pike
1
-4
/
+3
2009-11-19
add a match arena to regexp to avoid generating garbage.
Rob Pike
1
-46
/
+106
2009-11-19
two easy optimizations for regexp:
Rob Pike
1
-13
/
+78
2009-11-18
remove bytes.Copy
Rob Pike
1
-15
/
+7
2009-11-14
move evaluation of null-matching instructions one iteration earlier.
Rob Pike
1
-31
/
+47
2009-11-09
- replaced gofmt expression formatting algorithm with
Robert Griesemer
1
-22
/
+22
2009-11-09
remove semis after statements in one-statement statement lists
Robert Griesemer
1
-71
/
+71
2009-11-06
- fine-tuning of one-line func heuristic (nodes.go)
Robert Griesemer
1
-93
/
+31
2009-11-05
gofmt'ed missing regexp file
Robert Griesemer
1
-137
/
+187
2009-11-05
manual fix for better gofmt result
Robert Griesemer
1
-2
/
+1
2009-11-04
panic can't print interfaces well so use err.String()
Rob Pike
1
-1
/
+1
2009-11-02
eliminate goroutine from testing/regexp too.
Rob Pike
1
-2
/
+2
2009-11-02
take goroutines out of regexp so they can be created
Rob Pike
1
-53
/
+77
2009-09-17
use buf.String() instead of string(buf.Bytes())
Rob Pike
1
-1
/
+1
2009-09-16
rename bytes.Buffer.Data() to bytes.Buffer.Bytes()
Rob Pike
1
-2
/
+2
2009-09-15
more "declared and not used".
Russ Cox
1
-2
/
+2
2009-09-14
fix "declared and not used" errors in non-test code.
Russ Cox
1
-3
/
+3
2009-08-26
generate the unicode tables directly from web database
Rob Pike
1
-1
/
+1
2009-08-12
convert non-low-level non-google pkg code
Russ Cox
1
-2
/
+0
2009-08-09
Add methods AllMatches, AllMatchesString, AllMatchesIter,
Stephen Ma
1
-0
/
+119
2009-08-05
support []byte (more efficient) as well as string in the interfaces.
Rob Pike
1
-19
/
+122
2009-08-05
special case: recognize '[^\n]' and make it as fast as '.'
Rob Pike
1
-2
/
+22
2009-06-29
io.StringBytes -> strings.Bytes
Russ Cox
1
-1
/
+2
2009-06-18
Add a ReplaceAll method to Regexp.
Steve Newman
1
-1
/
+66
2009-06-09
mv src/lib to src/pkg
Rob Pike
1
-0
/
+764