Lines Matching refs:settings_
1881 CharReaderBuilder::CharReaderBuilder() { setDefaults(&settings_); } in CharReaderBuilder()
1884 bool collectComments = settings_["collectComments"].asBool(); in newCharReader()
1886 features.allowComments_ = settings_["allowComments"].asBool(); in newCharReader()
1887 features.allowTrailingCommas_ = settings_["allowTrailingCommas"].asBool(); in newCharReader()
1888 features.strictRoot_ = settings_["strictRoot"].asBool(); in newCharReader()
1890 settings_["allowDroppedNullPlaceholders"].asBool(); in newCharReader()
1891 features.allowNumericKeys_ = settings_["allowNumericKeys"].asBool(); in newCharReader()
1892 features.allowSingleQuotes_ = settings_["allowSingleQuotes"].asBool(); in newCharReader()
1896 features.stackLimit_ = static_cast<size_t>(settings_["stackLimit"].asUInt()); in newCharReader()
1897 features.failIfExtra_ = settings_["failIfExtra"].asBool(); in newCharReader()
1898 features.rejectDupKeys_ = settings_["rejectDupKeys"].asBool(); in newCharReader()
1899 features.allowSpecialFloats_ = settings_["allowSpecialFloats"].asBool(); in newCharReader()
1900 features.skipBom_ = settings_["skipBom"].asBool(); in newCharReader()
1919 for (auto si = settings_.begin(); si != settings_.end(); ++si) { in validate()
1932 return settings_[key]; in operator []()