Lines Matching refs:filterValueDepth_

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