Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
benchlog/ | 03-May-2024 | - | 5,486 | 5,433 | ||
doc/ | 03-May-2024 | - | 887 | 843 | ||
lib/codereview/ | 03-May-2024 | - | 3,565 | 2,776 | ||
mswin/ | 03-May-2024 | - | 248 | 152 | ||
patches/ | 03-May-2024 | - | 1,089 | 990 | ||
re2/ | 03-May-2024 | - | 29,408 | 21,875 | ||
util/ | 03-May-2024 | - | 9,056 | 6,649 | ||
AUTHORS | D | 03-May-2024 | 417 | 14 | 10 | |
BUILD.gn | D | 03-May-2024 | 1.7 KiB | 78 | 72 | |
CONTRIBUTORS | D | 03-May-2024 | 1.4 KiB | 37 | 33 | |
LICENSE | D | 03-May-2024 | 1.5 KiB | 28 | 27 | |
Makefile | D | 03-May-2024 | 8.1 KiB | 289 | 227 | |
README | D | 03-May-2024 | 554 | 20 | 14 | |
README.chromium | D | 03-May-2024 | 1.3 KiB | 32 | 29 | |
libre2.symbols | D | 03-May-2024 | 281 | 16 | 15 | |
libre2.symbols.darwin | D | 03-May-2024 | 273 | 12 | 11 | |
re2.gyp | D | 03-May-2024 | 2 KiB | 85 | 83 | |
re2.target.darwin-arm.mk | D | 03-May-2024 | 8 KiB | 326 | 275 | |
re2.target.darwin-arm64.mk | D | 03-May-2024 | 7.4 KiB | 294 | 243 | |
re2.target.darwin-mips.mk | D | 03-May-2024 | 7.7 KiB | 312 | 261 | |
re2.target.darwin-x86.mk | D | 03-May-2024 | 7.6 KiB | 310 | 259 | |
re2.target.darwin-x86_64.mk | D | 03-May-2024 | 7.6 KiB | 308 | 257 | |
re2.target.linux-arm.mk | D | 03-May-2024 | 8 KiB | 326 | 275 | |
re2.target.linux-arm64.mk | D | 03-May-2024 | 7.4 KiB | 294 | 243 | |
re2.target.linux-mips.mk | D | 03-May-2024 | 7.7 KiB | 312 | 261 | |
re2.target.linux-x86.mk | D | 03-May-2024 | 7.6 KiB | 310 | 259 | |
re2.target.linux-x86_64.mk | D | 03-May-2024 | 7.6 KiB | 308 | 257 | |
runtests | D | 03-May-2024 | 267 | 22 | 18 | |
testinstall.cc | D | 03-May-2024 | 487 | 25 | 17 | |
ucs2.diff | D | 03-May-2024 | 18.8 KiB | 568 | 536 |
README
1This is the source code repository for RE2, a regular expression library. 2 3For documentation about how to install and use RE2, 4visit http://code.google.com/p/re2/. 5 6The short version is: 7 8make 9make test 10make install 11make testinstall 12 13Unless otherwise noted, the RE2 source files are distributed 14under the BSD-style license found in the LICENSE file. 15 16RE2's native language is C++. 17An Inferno wrapper is at http://code.google.com/p/inferno-re2/. 18A Python wrapper is at http://github.com/facebook/pyre2/. 19A Ruby wrapper is at http://github.com/axic/rre2/. 20
README.chromium
1Name: re2 - an efficient, principled regular expression library 2Short Name: re2 3URL: http://code.google.com/p/re2/ 4Version: 7f91923f3ad4 5Date: 2012-06-20 6Revision: 100:7f91923f3ad4 7License: BSD 3-Clause License 8License File: LICENSE 9Security Critical: yes 10 11Description: 12RE2 is a fast, safe, thread-friendly alternative to backtracking regular 13expression engines like those used in PCRE, Perl, and Python. 14 15Local 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- Prevent unwanted reports from MemorySanitizer. Note: there's an upstream fix 27 for this (https://code.google.com/p/re2/issues/detail?id=77) which is rendered 28 ineffective by patches/remove-valgrind-code.patch 29 (patches/re2-msan.patch) 30- Remove comparisons of this with NULL (patches/this-null.patch), sent upstream 31 at https://codereview.appspot.com/107100043/ 32