Home
last modified time | relevance | path

Searched refs:kMaxRecursion (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/regexp/
Djsregexp.cc966 static const int kMaxRecursion = 100; member in v8::internal::RegExpCompiler
2220 compiler->recursion_depth() <= RegExpCompiler::kMaxRecursion; in KeepRecursing()
3417 if (recursion_depth++ > RegExpCompiler::kMaxRecursion) { in GreedyLoopTextLengthForAlternative()
6689 node = node->FilterOneByte(RegExpCompiler::kMaxRecursion); in Compile()
6693 node = node->FilterOneByte(RegExpCompiler::kMaxRecursion); in Compile()
/external/vixl/src/aarch32/
Dmacro-assembler-aarch32.h141 if (count_ >= kMaxRecursion) { in Up()
146 for (unsigned i = 0; i < kMaxRecursion; i++) { in Up()
153 VIXL_ASSERT((count_ > 0) && (count_ < kMaxRecursion)); in Down()
159 static const uint32_t kMaxRecursion = 6; variable
160 const char* location_stack_[kMaxRecursion];
/external/v8/src/
Dapi.cc5627 const int kMaxRecursion = 100; in WriteUtf8() local
5628 bool success = RecursivelySerializeToUtf8(*str, &writer, kMaxRecursion); in WriteUtf8()