Home | History | Annotate | only in /external/regex-re2
Up to higher level directory
NameDateSize
Android.mk10-Oct-2012970
AUTHORS10-Oct-2012379
benchlog/10-Oct-2012
CONTRIBUTORS10-Oct-20121.3K
doc/10-Oct-2012
lib/10-Oct-2012
libre2.symbols10-Oct-2012281
libre2.symbols.darwin10-Oct-2012273
LICENSE10-Oct-20121.5K
Makefile10-Oct-20128.1K
MODULE_LICENSE_BSD10-Oct-20120
NOTICE10-Oct-20121.5K
re2/10-Oct-2012
README10-Oct-2012554
README.android10-Oct-2012730
runtests10-Oct-2012267
testinstall.cc10-Oct-2012325
ucs2.diff10-Oct-201218.8K
util/10-Oct-2012

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 via
      2 -----------------
      3 hg clone https://re2.googlecode.com/hg re2
      4 
      5 Version
      6 -------
      7 
      8 hg identify
      9 2d252384c5e8 tip
     10 
     11 Changes required to build using stlport on Android as follows (full diff)
     12 -------------------------------------------------------------------------
     13 diff -r ./re2/parse.cc /home/idh/temp9/re2/re2/parse.cc
     14 19d18
     15 < #include <ctype.h>
     16 diff -r ./re2/re2.cc /home/idh/temp9/re2/re2/re2.cc
     17 13d12
     18 < #include <ctype.h>
     19 Only in /home/idh/temp9/re2/re2: testing
     20 diff -r ./util/util.h /home/idh/temp9/re2/util/util.h
     21 43,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