Lines Matching refs:value
49 void DfxConfig::ParserConfig(DfxConfigInfo& config, const std::string& key, const std::string& value)
53 if (value.compare("false") == 0) {
61 if (value.compare("false") == 0) {
69 if (value.compare("false") == 0) {
77 if (value.compare("false") == 0) {
85 if (value.compare("false") == 0) {
93 unsigned int lowAddressStep = static_cast<unsigned int>(atoi(value.data()));
100 unsigned int highAddressStep = static_cast<unsigned int>(atoi(value.data()));
107 unsigned int maxFrameNums = static_cast<unsigned int>(atoi(value.data()));
138 std::string value = line.substr(equalSignPos + 1);
140 Trim(value);
141 ParserConfig(config, key, value);