Lines Matching refs:SIZE_TYPE

44 const SIZE_TYPE kBufferSize = 4096;
224 const void* template_buffer, SIZE_TYPE size) in CHTMLPage()
384 m_TemplateSize = (SIZE_TYPE)size; in x_LoadTemplate()
396 str.reserve(str.size() + max((SIZE_TYPE)is.gcount(), in x_LoadTemplate()
399 str.append(buf, (SIZE_TYPE)is.gcount()); in x_LoadTemplate()
428 str.append(buf, (SIZE_TYPE)is.gcount()); in x_PrintTemplate()
429 SIZE_TYPE pos = str.rfind('\n'); in x_PrintTemplate()
469 static SIZE_TYPE s_Find(const string& s, const char* target, in s_Find()
470 SIZE_TYPE start = 0) in s_Find()
546 void CHTMLPage::x_LoadTemplateLib(CNcbiIstream& istrm, SIZE_TYPE size, in x_LoadTemplateLib()
588 size = (SIZE_TYPE)x_size; in x_LoadTemplateLib()
599 static const SIZE_TYPE kIncludeLen = strlen(kInclude); in x_LoadTemplateLib()
604 SIZE_TYPE pos = kIncludeLen; in x_LoadTemplateLib()
605 SIZE_TYPE len = s.length(); in x_LoadTemplateLib()
612 SIZE_TYPE pos_end = s.find("\"", pos); in x_LoadTemplateLib()
637 max((SIZE_TYPE)is->gcount(), in x_LoadTemplateLib()
653 max((SIZE_TYPE)is->gcount(), in x_LoadTemplateLib()
656 pstr->append(buf, (SIZE_TYPE)is->gcount()); in x_LoadTemplateLib()
675 SIZE_TYPE ts_size = kTagStartBOL.length(); in x_LoadTemplateLib()
676 SIZE_TYPE te_size = strlen(kTagEnd); in x_LoadTemplateLib()
677 SIZE_TYPE tse_size = strlen(kTagStartEnd); in x_LoadTemplateLib()
678 SIZE_TYPE tag_start = s_Find(*pstr, kTagStartBOL.c_str()); in x_LoadTemplateLib()
684 SIZE_TYPE name_start = tag_start + ts_size; in x_LoadTemplateLib()
685 SIZE_TYPE name_end = s_Find(*pstr, kTagEnd, name_start); in x_LoadTemplateLib()
703 SIZE_TYPE tag_end = name_end + te_size; in x_LoadTemplateLib()
710 SIZE_TYPE last = s_Find(*pstr, close_str.c_str(), tag_end); in x_LoadTemplateLib()
724 SIZE_TYPE pos = pstr->find_first_not_of(" ", tag_end); in x_LoadTemplateLib()