Home
last modified time | relevance | path

Searched refs:begin_index (Results 1 – 25 of 378) sorted by relevance

12345678910>>...16

/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/libjava/java/text/
H A DAttributedString.java84 int begin_index; field in AttributedString.AttributeRange
100 this.begin_index = begin_index; in AttributeRange()
190 this(aci, begin_index, end_index, null); in AttributedString()
213 if ((begin_index < 0) || (end_index < begin_index)) in AttributedString()
243 char c = aci.setIndex(begin_index); in AttributedString()
267 rl -= begin_index; in AttributedString()
277 if (rs < begin_index) in AttributedString()
282 rs = begin_index; in AttributedString()
286 rs -= begin_index; in AttributedString()
370 (end_index < begin_index)) in addAttributes()
[all …]
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/libjava/java/text/
H A DAttributedString.java84 int begin_index; field in AttributedString.AttributeRange
100 this.begin_index = begin_index; in AttributeRange()
190 this(aci, begin_index, end_index, null); in AttributedString()
213 if ((begin_index < 0) || (end_index < begin_index)) in AttributedString()
243 char c = aci.setIndex(begin_index); in AttributedString()
267 rl -= begin_index; in AttributedString()
277 if (rs < begin_index) in AttributedString()
282 rs = begin_index; in AttributedString()
286 rs -= begin_index; in AttributedString()
370 (end_index < begin_index)) in addAttributes()
[all …]
/dports/java/sablevm-classpath/sablevm-classpath-1.13/java/text/
H A DAttributedString.java69 int begin_index; field in AttributedString.AttributeRange
81 AttributeRange(Map attribs, int begin_index, int end_index) in AttributeRange() argument
84 this.begin_index = begin_index; in AttributeRange()
153 public AttributedString(AttributedCharacterIterator aci, int begin_index, in AttributedString() argument
156 this(aci, begin_index, end_index, null); in AttributedString()
303 public void addAttributes(Map attributes, int begin_index, int end_index) in addAttributes() argument
308 if ((begin_index < 0) || (end_index > sci.getEndIndex()) || in addAttributes()
309 (end_index <= begin_index)) in addAttributes()
364 int begin_index, int end_index) in getIterator() argument
366 if ((begin_index < 0) || (end_index > sci.getEndIndex()) || in getIterator()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/paint/
H A Dpaint_controller_paint_test.h84 wtf_size_t begin_index = 0; in ContentDisplayItems() local
86 while (begin_index < end_index && in ContentDisplayItems()
88 begin_index++; in ContentDisplayItems()
89 while (end_index > begin_index && in ContentDisplayItems()
92 return display_item_list.ItemsInRange(begin_index, end_index); in ContentDisplayItems()
100 wtf_size_t begin_index = 0; in ContentPaintChunks() local
102 while (begin_index < end_index) { in ContentPaintChunks()
103 const auto& client = chunks[begin_index].id.client; in ContentPaintChunks()
106 begin_index++; in ContentPaintChunks()
108 while (end_index > begin_index && in ContentPaintChunks()
[all …]
/dports/graphics/blender/blender-2.91.0/extern/ceres/internal/ceres/
H A Dsplit.cc101 string::size_type begin_index, end_index; in SplitStringToIteratorUsing() local
102 begin_index = full.find_first_not_of(delim); in SplitStringToIteratorUsing()
103 while (begin_index != string::npos) { in SplitStringToIteratorUsing()
104 end_index = full.find_first_of(delim, begin_index); in SplitStringToIteratorUsing()
106 *result++ = full.substr(begin_index); in SplitStringToIteratorUsing()
109 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorUsing()
110 begin_index = full.find_first_not_of(delim, end_index); in SplitStringToIteratorUsing()
/dports/misc/openmvg/openMVG-2.0/src/third_party/ceres-solver/internal/ceres/
H A Dsplit.cc101 string::size_type begin_index, end_index; in SplitStringToIteratorUsing() local
102 begin_index = full.find_first_not_of(delim); in SplitStringToIteratorUsing()
103 while (begin_index != string::npos) { in SplitStringToIteratorUsing()
104 end_index = full.find_first_of(delim, begin_index); in SplitStringToIteratorUsing()
106 *result++ = full.substr(begin_index); in SplitStringToIteratorUsing()
109 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorUsing()
110 begin_index = full.find_first_not_of(delim, end_index); in SplitStringToIteratorUsing()
/dports/math/ceres-solver/ceres-solver-2.0.0/internal/ceres/
H A Dsplit.cc100 string::size_type begin_index, end_index; in SplitStringToIteratorUsing() local
101 begin_index = full.find_first_not_of(delim); in SplitStringToIteratorUsing()
102 while (begin_index != string::npos) { in SplitStringToIteratorUsing()
103 end_index = full.find_first_of(delim, begin_index); in SplitStringToIteratorUsing()
105 *result++ = full.substr(begin_index); in SplitStringToIteratorUsing()
108 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorUsing()
109 begin_index = full.find_first_not_of(delim, end_index); in SplitStringToIteratorUsing()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/graphics/paint/
H A Ddisplay_item_list.cc15 return Range<iterator>(begin() + paint_chunk.begin_index, in ItemsInPaintChunk()
21 return Range<const_iterator>(begin() + paint_chunk.begin_index, in ItemsInPaintChunk()
28 wtf_size_t begin_index, in DisplayItemsAsJSON() argument
32 AppendSubsequenceAsJSON(begin_index, end_index, flags, *json_array); in DisplayItemsAsJSON()
36 void DisplayItemList::AppendSubsequenceAsJSON(wtf_size_t begin_index, in AppendSubsequenceAsJSON() argument
45 for (auto i = begin_index; i < end_index; ++i) { in AppendSubsequenceAsJSON()
50 for (auto i = begin_index; i < end_index; ++i) { in AppendSubsequenceAsJSON()
H A Dpaint_chunk.h35 : begin_index(begin), in PaintChunk()
44 : begin_index(begin), in PaintChunk()
63 DCHECK_GE(end_index, begin_index); in size()
64 return end_index - begin_index; in size()
99 wtf_size_t begin_index; member
/dports/devel/lua-luacheck/luacheck-4e5774169fa/src/luacheck/
H A Dunicode.lua13 local begin_index = 1
16 while end_index - begin_index > 1 do
17 local mid_index = math.floor((begin_index + end_index) / 2)
23 begin_index = mid_index
30 floor_boundary_index = floor_boundary_index or begin_index
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/s2/strings/
H A Dsplit.cc205 string::size_type begin_index, end_index; in SplitStringToIteratorAllowEmpty() local
206 begin_index = 0; in SplitStringToIteratorAllowEmpty()
211 *result++ = full.substr(begin_index); in SplitStringToIteratorAllowEmpty()
214 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorAllowEmpty()
215 begin_index = end_index + 1; in SplitStringToIteratorAllowEmpty()
217 *result++ = full.substr(begin_index); in SplitStringToIteratorAllowEmpty()
333 string::size_type begin_index, end_index; in SplitStringToIteratorUsing() local
334 begin_index = full.find_first_not_of(delim); in SplitStringToIteratorUsing()
335 while (begin_index != string::npos) { in SplitStringToIteratorUsing()
338 *result++ = full.substr(begin_index); in SplitStringToIteratorUsing()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/strings/
H A Dstring_split_internal.h79 for (size_type begin_index = 0, end_index = 0; end_index != Piece::npos; in SplitStringUsingSubstrT() local
80 begin_index = end_index + delimiter.size()) { in SplitStringUsingSubstrT()
81 end_index = input.find(delimiter, begin_index); in SplitStringUsingSubstrT()
83 ? input.substr(begin_index) in SplitStringUsingSubstrT()
84 : input.substr(begin_index, end_index - begin_index); in SplitStringUsingSubstrT()
/dports/devel/bats-core/bats-core-1.5.0/lib/bats-core/
H A Dformatter.bash32 local test_name begin_index ok_index not_ok_index index scope
33 begin_index=0
39 ((++begin_index))
41 test_name="${line#* $begin_index }"
42 bats_tap_stream_begin "$begin_index" "$test_name"
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/diff/
H A Dpair_selector.rb39 begin_index, end_index = Regexp.last_match.offset(:del_ins)
42 changed_line_count = (end_index - begin_index) / 2
44 halfway_index = begin_index + changed_line_count
45 (begin_index...halfway_index).each do |i|
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/graphics/paint/
H A Dpaint_chunk.h37 : begin_index(begin), in PaintChunk()
50 : begin_index(begin), in PaintChunk()
71 DCHECK_GE(end_index, begin_index); in size()
72 return end_index - begin_index; in size()
107 wtf_size_t begin_index; member
H A Ddisplay_item_list.h78 Range<iterator> ItemsInRange(wtf_size_t begin_index, wtf_size_t end_index) { in ItemsInRange() argument
79 return Range<iterator>(begin() + begin_index, begin() + end_index); in ItemsInRange()
81 Range<const_iterator> ItemsInRange(wtf_size_t begin_index, in ItemsInRange() argument
83 return Range<const_iterator>(begin() + begin_index, begin() + end_index); in ItemsInRange()
/dports/graphics/appleseed/appleseed-2.1.0-beta/src/appleseed/foundation/array/
H A Dalgorithm.h82 RandomAccessIter begin_index, in copy_indexed() argument
87 if (begin_index == end_index) in copy_indexed()
90 dst.reserve(end_index - begin_index); in copy_indexed()
92 detail::CopyIndexedVisitor<RandomAccessIter> v(src, begin_index, end_index); in copy_indexed()
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/i18n/
H A Drtl.cc365 size_t begin_index = 0; in UnadjustStringForLocaleDirection() local
366 char16 begin = text->at(begin_index); in UnadjustStringForLocaleDirection()
369 ++begin_index; in UnadjustStringForLocaleDirection()
380 text->substr(begin_index, end_index - begin_index + 1); in UnadjustStringForLocaleDirection()
483 size_t begin_index = 0; in StripWrappingBidiControlCharacters() local
484 char16 begin = text[begin_index]; in StripWrappingBidiControlCharacters()
489 ++begin_index; in StripWrappingBidiControlCharacters()
493 return text.substr(begin_index, end_index - begin_index + 1); in StripWrappingBidiControlCharacters()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/i18n/
H A Drtl.cc365 size_t begin_index = 0; in UnadjustStringForLocaleDirection() local
366 char16 begin = text->at(begin_index); in UnadjustStringForLocaleDirection()
369 ++begin_index; in UnadjustStringForLocaleDirection()
380 text->substr(begin_index, end_index - begin_index + 1); in UnadjustStringForLocaleDirection()
483 size_t begin_index = 0; in StripWrappingBidiControlCharacters() local
484 char16 begin = text[begin_index]; in StripWrappingBidiControlCharacters()
489 ++begin_index; in StripWrappingBidiControlCharacters()
493 return text.substr(begin_index, end_index - begin_index + 1); in StripWrappingBidiControlCharacters()
/dports/devel/protobuf25/protobuf-2.5.0/src/google/protobuf/stubs/
H A Dstrutil.cc172 string::size_type begin_index, end_index; in SplitStringToIteratorUsing() local
173 begin_index = full.find_first_not_of(delim); in SplitStringToIteratorUsing()
174 while (begin_index != string::npos) { in SplitStringToIteratorUsing()
177 *result++ = full.substr(begin_index); in SplitStringToIteratorUsing()
180 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorUsing()
209 string::size_type begin_index, end_index; in SplitStringToIteratorAllowEmpty() local
210 begin_index = 0; in SplitStringToIteratorAllowEmpty()
215 *result++ = full.substr(begin_index); in SplitStringToIteratorAllowEmpty()
218 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorAllowEmpty()
219 begin_index = end_index + 1; in SplitStringToIteratorAllowEmpty()
[all …]
/dports/sysutils/syslog-ng/syslog-ng-3.35.1/lib/
H A Dlogmatcher.c403 gint begin_index = matches[2 * i]; in log_matcher_pcre_re_feed_backrefs() local
406 if (begin_index < 0 || end_index < 0) in log_matcher_pcre_re_feed_backrefs()
411 log_msg_set_match_indirect(msg, i, value_handle, 0, begin_index, end_index - begin_index); in log_matcher_pcre_re_feed_backrefs()
415 log_msg_set_match(msg, i, &value[begin_index], end_index - begin_index); in log_matcher_pcre_re_feed_backrefs()
422 const gchar *value, gint begin_index, gint end_index) in log_matcher_pcre_re_feed_value_by_name() argument
432 … log_msg_set_value_by_name(msg, formatted_name->str, value + begin_index, end_index - begin_index); in log_matcher_pcre_re_feed_value_by_name()
436 log_msg_set_value_by_name(msg, tabptr + 2, value + begin_index, end_index - begin_index); in log_matcher_pcre_re_feed_value_by_name()
466 gint begin_index = matches[2 * n]; in log_matcher_pcre_re_feed_named_substrings() local
469 if (begin_index < 0 || end_index < 0) in log_matcher_pcre_re_feed_named_substrings()
472 …tcher_pcre_re_feed_value_by_name(self, msg, formatted_name, tabptr, value, begin_index, end_index); in log_matcher_pcre_re_feed_named_substrings()
/dports/textproc/google-ctemplate/ctemplate-ctemplate-2.4/src/
H A Dmake_tpl_varnames_h.cc215 string::size_type begin_index = 0; in SplitIntoLines() local
219 string::size_type end_index = input.find_first_of('\n', begin_index); in SplitIntoLines()
221 lines.push_back(input.substr(begin_index)); in SplitIntoLines()
224 lines.push_back(input.substr(begin_index, (end_index - begin_index))); in SplitIntoLines()
225 begin_index = end_index + 1; in SplitIntoLines()
226 if (begin_index >= input_len) // To avoid adding a trailing empty line. in SplitIntoLines()
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/extra/protobuf/protobuf-2.6.1/src/google/protobuf/stubs/
H A Dstrutil.cc172 string::size_type begin_index, end_index; in SplitStringToIteratorUsing() local
173 begin_index = full.find_first_not_of(delim); in SplitStringToIteratorUsing()
174 while (begin_index != string::npos) { in SplitStringToIteratorUsing()
177 *result++ = full.substr(begin_index); in SplitStringToIteratorUsing()
180 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorUsing()
209 string::size_type begin_index, end_index; in SplitStringToIteratorAllowEmpty() local
210 begin_index = 0; in SplitStringToIteratorAllowEmpty()
215 *result++ = full.substr(begin_index); in SplitStringToIteratorAllowEmpty()
218 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorAllowEmpty()
219 begin_index = end_index + 1; in SplitStringToIteratorAllowEmpty()
[all …]
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/extra/protobuf/protobuf-2.6.1/src/google/protobuf/stubs/
H A Dstrutil.cc172 string::size_type begin_index, end_index; in SplitStringToIteratorUsing() local
173 begin_index = full.find_first_not_of(delim); in SplitStringToIteratorUsing()
174 while (begin_index != string::npos) { in SplitStringToIteratorUsing()
177 *result++ = full.substr(begin_index); in SplitStringToIteratorUsing()
180 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorUsing()
209 string::size_type begin_index, end_index; in SplitStringToIteratorAllowEmpty() local
210 begin_index = 0; in SplitStringToIteratorAllowEmpty()
215 *result++ = full.substr(begin_index); in SplitStringToIteratorAllowEmpty()
218 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorAllowEmpty()
219 begin_index = end_index + 1; in SplitStringToIteratorAllowEmpty()
[all …]
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/extra/protobuf/protobuf-2.6.1/src/google/protobuf/stubs/
H A Dstrutil.cc172 string::size_type begin_index, end_index; in SplitStringToIteratorUsing() local
173 begin_index = full.find_first_not_of(delim); in SplitStringToIteratorUsing()
174 while (begin_index != string::npos) { in SplitStringToIteratorUsing()
177 *result++ = full.substr(begin_index); in SplitStringToIteratorUsing()
180 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorUsing()
209 string::size_type begin_index, end_index; in SplitStringToIteratorAllowEmpty() local
210 begin_index = 0; in SplitStringToIteratorAllowEmpty()
215 *result++ = full.substr(begin_index); in SplitStringToIteratorAllowEmpty()
218 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorAllowEmpty()
219 begin_index = end_index + 1; in SplitStringToIteratorAllowEmpty()
[all …]

12345678910>>...16