Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
benchlog/ | 03-May-2024 | - | 5,486 | 5,433 | ||
doc/ | 03-May-2024 | - | 845 | 809 | ||
lib/codereview/ | 03-May-2024 | - | 3,364 | 2,645 | ||
re2/ | 03-May-2024 | - | 21,058 | 15,603 | ||
util/ | 03-May-2024 | - | 8,981 | 6,578 | ||
AUTHORS | D | 03-May-2024 | 379 | 13 | 9 | |
Android.mk | D | 03-May-2024 | 970 | 47 | 37 | |
CONTRIBUTORS | D | 03-May-2024 | 1.3 KiB | 34 | 30 | |
LICENSE | D | 03-May-2024 | 1.5 KiB | 28 | 27 | |
MODULE_LICENSE_BSD | D | 03-May-2024 | 0 | |||
Makefile | D | 03-May-2024 | 8.1 KiB | 289 | 227 | |
NOTICE | D | 03-May-2024 | 1.5 KiB | 28 | 27 | |
README | D | 03-May-2024 | 554 | 20 | 14 | |
README.android | D | 03-May-2024 | 730 | 30 | 26 | |
libre2.symbols | D | 03-May-2024 | 281 | 16 | 15 | |
libre2.symbols.darwin | D | 03-May-2024 | 273 | 12 | 11 | |
runtests | D | 03-May-2024 | 267 | 22 | 18 | |
testinstall.cc | D | 03-May-2024 | 325 | 21 | 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.android
1Code obtained via 2----------------- 3hg clone https://re2.googlecode.com/hg re2 4 5Version 6------- 7 8hg identify 92d252384c5e8 tip 10 11Changes required to build using stlport on Android as follows (full diff) 12------------------------------------------------------------------------- 13diff -r ./re2/parse.cc /home/idh/temp9/re2/re2/parse.cc 1419d18 15< #include <ctype.h> 16diff -r ./re2/re2.cc /home/idh/temp9/re2/re2/re2.cc 1713d12 18< #include <ctype.h> 19Only in /home/idh/temp9/re2/re2: testing 20diff -r ./util/util.h /home/idh/temp9/re2/util/util.h 2143,48c43 22< #if defined(ANDROID) 23< 24< #include <unordered_set> 25< using std::tr1::unordered_set; 26< 27< #elif defined(__GNUC__) && !defined(USE_CXX0X) 28--- 29> #if defined(__GNUC__) && !defined(USE_CXX0X) 30