HomeSort by relevance Sort by last modified time
    Searched full:pcrecpp (Results 1 - 25 of 35) sorted by null

1 2

  /external/pcre/dist/
libpcrecpp.pc.in 9 Description: PCRECPP - C++ wrapper for PCRE
pcrecpp.h 64 // pcrecpp::RE re("h.*o");
68 // pcrecpp::RE re("e");
72 // pcrecpp::RE("h.*o").FullMatch("hello");
90 // pcrecpp::RE re("(\\w+):(\\d+)");
103 // !pcrecpp::RE("\\w+:\\d+").FullMatch("ruby:1234", &s);
106 // !pcrecpp::RE("(.*)").FullMatch("ruby", &i);
119 // pcrecpp::RE::FullMatch("abc", "[a-z]+(\\d+)?", &number);
126 // pcrecpp::RE::DoMatch(). See pcrecpp.h for the signature for DoMatch.
135 // pcrecpp::RE("ell").PartialMatch("hello")
340 namespace pcrecpp { namespace
    [all...]
pcrecpp_unittest.cc 44 #include "pcrecpp.h"
46 using pcrecpp::StringPiece;
47 using pcrecpp::RE;
48 using pcrecpp::RE_Options;
49 using pcrecpp::Hex;
50 using pcrecpp::Octal;
51 using pcrecpp::CRadix;
538 TestQuoteMeta("Pl\xc3\xa1\x63ido Domingo", pcrecpp::UTF8());
539 TestQuoteMeta("xyz", pcrecpp::UTF8()); // No fancy utf8
540 TestQuoteMeta("\xc2\xb0", pcrecpp::UTF8()); // 2-byte utf8 (degree symbol
    [all...]
CMakeLists.txt 22 # pcre.dll, pcreposix.dll and pcrecpp.dll).
125 OPTION(PCRE_BUILD_PCRECPP "Build the PCRE C++ library (pcrecpp)." ON)
571 pcrecpp.h
578 pcrecpp.cc
665 # pcrecpp
667 ADD_LIBRARY(pcrecpp ${PCRECPP_HEADERS} ${PCRECPP_SOURCES})
668 SET(targets ${targets} pcrecpp)
669 TARGET_LINK_LIBRARIES(pcrecpp pcre)
673 SET_TARGET_PROPERTIES(pcrecpp
679 SET_TARGET_PROPERTIES(pcrecpp
    [all...]
pcre_stringpiece_unittest.cc 12 #include "pcrecpp.h"
27 using pcrecpp::StringPiece;
pcre_stringpiece.cc 41 std::ostream& operator<<(std::ostream& o, const pcrecpp::StringPiece& piece) {
pcre_stringpiece.h.in 59 namespace pcrecpp {
156 } // namespace pcrecpp
167 template<> struct __type_traits<pcrecpp::StringPiece> {
178 const pcrecpp::StringPiece& piece);
pcre_scanner.h 51 #include <pcrecpp.h>
54 namespace pcrecpp { namespace
170 } // namespace pcrecpp
pcre_scanner_unittest.cc 44 #include "pcrecpp.h"
60 using pcrecpp::StringPiece;
61 using pcrecpp::Scanner;
pcre_scanner.cc 44 namespace pcrecpp { namespace
199 } // namespace pcrecpp
pcrecpparg.h.in 40 namespace pcrecpp {
171 } // namespace pcrecpp
PrepareRelease 69 pcreprecompile pcreperform pcreposix pcrecpp pcresample \
239 pcrecpp.cc \
240 pcrecpp.h \
Makefile.am 17 # Note that pcrecpp.html is not in this list; it is listed separately below.
74 pcrecpp_html = doc/html/pcrecpp.html
191 pcrecpp.h \
451 pcrecpp.cc \
676 # Note that pcrecpp.3 is not in this list, but is included separately below.
785 pcrecpp_man = doc/pcrecpp.3
Makefile.in 97 @WITH_PCRE_CPP_TRUE@ pcrecpp.h \
338 am__libpcrecpp_la_SOURCES_DIST = pcrecpp_internal.h pcrecpp.cc \
341 @WITH_PCRE_CPP_TRUE@ libpcrecpp_la-pcrecpp.lo \
525 am__include_HEADERS_DIST = pcreposix.h pcrecpp.h pcre_scanner.h
    [all...]
pcrecpp.cc 48 #include "pcrecpp.h"
52 namespace pcrecpp { namespace
924 } // namespace pcrecpp
NON-AUTOTOOLS-BUILD 248 built into a library called pcrecpp. It should be straightforward to compile
281 pcrecpp.h, otherwise the pcre_malloc() and pcre_free() exported functions will
489 To test pcrecpp, run pcrecpp_unittest.exe, pcre_stringpiece_unittest.exe and
620 the self created library for pcre itself, pcrecpp doesn't ship with the IDE, in
configure.ac 479 # Older versions of pcre defined pcrecpp::no_arg, but in new versions
480 # it's called pcrecpp::RE::no_arg. For backwards ABI compatibility,
491 AC_LINK_IFELSE([AC_LANG_PROGRAM([namespace pcrecpp {
513 # (This isn't c++-specific, but is only used in pcrecpp.cc, so try this
    [all...]
README 46 includes a set of C++ wrapper functions (see the pcrecpp man page for details),
478 pcrecpp.h )
605 CXX libpcrecpp_la-pcrecpp.lo
    [all...]
  /external/pcre/dist/doc/
pcrecpp.3 1 .TH PCRECPP 3 "08 January 2012" "PCRE 8.30"
7 .B #include <pcrecpp.h>
27 pcrecpp::RE re("h.*o");
31 pcrecpp::RE re("e");
35 pcrecpp::RE("h.*o").FullMatch("hello");
48 pcrecpp::RE re("(\e\ew+):(\e\ed+)");
61 !pcrecpp::RE("\e\ew+:\e\ed+").FullMatch("ruby:1234", &s);
64 !pcrecpp::RE("(.*)").FullMatch("ruby", &i);
93 pcrecpp::RE::FullMatch("abc", "[a-z]+(\e\ed+)?", &number);
127 pcrecpp::RE("ell").PartialMatch("hello")
    [all...]
index.html.src 44 <tr><td><a href="pcrecpp.html">pcrecpp</a></td>
pcre.3 175 pcrecpp details of the C++ wrapper for the 8-bit library
  /external/pcre/dist/doc/html/
pcrecpp.html 3 <title>pcrecpp specification</title>
6 <h1>pcrecpp man page</h1>
31 <b>#include &#60;pcrecpp.h&#62;</b>
37 from the notes in the <i>pcrecpp.h</i> file, which should be consulted for
48 pcrecpp::RE re("h.*o");
52 pcrecpp::RE re("e");
56 pcrecpp::RE("h.*o").FullMatch("hello");
70 pcrecpp::RE re("(\\w+):(\\d+)");
83 !pcrecpp::RE("\\w+:\\d+").FullMatch("ruby:1234", &s);
86 !pcrecpp::RE("(.*)").FullMatch("ruby", &i)
    [all...]
pcre.html 80 <a href="pcrecpp.html"><b>pcrecpp</b></a>
171 pcrecpp details of the C++ wrapper for the 8-bit library
index.html 44 <tr><td><a href="pcrecpp.html">pcrecpp</a></td>
NON-AUTOTOOLS-BUILD.txt 248 built into a library called pcrecpp. It should be straightforward to compile
281 pcrecpp.h, otherwise the pcre_malloc() and pcre_free() exported functions will
489 To test pcrecpp, run pcrecpp_unittest.exe, pcre_stringpiece_unittest.exe and
620 the self created library for pcre itself, pcrecpp doesn't ship with the IDE, in

Completed in 1798 milliseconds

1 2