OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FindAndConsume
(Results
1 - 6
of
6
) sorted by null
/external/regex-re2/util/
pcre.h
140
// The "
FindAndConsume
" operation is similar to "Consume" but does not
143
// PCRE::
FindAndConsume
(&input, "(\\w+)", &word)
352
// "input". For example, "
FindAndConsume
(s, "(\\w+)", &word)" finds the next
374
static const FindAndConsumeFunctor
FindAndConsume
;
pcre.cc
46
const PCRE::FindAndConsumeFunctor PCRE::
FindAndConsume
= { };
[
all
...]
/external/pcre/dist/
pcrecpp.cc
284
bool RE::
FindAndConsume
(StringPiece* input,
/external/regex-re2/re2/
re2.cc
32
const VariadicFunction2<bool, StringPiece*, const RE2&, RE2::Arg, RE2::FindAndConsumeN> RE2::
FindAndConsume
;
[
all
...]
re2.h
140
// The "
FindAndConsume
" operation is similar to "Consume" but does not
143
// RE2::
FindAndConsume
(&input, "(\\w+)", &word)
350
// "input". For example, "
FindAndConsume
(s, "(\\w+)", &word)" finds the next
355
bool, StringPiece*, const RE2&, Arg, RE2::FindAndConsumeN>
FindAndConsume
;
[
all
...]
/external/regex-re2/re2/testing/
regexp_benchmark.cc
265
// Benchmark:
FindAndConsume
266
void
FindAndConsume
(int iters, int nbytes) {
276
CHECK(RE2::
FindAndConsume
(&t, re, &u));
282
BENCHMARK_RANGE(
FindAndConsume
, 8, 16<<20)->ThreadRange(1, NumCPUs());
[
all
...]
Completed in 1380 milliseconds