OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:not_at_start
(Results
1 - 4
of
4
) sorted by null
/external/v8/src/regexp/
jsregexp.h
463
// they are sure to eat any more characters. The
not_at_start
argument is
467
virtual int EatsAtLeast(int still_to_find, int budget, bool
not_at_start
) = 0;
485
bool
not_at_start
) = 0;
503
BoyerMooreLookahead* bm, bool
not_at_start
) {
528
void SaveBMInfo(BoyerMooreLookahead* bm, bool
not_at_start
, int offset) {
529
if (offset == 0) set_bm_info(
not_at_start
, bm);
545
BoyerMooreLookahead* bm_info(bool
not_at_start
) {
546
return bm_info_[
not_at_start
? 1 : 0];
557
void set_bm_info(bool
not_at_start
, BoyerMooreLookahead* bm) {
558
bm_info_[
not_at_start
? 1 : 0] = bm
927
bool
not_at_start
() { return
not_at_start
_; }
function in class:v8::internal::ChoiceNode
[
all
...]
jsregexp.cc
3034
bool
not_at_start
= (trace->at_start() == Trace::FALSE_VALUE);
local
[
all
...]
regexp-ast.h
379
bool
not_at_start
= false);
/external/v8/test/cctest/
test-regexp.cc
1115
Label
not_at_start
, newline, fail;
local
[
all
...]
Completed in 4700 milliseconds