Home
last modified time | relevance | path

Searched refs:recursion_depth_ (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/snapshot/
Dserializer.h153 serializer_->recursion_depth_++; in RecursionScope()
155 ~RecursionScope() { serializer_->recursion_depth_--; } in ~RecursionScope()
157 return serializer_->recursion_depth_ >= kMaxRecursionDepth; in ExceedsMaximum()
252 int recursion_depth_ = 0; variable
/external/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectsource.cc123 recursion_depth_(0), in ProtoStreamObjectSource()
136 recursion_depth_(0), in ProtoStreamObjectSource()
753 --recursion_depth_; in RenderField()
1051 if (++recursion_depth_ > max_recursion_depth_) { in IncrementRecursionDepth()
Dprotostream_objectsource.h285 mutable int recursion_depth_; variable
/external/v8/src/regexp/
Djsregexp.cc967 inline int recursion_depth() { return recursion_depth_; } in recursion_depth()
968 inline void IncrementRecursionDepth() { recursion_depth_++; } in IncrementRecursionDepth()
969 inline void DecrementRecursionDepth() { recursion_depth_--; } in DecrementRecursionDepth()
1000 int recursion_depth_; member in v8::internal::RegExpCompiler
1038 recursion_depth_(0), in RegExpCompiler()