Lines Matching refs:result
153 string result; in ComposeStrings() local
163 result.append(sizeof(char), (size & 0xff)); in ComposeStrings()
164 result.append(sizeof(char), (size >> 8)); // Move 8 bits to the right in ComposeStrings()
165 result.append(iter); in ComposeStrings()
166 result.append(sizeof(char), '\0'); in ComposeStrings()
167 if (result.length() > UINT16_MAX) { in ComposeStrings()
171 return result; in ComposeStrings()
176 vector<string> result; in DecomposeStrings() local
182 result.clear(); in DecomposeStrings()
183 return result; in DecomposeStrings()
189 result.clear(); in DecomposeStrings()
190 return result; in DecomposeStrings()
193 result.push_back(buffer); in DecomposeStrings()
196 return result; in DecomposeStrings()
335 string result; in PaserKeyParam() local
348 result = result + "_" + limitKey; in PaserKeyParam()
350 result = result + "-" + limitKey; in PaserKeyParam()
353 if (!result.empty()) { in PaserKeyParam()
354 result = result.substr(1); in PaserKeyParam()
356 return result; in PaserKeyParam()
362 string result; in DecToHexStr() local
364 ot >> result; in DecToHexStr()
365 return result; in DecToHexStr()
378 string result; in GetAllRestypeString() local
380 result = result + "," + iter->first; in GetAllRestypeString()
382 return result; in GetAllRestypeString()