Home
last modified time | relevance | path

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

/external/v8/src/
Dcontext-measure.cc17 recursion_depth_(0), in ContextMeasure()
44 recursion_depth_++; in MeasureObject()
45 if (recursion_depth_ > kMaxRecursion) { in MeasureObject()
50 recursion_depth_--; in MeasureObject()
Dcontext-measure.h36 int recursion_depth_; variable
/external/v8/src/snapshot/
Dserializer.h144 serializer_->recursion_depth_++; in RecursionScope()
146 ~RecursionScope() { serializer_->recursion_depth_--; } in ~RecursionScope()
148 return serializer_->recursion_depth_ >= kMaxRecursionDepth; in ExceedsMaximum()
233 int recursion_depth_; variable
Dserializer.cc19 recursion_depth_(0), in Serializer()
/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.cc1014 inline int recursion_depth() { return recursion_depth_; } in recursion_depth()
1015 inline void IncrementRecursionDepth() { recursion_depth_++; } in IncrementRecursionDepth()
1016 inline void DecrementRecursionDepth() { recursion_depth_--; } in DecrementRecursionDepth()
1049 int recursion_depth_; member in v8::internal::RegExpCompiler
1088 recursion_depth_(0), in RegExpCompiler()