Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
AUTHORS | 03-Jun-2014 | 417 | |
benchlog/ | 03-Jun-2014 | ||
CONTRIBUTORS | 03-Jun-2014 | 1.4K | |
doc/ | 03-Jun-2014 | ||
lib/ | 03-Jun-2014 | ||
libre2.symbols | 03-Jun-2014 | 281 | |
libre2.symbols.darwin | 03-Jun-2014 | 273 | |
LICENSE | 03-Jun-2014 | 1.5K | |
Makefile | 03-Jun-2014 | 8.1K | |
mswin/ | 03-Jun-2014 | ||
patches/ | 03-Jun-2014 | ||
re2/ | 03-Jun-2014 | ||
re2.gyp | 03-Jun-2014 | 2.1K | |
re2.target.darwin-arm.mk | 03-Jun-2014 | 6.5K | |
re2.target.darwin-mips.mk | 03-Jun-2014 | 6.4K | |
re2.target.darwin-x86.mk | 03-Jun-2014 | 6.5K | |
re2.target.linux-arm.mk | 03-Jun-2014 | 6.5K | |
re2.target.linux-mips.mk | 03-Jun-2014 | 6.4K | |
re2.target.linux-x86.mk | 03-Jun-2014 | 6.5K | |
README | 03-Jun-2014 | 554 | |
README.chromium | 03-Jun-2014 | 977 | |
runtests | 03-Jun-2014 | 267 | |
testinstall.cc | 03-Jun-2014 | 487 | |
ucs2.diff | 03-Jun-2014 | 18.8K | |
util/ | 03-Jun-2014 |
1 This is the source code repository for RE2, a regular expression library. 2 3 For documentation about how to install and use RE2, 4 visit http://code.google.com/p/re2/. 5 6 The short version is: 7 8 make 9 make test 10 make install 11 make testinstall 12 13 Unless otherwise noted, the RE2 source files are distributed 14 under the BSD-style license found in the LICENSE file. 15 16 RE2's native language is C++. 17 An Inferno wrapper is at http://code.google.com/p/inferno-re2/. 18 A Python wrapper is at http://github.com/facebook/pyre2/. 19 A Ruby wrapper is at http://github.com/axic/rre2/. 20
1 Name: re2 - an efficient, principled regular expression library 2 Short Name: re2 3 URL: http://code.google.com/p/re2/ 4 Version: 7f91923f3ad4 5 Date: 2012-06-20 6 Revision: 100:7f91923f3ad4 7 License: BSD 3-Clause License 8 License File: LICENSE 9 Security Critical: yes 10 11 Description: 12 RE2 is a fast, safe, thread-friendly alternative to backtracking regular 13 expression engines like those used in PCRE, Perl, and Python. 14 15 Local Modifications (to be applied in this order): 16 - Remove valgrind specific code that exists in chromium already 17 (patches/remove-valgrind-code.patch) 18 - Support for Windows (patches/re2-msvc9-chrome.patch) 19 - Support Android (patches/re2-android.patch) 20 - Remove static initializers (patches/remove-static-initializers.patch) 21 - Rename POSIX configuration (patches/rename-posix-option.patch) 22 - Support libcxx (patches/re2-libcxx.patch) 23 https://code.google.com/p/re2/issues/detail?id=76 24 - Memory optimization for filtered trees 25 (patches/re2-memory-optimization.patch) 26