Home | History | Annotate | only in /external/regex-re2
Up to higher level directory
NameDateSize
Android.mk06-Dec-20161.5K
AUTHORS06-Dec-2016379
benchlog/06-Dec-2016
CONTRIBUTORS06-Dec-20161.3K
doc/06-Dec-2016
lib/06-Dec-2016
libre2.symbols06-Dec-2016281
libre2.symbols.darwin06-Dec-2016273
LICENSE06-Dec-20161.5K
Makefile06-Dec-20168.1K
MODULE_LICENSE_BSD06-Dec-20160
re2/06-Dec-2016
README06-Dec-2016554
README.android06-Dec-2016606
README.version06-Dec-201693
runtests06-Dec-2016267
testinstall.cc06-Dec-2016487
ucs2.diff06-Dec-201618.8K
util/06-Dec-2016

README

      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 

README.android

      1 Code obtained from
      2 ------------------
      3 
      4 https://re2.googlecode.com/files/re2-20130115.tgz
      5 
      6 Version
      7 -------
      8 
      9 re2-20130115.tgz
     10 
     11 Changes required to build using stlport on Android as follows (full diff)
     12 -------------------------------------------------------------------------
     13 util/util.h:
     14 
     15 44,53c44
     16 < #if defined(ANDROID)
     17 < 
     18 < #if defined(_STLPORT_VERSION)
     19 < #include <unordered_set>      // using stlport
     20 < #else
     21 < #include <tr1/unordered_set>  // using gnustl
     22 < #endif
     23 < using std::tr1::unordered_set;
     24 <  
     25 < #elif defined(__GNUC__) && !defined(USE_CXX0X)
     26 ---
     27 > #if defined(__GNUC__) && !defined(USE_CXX0X)
     28 
     29 

README.version

      1 URL: https://re2.googlecode.com/files/re2-20130115.tgz
      2 Version: 20130115
      3 BugComponent: 14890
      4