Searched defs:non_word (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/regexp/
H A Djsregexp.cc3002 Label* non_word,
3006 fall_through_on_word ? non_word : word)) {
3010 assembler->CheckCharacterGT('z', non_word);
3011 assembler->CheckCharacterLT('0', non_word);
3014 assembler->CheckCharacterLT('A', non_word);
3017 assembler->CheckNotCharacter('_', non_word);
3123 Label* non_word = backtrack_if_previous == kIsNonWord ? local
3133 assembler->CheckAtStart(non_word);
3138 EmitWordCheck(assembler, word, non_word, backtrack_if_previous == kIsNonWord);
3000 EmitWordCheck(RegExpMacroAssembler* assembler, Label* word, Label* non_word, bool fall_through_on_word) argument

Completed in 131 milliseconds