Lines Matching refs:dst
155 * @param dst: the string pointer which saved the sub string content.
158 bool StringSubString(const HcString *self, uint32_t begin, uint32_t len, HcString* dst)
160 if (self == NULL || dst == NULL) {
167 return StringSetPointerWithLength(dst, beingPointer, len);
173 * @param dst: the pointer of another string.
175 * -1: self is smaller than dst
176 * 0: self is equal with dst
177 * 1: self is bigger than dst
179 int StringCompare(const HcString *self, const char* dst)
181 if (self == NULL || dst == NULL) {
191 if ((*src) > (*dst)) {
193 } else if ((*src) < (*dst)) {
200 ++dst;