Home
last modified time | relevance | path

Searched refs:start_it (Results 1 – 25 of 156) sorted by relevance

1234567

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libphonenumber/dist/cpp/src/phonenumbers/
H A Dunicodestring.cc63 UnicodeText::const_iterator start_it = text_.begin(); in replace() local
64 advance(start_it, start); in replace()
66 unicode_text.append(text_.begin(), start_it); in replace()
68 advance(start_it, length); in replace()
69 unicode_text.append(start_it, text_.end()); in replace()
94 UnicodeText::const_iterator start_it = text_.begin(); in tempSubString() local
95 advance(start_it, start); in tempSubString()
96 UnicodeText::const_iterator end_it = start_it; in tempSubString()
99 substring.text_.PointTo(start_it, end_it); in tempSubString()
/dports/devel/libphonenumber/libphonenumber-8.12.39/cpp/src/phonenumbers/
H A Dunicodestring.cc63 UnicodeText::const_iterator start_it = text_.begin(); in replace() local
64 advance(start_it, start); in replace()
66 unicode_text.append(text_.begin(), start_it); in replace()
68 advance(start_it, length); in replace()
69 unicode_text.append(start_it, text_.end()); in replace()
94 UnicodeText::const_iterator start_it = text_.begin(); in tempSubString() local
95 advance(start_it, start); in tempSubString()
96 UnicodeText::const_iterator end_it = start_it; in tempSubString()
99 substring.text_.PointTo(start_it, end_it); in tempSubString()
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/src/app/winmasker/
H A Dwin_mask_sdust_masker.cpp81 CSeqVector::const_iterator start_it = data.begin(); in operator ()() local
87 current_it = start_it + e_it->second - window + 2; in operator ()()
93 Uint4 start_offset = current_it - start_it; in operator ()()
99 : start_it + e_it->first + window; in operator ()()
100 Uint4 stop_offset = end_it - start_it; in operator ()()
110 current_it = start_it + e_it->second - window + 2; in operator ()()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/winmasker/
H A Dwin_mask_sdust_masker.cpp81 CSeqVector::const_iterator start_it = data.begin(); in operator ()() local
87 current_it = start_it + e_it->second - window + 2; in operator ()()
93 Uint4 start_offset = current_it - start_it; in operator ()()
99 : start_it + e_it->first + window; in operator ()()
100 Uint4 stop_offset = end_it - start_it; in operator ()()
110 current_it = start_it + e_it->second - window + 2; in operator ()()
/dports/graphics/tesseract/tesseract-5.0.0/src/ccstruct/
H A Dwerd.cpp47 C_BLOB_IT start_it = &cblobs; in WERD() local
54 start_it.add_list_after(blob_list); in WERD()
69 start_it.set_to_list(&cblobs); in WERD()
70 if (start_it.empty()) { in WERD()
73 for (start_it.mark_cycle_pt(); !start_it.cycled_list(); start_it.forward()) { in WERD()
77 c_outline_it.set_to_list(start_it.data()->out_list()); in WERD()
96 start_it.set_to_list(&cblobs); in WERD()
97 if (start_it.empty()) { in WERD()
100 for (start_it.mark_cycle_pt(); !start_it.cycled_list(); start_it.forward()) { in WERD()
118 C_BLOB_IT start_it = blob_list; // iterator in WERD() local
[all …]
/dports/devel/hpx/hpx-1.2.1/tests/unit/parallel/algorithms/
H A Dincludes.cpp52 start_it, end_it); in test_includes1()
56 start_it, end_it); in test_includes1()
107 start_it, end_it); in test_includes1_async()
112 start_it, end_it); in test_includes1_async()
192 start_it, end_it, std::less<std::size_t>()); in test_includes2()
196 start_it, end_it, std::less<std::size_t>()); in test_includes2()
253 start_it, end_it, std::less<std::size_t>()); in test_includes2_async()
339 start_it, end_it, in test_includes_exception()
388 start_it, end_it, in test_includes_exception_async()
469 start_it, end_it, in test_includes_bad_alloc()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/src/trace_processor/importers/systrace/
H A Dsystrace_trace_parser.cc51 auto start_it = partial_buf_.begin(); in Parse() local
53 auto line_it = std::find(start_it, partial_buf_.end(), '\n'); in Parse()
57 std::string buffer(start_it, line_it); in Parse()
81 start_it = line_it + 1; in Parse()
86 partial_buf_.erase(partial_buf_.begin(), start_it); in Parse()
/dports/lang/spidermonkey60/firefox-60.9.0/modules/pdfium/pdfium/fpdfsdk/
H A Dfpdf_dataavail_embeddertest.cpp75 auto start_it = available_ranges_.upper_bound(range); in SetDataAvailable() local
76 if (start_it != available_ranges_.begin()) in SetDataAvailable()
77 --start_it; // start now points to the key equal or lower than offset. in SetDataAvailable()
78 if (start_it->second < range.first) in SetDataAvailable()
79 ++start_it; // start element is entirely before current range, skip it. in SetDataAvailable()
83 if (start_it == end_it) { // No ranges to merge. in SetDataAvailable()
90 size_t new_start = std::min<size_t>(start_it->first, range.first); in SetDataAvailable()
93 available_ranges_.erase(start_it, ++end_it); in SetDataAvailable()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/test/compiler/6942326/
H A DTest.java266 long start_it = System.currentTimeMillis(); in test_varsub_indexof() local
275 …earch variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_varsub_indexof()
280 long start_it = System.currentTimeMillis(); in test_varstr_indexof() local
289 …earch substring (" + a.length() + " chars) in variable size string, time: " + (end_it - start_it)); in test_varstr_indexof()
294 long start_it = System.currentTimeMillis(); in test_missub_indexof() local
303 …ching variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_missub_indexof()
310 long start_it = System.currentTimeMillis(); in test_consub_indexof() local
319 …End search constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_consub_indexof()
324 long start_it = System.currentTimeMillis(); in test_conmis_indexof() local
333 …n matching constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_conmis_indexof()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/test/compiler/6942326/
H A DTest.java266 long start_it = System.currentTimeMillis(); in test_varsub_indexof() local
275 …earch variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_varsub_indexof()
280 long start_it = System.currentTimeMillis(); in test_varstr_indexof() local
289 …earch substring (" + a.length() + " chars) in variable size string, time: " + (end_it - start_it)); in test_varstr_indexof()
294 long start_it = System.currentTimeMillis(); in test_missub_indexof() local
303 …ching variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_missub_indexof()
310 long start_it = System.currentTimeMillis(); in test_consub_indexof() local
319 …End search constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_consub_indexof()
324 long start_it = System.currentTimeMillis(); in test_conmis_indexof() local
333 …n matching constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_conmis_indexof()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java274 long start_it = System.currentTimeMillis(); in test_varsub_indexof() local
283 …earch variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_varsub_indexof()
288 long start_it = System.currentTimeMillis(); in test_varstr_indexof() local
297 …earch substring (" + a.length() + " chars) in variable size string, time: " + (end_it - start_it)); in test_varstr_indexof()
302 long start_it = System.currentTimeMillis(); in test_missub_indexof() local
311 …ching variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_missub_indexof()
318 long start_it = System.currentTimeMillis(); in test_consub_indexof() local
327 …End search constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_consub_indexof()
332 long start_it = System.currentTimeMillis(); in test_conmis_indexof() local
341 …n matching constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_conmis_indexof()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java274 long start_it = System.currentTimeMillis(); in test_varsub_indexof() local
283 …earch variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_varsub_indexof()
288 long start_it = System.currentTimeMillis(); in test_varstr_indexof() local
297 …earch substring (" + a.length() + " chars) in variable size string, time: " + (end_it - start_it)); in test_varstr_indexof()
302 long start_it = System.currentTimeMillis(); in test_missub_indexof() local
311 …ching variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_missub_indexof()
318 long start_it = System.currentTimeMillis(); in test_consub_indexof() local
327 …End search constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_consub_indexof()
332 long start_it = System.currentTimeMillis(); in test_conmis_indexof() local
341 …n matching constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_conmis_indexof()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java274 long start_it = System.currentTimeMillis(); in test_varsub_indexof() local
283 …earch variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_varsub_indexof()
288 long start_it = System.currentTimeMillis(); in test_varstr_indexof() local
297 …earch substring (" + a.length() + " chars) in variable size string, time: " + (end_it - start_it)); in test_varstr_indexof()
302 long start_it = System.currentTimeMillis(); in test_missub_indexof() local
311 …ching variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_missub_indexof()
318 long start_it = System.currentTimeMillis(); in test_consub_indexof() local
327 …End search constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_consub_indexof()
332 long start_it = System.currentTimeMillis(); in test_conmis_indexof() local
341 …n matching constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_conmis_indexof()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java274 long start_it = System.currentTimeMillis(); in test_varsub_indexof() local
283 …earch variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_varsub_indexof()
288 long start_it = System.currentTimeMillis(); in test_varstr_indexof() local
297 …earch substring (" + a.length() + " chars) in variable size string, time: " + (end_it - start_it)); in test_varstr_indexof()
302 long start_it = System.currentTimeMillis(); in test_missub_indexof() local
311 …ching variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_missub_indexof()
318 long start_it = System.currentTimeMillis(); in test_consub_indexof() local
327 …End search constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_consub_indexof()
332 long start_it = System.currentTimeMillis(); in test_conmis_indexof() local
341 …n matching constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_conmis_indexof()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java274 long start_it = System.currentTimeMillis(); in test_varsub_indexof() local
283 …earch variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_varsub_indexof()
288 long start_it = System.currentTimeMillis(); in test_varstr_indexof() local
297 …earch substring (" + a.length() + " chars) in variable size string, time: " + (end_it - start_it)); in test_varstr_indexof()
302 long start_it = System.currentTimeMillis(); in test_missub_indexof() local
311 …ching variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_missub_indexof()
318 long start_it = System.currentTimeMillis(); in test_consub_indexof() local
327 …End search constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_consub_indexof()
332 long start_it = System.currentTimeMillis(); in test_conmis_indexof() local
341 …n matching constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_conmis_indexof()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java274 long start_it = System.currentTimeMillis(); in test_varsub_indexof() local
283 …earch variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_varsub_indexof()
288 long start_it = System.currentTimeMillis(); in test_varstr_indexof() local
297 …earch substring (" + a.length() + " chars) in variable size string, time: " + (end_it - start_it)); in test_varstr_indexof()
302 long start_it = System.currentTimeMillis(); in test_missub_indexof() local
311 …ching variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_missub_indexof()
318 long start_it = System.currentTimeMillis(); in test_consub_indexof() local
327 …End search constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_consub_indexof()
332 long start_it = System.currentTimeMillis(); in test_conmis_indexof() local
341 …n matching constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_conmis_indexof()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java274 long start_it = System.currentTimeMillis(); in test_varsub_indexof() local
283 …earch variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_varsub_indexof()
288 long start_it = System.currentTimeMillis(); in test_varstr_indexof() local
297 …earch substring (" + a.length() + " chars) in variable size string, time: " + (end_it - start_it)); in test_varstr_indexof()
302 long start_it = System.currentTimeMillis(); in test_missub_indexof() local
311 …ching variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_missub_indexof()
318 long start_it = System.currentTimeMillis(); in test_consub_indexof() local
327 …End search constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_consub_indexof()
332 long start_it = System.currentTimeMillis(); in test_conmis_indexof() local
341 …n matching constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_conmis_indexof()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/hotspot/jtreg/compiler/codegen/
H A DTest6942326.java274 long start_it = System.currentTimeMillis(); in test_varsub_indexof() local
283 …earch variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_varsub_indexof()
288 long start_it = System.currentTimeMillis(); in test_varstr_indexof() local
297 …earch substring (" + a.length() + " chars) in variable size string, time: " + (end_it - start_it)); in test_varstr_indexof()
302 long start_it = System.currentTimeMillis(); in test_missub_indexof() local
311 …ching variable size substring in string (" + b.length() + " chars), time: " + (end_it - start_it)); in test_missub_indexof()
318 long start_it = System.currentTimeMillis(); in test_consub_indexof() local
327 …End search constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_consub_indexof()
332 long start_it = System.currentTimeMillis(); in test_conmis_indexof() local
341 …n matching constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it)); in test_conmis_indexof()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pdfium/xfa/fde/
H A Dcfde_texteditengine.cpp946 auto start_it = text_piece_info_.begin(); in GetIndexForPoint() local
947 for (; start_it < text_piece_info_.end(); ++start_it) { in GetIndexForPoint()
948 if (start_it->rtPiece.top <= point.y && in GetIndexForPoint()
954 if (start_it == text_piece_info_.end()) in GetIndexForPoint()
957 auto end_it = start_it; in GetIndexForPoint()
968 size_t start_it_idx = start_it->nStart; in GetIndexForPoint()
969 for (; start_it <= end_it; ++start_it) { in GetIndexForPoint()
1009 static_cast<size_t>(start_it->nStart + start_it->nCount), text_length_); in GetIndexForPoint()
1027 if (start_it == text_piece_info_.end()) in GetIndexForPoint()
1029 if (start_it == end_it) in GetIndexForPoint()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pdfium/xfa/fde/
H A Dcfde_texteditengine.cpp945 auto start_it = text_piece_info_.begin(); in GetIndexForPoint() local
946 for (; start_it < text_piece_info_.end(); ++start_it) { in GetIndexForPoint()
947 if (start_it->rtPiece.top <= point.y && in GetIndexForPoint()
953 if (start_it == text_piece_info_.end()) in GetIndexForPoint()
956 auto end_it = start_it; in GetIndexForPoint()
967 size_t start_it_idx = start_it->nStart; in GetIndexForPoint()
968 for (; start_it <= end_it; ++start_it) { in GetIndexForPoint()
1008 static_cast<size_t>(start_it->nStart + start_it->nCount), text_length_); in GetIndexForPoint()
1026 if (start_it == text_piece_info_.end()) in GetIndexForPoint()
1028 if (start_it == end_it) in GetIndexForPoint()
[all …]
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/tools/
H A Dedit_tool.cpp174 auto start_it = path_directions.begin(); in setupAngleHelperFromEditedObjects() local
180 while (start_it != path_directions.end()) in setupAngleHelperFromEditedObjects()
182 auto start_dist = start_it->first - angle_start; in setupAngleHelperFromEditedObjects()
206 for (auto angle_it = start_it; angle_it != end_it; ++angle_it) in setupAngleHelperFromEditedObjects()
214 cur_length -= start_it->second; in setupAngleHelperFromEditedObjects()
216 ++start_it; in setupAngleHelperFromEditedObjects()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/src/trace_processor/importers/systrace/
H A Dsystrace_trace_parser.cc83 auto start_it = partial_buf_.begin(); in Parse() local
85 auto line_it = std::find(start_it, partial_buf_.end(), '\n'); in Parse()
89 std::string buffer(start_it, line_it); in Parse()
180 start_it = line_it + 1; in Parse()
185 partial_buf_.erase(partial_buf_.begin(), start_it); in Parse()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/page_load_metrics/observers/ad_metrics/
H A Dpage_ad_density_tracker.cc54 : start_it(start), end_it(end) {} in SegmentEventSetIterators()
58 std::set<SegmentEvent>::const_iterator start_it; member
70 auto start_it = in AddSegment() local
80 segment_id, SegmentEventSetIterators(start_it, end_it)); in AddSegment()
89 active_segments_.erase(set_its.start_it); in RemoveSegment()
/dports/devel/binaryen/binaryen-version_98/src/
H A Dmixed_arena.h231 void erase(Iterator start_it, Iterator end_it) { in erase() argument
232 assert(start_it.parent == end_it.parent && start_it.parent == this); in erase()
233 assert(start_it.index <= end_it.index && end_it.index <= usedElements); in erase()
234 size_t size = end_it.index - start_it.index; in erase()
235 for (size_t cur = start_it.index; cur + size < usedElements; ++cur) { in erase()
/dports/mail/mimedefang/mimedefang-2.84/examples/
H A Dinit-script.in230 start_it() {
426 start_it
440 start_it
449 start_it

1234567