Searched refs:str_end (Results 1 – 3 of 3) sorted by relevance
16 const uint8* const str_end = str_scan + length_; in ReadString() local17 while (str_scan < str_end && *str_scan != 0) in ReadString()19 if (str_scan == str_end) in ReadString()
876 string::const_iterator str_ite(str.begin()), str_end(str.end()); local880 while (str_ite != str_end) {889 if (str_ite != str_end) {894 if (str_ite != str_end) {896 while (++str_ite != str_end) {
1177 char* str_end = endptr; in icvYMLParseValue() local1180 do c = *--str_end; in icvYMLParseValue()1181 while( str_end > ptr && c == ' ' ); in icvYMLParseValue()1182 str_end++; in icvYMLParseValue()1183 … CV_CALL( node->data.str = cvMemStorageAllocString( fs->memstorage, ptr, (int)(str_end - ptr) )); in icvYMLParseValue()