Home
last modified time | relevance | path

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

/external/protobuf/src/google/protobuf/util/internal/
Djson_stream_parser.h94 int recursion_depth() { return recursion_depth_; } in recursion_depth()
280 mutable int recursion_depth_; variable
Djson_stream_parser.cc116 recursion_depth_(0), in JsonStreamParser()
620 --recursion_depth_; in ParseObjectMid()
642 --recursion_depth_; in ParseEntry()
801 if (++recursion_depth_ > max_recursion_depth_) { in IncrementRecursionDepth()
Dprotostream_objectsource.cc128 recursion_depth_(0), in ProtoStreamObjectSource()
147 recursion_depth_(0), in ProtoStreamObjectSource()
798 --recursion_depth_; in RenderField()
1100 if (++recursion_depth_ > max_recursion_depth_) { in IncrementRecursionDepth()
Dprotostream_objectsource.h309 mutable int recursion_depth_; variable
/external/v8/src/snapshot/
Dserializer.h184 serializer_->recursion_depth_++; in RecursionScope()
186 ~RecursionScope() { serializer_->recursion_depth_--; } in ~RecursionScope()
188 return serializer_->recursion_depth_ >= kMaxRecursionDepth; in ExceedsMaximum()
371 int recursion_depth_ = 0; variable
/external/v8/src/regexp/
Dregexp-compiler.h551 inline int recursion_depth() { return recursion_depth_; } in recursion_depth()
552 inline void IncrementRecursionDepth() { recursion_depth_++; } in IncrementRecursionDepth()
553 inline void DecrementRecursionDepth() { recursion_depth_--; } in DecrementRecursionDepth()
584 int recursion_depth_; variable
Dregexp-compiler.cc248 recursion_depth_(0), in RegExpCompiler()