Lines Matching refs:result
152 string result; in ComposeStrings() local
162 result.append(sizeof(char), (size & 0xff)); in ComposeStrings()
163 result.append(sizeof(char), (size >> 8)); // Move 8 bits to the right in ComposeStrings()
164 result.append(iter); in ComposeStrings()
165 result.append(sizeof(char), '\0'); in ComposeStrings()
166 if (result.length() > UINT16_MAX) { in ComposeStrings()
170 return result; in ComposeStrings()
175 vector<string> result; in DecomposeStrings() local
181 result.clear(); in DecomposeStrings()
182 return result; in DecomposeStrings()
188 result.clear(); in DecomposeStrings()
189 return result; in DecomposeStrings()
192 result.push_back(buffer); in DecomposeStrings()
195 return result; in DecomposeStrings()
334 string result; in PaserKeyParam() local
347 result = result + "_" + limitKey; in PaserKeyParam()
349 result = result + "-" + limitKey; in PaserKeyParam()
352 if (!result.empty()) { in PaserKeyParam()
353 result = result.substr(1); in PaserKeyParam()
355 return result; in PaserKeyParam()
361 string result; in DecToHexStr() local
363 ot >> result; in DecToHexStr()
364 return result; in DecToHexStr()
377 string result; in GetAllRestypeString() local
379 result = result + "," + iter->first; in GetAllRestypeString()
381 return result; in GetAllRestypeString()