Lines Matching refs:filterValueDepth_

24 …dler_(outputHandler), keyString_(keyString), keyLength_(keyLength), filterValueDepth_(), filteredK…  in FilterKeyHandler()
27 …bool Null() { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.Null() && … in Null()
28 …bool Bool(bool b) { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.Bool(b) && … in Bool()
29 …bool Int(int i) { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.Int(i) && … in Int()
30 …bool Uint(unsigned u) { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.Uint(u) && … in Uint()
31 …bool Int64(int64_t i) { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.Int64(i) && … in Int64()
32 …bool Uint64(uint64_t u) { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.Uint64(u) && … in Uint64()
33 …bool Double(double d) { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.Double(d) && … in Double()
34 …bool RawNumber(const Ch* str, SizeType len, bool copy) { return filterValueDepth_ > 0 ? EndValue()… in RawNumber()
35 …bool String (const Ch* str, SizeType len, bool copy) { return filterValueDepth_ > 0 ? EndValue()… in String()
38 if (filterValueDepth_ > 0) { in StartObject()
39 filterValueDepth_++; in StartObject()
49 if (filterValueDepth_ > 0) in Key()
52 filterValueDepth_ = 1; in Key()
62 if (filterValueDepth_ > 0) { in EndObject()
63 filterValueDepth_--; in EndObject()
75 if (filterValueDepth_ > 0) { in StartArray()
76 filterValueDepth_++; in StartArray()
84 if (filterValueDepth_ > 0) { in EndArray()
85 filterValueDepth_--; in EndArray()
97 if (filterValueDepth_ == 1) // Just at the end of value after filtered key in EndValue()
98 filterValueDepth_ = 0; in EndValue()
105 unsigned filterValueDepth_; member in FilterKeyHandler