Lines Matching refs:result
167 void Split(std::string str, std::string separator, std::vector<std::string> &result)
169 result.clear();
175 ADD_VECTOR_END(result, str.substr(lastPosition, position - lastPosition));
179 ADD_VECTOR_END(result, str.substr(lastPosition, std::string::npos));
315 std::string result;
323 result += value[0];
324 result += tmpStr;
325 result += value[strLen - 1];
328 result.append(value, 0, INT32_PLAINTEXT_LENGTH);
329 result += tmpStr;
330 result.append(value, strLen - INT32_PLAINTEXT_LENGTH, INT32_PLAINTEXT_LENGTH);
333 return result;