Home
last modified time | relevance | path

Searched refs:text_it (Results 1 – 10 of 10) sorted by relevance

/dports/cad/cvc/cvc-1.1.0-4-gd172016/src/
H A DCFixedText.cc103 for ( auto text_it = begin(); text_it != end(); text_it++ ) { in BiasNet() local
104 if ( strncmp(*text_it, "$SUB=", 4) == 0 ) { in BiasNet()
105 text_t myBiasNet = *text_it + 5; in BiasNet()
106 erase(text_it); in BiasNet()
/dports/games/py-fife/fifengine-0.4.2/engine/core/video/fonts/
H A Dimagefontbase.cpp56 std::string::const_iterator text_it = text.begin(); in getWidth() local
57 while(text_it != text.end()) { in getWidth()
58 uint32_t codepoint = utf8::next(text_it,text.end()); in getWidth()
88 std::string::const_iterator text_it = text.begin(); in renderString() local
89 while(text_it != text.end()) { in renderString()
90 uint32_t codepoint = utf8::next(text_it,text.end()); in renderString()
H A Dsubimagefont.cpp106 std::string::const_iterator text_it = glyphs.begin(); in SubImageFont() local
107 while(text_it != glyphs.end()) { in SubImageFont()
133 uint32_t codepoint = utf8::next(text_it, glyphs.end()); in SubImageFont()
/dports/games/freeorion/freeorion-0.4.10.2/parse/
H A DReportParseError.cpp246 text_iterator text_it = it->matched().begin(); in generate_error_string() local
248 text_it = begin; in generate_error_string()
249 if (text_it != end) in generate_error_string()
250 ++text_it; in generate_error_string()
254 text_iterator text_it_copy = text_it; in generate_error_string()
259 text_it = text_it_copy; in generate_error_string()
262 std::tie(line_start, line_number) = line_start_and_line_number(begin, end, text_it); in generate_error_string()
263 std::size_t column_number = std::distance(line_start, text_it); in generate_error_string()
277 if (text_it == end) { in generate_error_string()
H A DParse.cpp39 std::string::iterator text_it = text.begin(); in parse_and_erase_macro_definitions() local
43 … if (!regex_search(text_it, text.end(), match, MACRO_DEFINITION, regex_constants::match_default)) in parse_and_erase_macro_definitions()
66 … text.replace(text_it + match.position(), text_it + match.position() + match.length(), "\n"); in parse_and_erase_macro_definitions()
68 text_it = text.end() - match.suffix().length(); in parse_and_erase_macro_definitions()
/dports/games/powermanga/powermanga-0.93.1/texts/
H A DMakefile.am16 text_it.txt
/dports/games/freeorion/freeorion-0.4.10.2/UI/
H A DLinkText.cpp66 auto text_it = retval.begin(); in BrowsePathLinkText() local
71 …if (!xpr::regex_search(text_it, retval.end(), match, BROWSEPATH_SEARCH, xpr::regex_constants::matc… in BrowsePathLinkText()
89 …retval.replace(text_it + match.position(), text_it + match.position() + match.length(), resolved_l… in BrowsePathLinkText()
91 text_it = retval.end() - match.suffix().length(); in BrowsePathLinkText()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/objects/seqfeat/
H A DSeq_feat.cpp385 ITERATE(list<CTempString>, text_it, list_of_except_texts) { in RemoveExceptText()
386 if( ! NStr::EqualNocase(*text_it, exception_text) ) { in RemoveExceptText()
390 new_except_texts += NStr::TruncateSpaces_Unsafe(*text_it); in RemoveExceptText()
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/src/objects/seqfeat/
H A DSeq_feat.cpp385 ITERATE(list<CTempString>, text_it, list_of_except_texts) { in RemoveExceptText()
386 if( ! NStr::EqualNocase(*text_it, exception_text) ) { in RemoveExceptText()
390 new_except_texts += NStr::TruncateSpaces_Unsafe(*text_it); in RemoveExceptText()
/dports/games/freeorion/freeorion-0.4.10.2/GG/src/
H A DFont.cpp1173 for (auto text_it = text.begin(); text_it != text.end();) { in RenderText() local
1174 std::uint32_t c = utf8::next(text_it, text.end()); in RenderText()
1588 auto text_it = elem->text.begin(); in FillTemplatedText() local
1590 while (text_it != end_it) { in FillTemplatedText()
1594 std::uint32_t c = utf8::next(text_it, end_it); in FillTemplatedText()