OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lastmatch
(Results
1 - 25
of
27
) sorted by null
1
2
/external/v8/test/mjsunit/regress/
regress-crbug-467047.js
12
assertEquals("bc", RegExp.
lastMatch
);
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
find_format_all.hpp
54
input_iterator_type
LastMatch
=::boost::begin(Input);
60
Output = std::copy(
LastMatch
, M.begin(), Output );
65
LastMatch
=M.end();
66
M=Finder(
LastMatch
, ::boost::end(Input) );
70
Output = std::copy(
LastMatch
, ::boost::end(Input), Output );
128
input_iterator_type
LastMatch
=::boost::begin(Input);
137
insert( Output, ::boost::end(Output),
LastMatch
, M.begin() );
142
LastMatch
=M.end();
143
M=Finder(
LastMatch
, ::boost::end(Input) );
147
::boost::algorithm::detail::insert( Output, ::boost::end(Output),
LastMatch
, ::boost::end(Input) )
[
all
...]
/external/elfutils/libdw/
dwarf_getsrc_file.c
84
bool
lastmatch
= false;
local
101
lastmatch
= strcmp (basename (fname2), fname) == 0;
103
lastmatch
= strcmp (fname2, fname) == 0;
105
if (!
lastmatch
)
/external/v8/test/mjsunit/
regexp-static.js
35
assertEquals('123.456', RegExp.
lastMatch
);
63
assertEquals('789.012', RegExp.
lastMatch
);
82
assertEquals('123.456', RegExp.
lastMatch
);
101
assertEquals('789.012', RegExp.
lastMatch
);
string-match.js
44
var
lastMatch
= matchResult[matchResult.length - 1];
45
assertEquals(match,
lastMatch
, name + "-match-string_g");
56
assertEquals(match, RegExp.
lastMatch
, name + "-
lastMatch
");
regexp-indexof.js
48
assertEquals(lastExpected, RegExp.
lastMatch
, "
lastMatch
");
regexp-capture-3.js
32
assertEquals("b", RegExp.
lastMatch
);
48
assertEquals("b", RegExp.
lastMatch
);
61
assertEquals("bc", RegExp.
lastMatch
);
79
assertEquals("bc", RegExp.
lastMatch
);