1. 6f56ab7 Adds a basic test wrapper for Android by Dan Albert · 10 years ago
  2. e0f8672 Implement LWG Issues #2329 and #2332 - disallow iterators into temporary regexes and regexes into temporary strings by Marshall Clow · 11 years ago
  3. e840208 Bill Fisher: This patch fixes a less likely case where '\b' can back up into invalid memory, when driven by a regex_iterator (for case 1, see r185273 or http://llvm.org/bugs/show_bug.cgi?id=16240) by Howard Hinnant · 11 years ago
  4. 7670f7d Bill Fisher: This patch fixes a bug where regex_iterator doesn't indicate when it's restarting in the middle of a string. This bug causes /^a/ to match in the middle of the string "aaaaaaa", during iteration. by Howard Hinnant · 11 years ago
  5. e57b7c4 William Fisher: A bug in __lookahead::exec causes /(?=^)b/ to match ab. When makes a recursive call to , it passes true for the value of . This causes a beginning-of-line anchor (^) inside a lookahead assertion to match anywhere in the text. This fixes http://llvm.org/bugs/show_bug.cgi?id=11118 by Howard Hinnant · 11 years ago
  6. 83e2c4d Move common header files into a 'support' directory; make 'testit' include -I to that directory; rename 'iterators.h' to 'iterator_test.h'; remove hard-coded paths to include files from more than 350 source files by Marshall Clow · 12 years ago
  7. ba1920f Removed several more different 'iterators.h' files in libcxx/test by Marshall Clow · 12 years ago
  8. b64f8b0 license change by Howard Hinnant · 14 years ago
  9. bbd8086 Fixing whitespace problems by Howard Hinnant · 14 years ago
  10. 7026a17 Everything under [re.regex] by Howard Hinnant · 14 years ago
  11. 15476f3 Fixed some bugs in the ecma bracket epression regarding escaped characters, and got the awk grammar going. by Howard Hinnant · 14 years ago
  12. e9de5ff lookahead for ecma by Howard Hinnant · 14 years ago
  13. 856846b grep and egrep grammars by Howard Hinnant · 14 years ago
  14. ad2a7ab continued regex development... by Howard Hinnant · 14 years ago
  15. 17615b0 A good start on ecma regex's. Maybe even feature complete, not sure yet. Also an unrelated fix to is_constructible thanks to Daniel Krugler. by Howard Hinnant · 14 years ago
  16. 2ade7c2 I believe posix extended expr is feature complete. Getting started on ecma exprs. by Howard Hinnant · 14 years ago
  17. 1371b2e A few more tests for posix extended alternation by Howard Hinnant · 14 years ago
  18. aa69808 A good start on extended posix regex. Loops working. Alternation working. Also update by-chapter completeness summary. by Howard Hinnant · 14 years ago
  19. 639a668 Tests for basic posix regex templated on wchar_t by Howard Hinnant · 14 years ago
  20. 22ce0b4 Fixed to work with generalized iterators. by Howard Hinnant · 14 years ago
  21. 68025ed Minor optimizations. Minor bug fixes. More tests. by Howard Hinnant · 14 years ago
  22. 173968a Bracket expressions are working (lightly tested). by Howard Hinnant · 14 years ago
  23. e34f17d regex_constants icase and collate for matching a single char and for matching back references by Howard Hinnant · 14 years ago
  24. cba352d back references for BRE by Howard Hinnant · 14 years ago
  25. ac30386 Redesign number 3. The previous design was not handling matching of empty strings inside of loops. by Howard Hinnant · 14 years ago
  26. 37f9f9c weekly update to by-chapter-summary, plus left and right anchor support in basic posix. by Howard Hinnant · 14 years ago
  27. e77aa5e Marked subexpressions in a loop in basic posix working (only lightly tested so far) by Howard Hinnant · 14 years ago
  28. f8ce459 First loop test passed. The data structure and search algorithm is still crude and in-flux. But this milestone needed to be locked in. Right now every loop is implemented in terms of a structure that will handle the most complicated {min, max} loop. Though only *-loops are tested at the moment. In a future iteration *-loops will likely be optimized a little more. The only tests are for basic posix so far, but I have prototype code running for extended posix and ecma. The prototype code lacks the complicating properties of the real <regex> requirements though. by Howard Hinnant · 14 years ago
  29. 0dca5fc First test for marked subexpressions by Howard Hinnant · 14 years ago
  30. 9b80f2b First, very primitive, search results on one engine by Howard Hinnant · 14 years ago