Home
last modified time | relevance | path

Searched refs:end_pos (Results 101 – 125 of 4411) sorted by relevance

12345678910>>...177

/dports/accessibility/atkmm/atkmm-2.28.0/atk/atkmm/
H A Deditabletext.cc228 , end_pos in copy_text_vfunc_callback()
246 (*base->copy_text)(self, start_pos, end_pos); in copy_text_vfunc_callback()
267 , end_pos in cut_text_vfunc_callback()
285 (*base->cut_text)(self, start_pos, end_pos); in cut_text_vfunc_callback()
306 , end_pos in delete_text_vfunc_callback()
324 (*base->delete_text)(self, start_pos, end_pos); in delete_text_vfunc_callback()
437 void EditableText::copy_text(int start_pos, int end_pos) in copy_text() argument
442 void EditableText::cut_text(int start_pos, int end_pos) in cut_text() argument
507 (*base->copy_text)(gobj(),start_pos,end_pos); in copy_text_vfunc()
519 (*base->cut_text)(gobj(),start_pos,end_pos); in cut_text_vfunc()
[all …]
/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/src/tools/
H A Debml_validator.cpp180 read_id(int64_t end_pos) { in read_id() argument
186 if (pos >= end_pos) in read_id()
205 if ((pos + id_len) > end_pos) in read_id()
223 read_size(int64_t end_pos) { in read_size() argument
229 if (pos >= end_pos) in read_size()
242 if ((pos + size_len) > end_pos) in read_size()
261 int64_t end_pos) { in parse_content() argument
287 if (content_end_pos > end_pos) { in parse_content()
290 if (!g_in->setFilePointer2(end_pos)) in parse_content()
312 if (!g_in->setFilePointer2(end_pos)) in parse_content()
[all …]
/dports/devel/py-bullet3/bullet3-3.21/examples/pybullet/gym/pybullet_envs/minitaur/envs_v2/scenes/terrain/
H A Dstepstones.py90 return end_pos, step_stone_id
125 end_pos = start_pos
128 end_pos, step_stone_id = build_one_stepstone(
130 start_pos=end_pos,
138 return end_pos, ids
189 end_pos = start_pos
200 end_pos, step_stone_id = build_one_stepstone(
202 start_pos=end_pos,
210 return end_pos, ids
225 end_pos, platform_id = build_one_stepstone(
[all …]
/dports/audio/zrythm/zrythm-1.0.0-alpha.26.0.13/tests/audio/
H A Dmidi_note.c43 Position start_pos, end_pos;
45 position_set_to_bar (&end_pos, 6);
48 &start_pos, &end_pos, 0, 0, 0);
60 Position start_pos, end_pos;
62 position_set_to_bar (&end_pos, 3);
66 &start_pos, &end_pos, val,
77 &end_pos, &mn_obj->end_pos));
/dports/www/p5-CGI-Tiny/CGI-Tiny-1.002/lib/CGI/Tiny/
H A DMultipart.pm48 my $end_pos = index $buffer, $end_boundary;
49 if ($next_pos >= 0 and ($end_pos < 0 or $end_pos > $next_pos)) {
53 } elsif ($end_pos >= 0) {
90 my $end_pos = index $buffer, $end_boundary;
91 if ($next_pos >= 0 and ($end_pos < 0 or $end_pos > $next_pos)) {
101 } elsif ($end_pos >= 0) {
102 if (!$state{parsed_optional_crlf} and $end_pos >= 2) {
104 $end_pos -= 2;
107 $append = substr $buffer, 0, $end_pos; # no replacement, we're done here
/dports/security/rhash/RHash-1.4.2/
H A Dcommon_func.c132 start_pos = end_pos = len1; in wcs_replace_n()
133 else if (end_pos > len1) in wcs_replace_n()
134 end_pos = len1; in wcs_replace_n()
136 end_pos = start_pos; in wcs_replace_n()
142 if (end_pos < len1) in wcs_replace_n()
143 memcpy(result + start_pos + len2, src + end_pos, (len1 - end_pos) * sizeof(wchar_t)); in wcs_replace_n()
167 else if (end_pos > len1) in str_replace_n()
168 end_pos = len1; in str_replace_n()
170 end_pos = start_pos; in str_replace_n()
176 if (end_pos < len1) in str_replace_n()
[all …]
/dports/x11-toolkits/gtkmm24/gtkmm-2.24.5/gtk/gtkmm/
H A Deditable.h191 void delete_text(int start_pos, int end_pos);
207 Glib::ustring get_chars(int start_pos, int end_pos) const;
221 void select_region(int start_pos, int end_pos);
233 bool get_selection_bounds(int& start_pos, int& end_pos) const;
282 virtual void delete_text_vfunc(int start_pos, int end_pos);
285 virtual Glib::ustring get_chars_vfunc(int start_pos, int end_pos) const;
288 virtual void select_region_vfunc(int start_pos, int end_pos);
290 virtual bool get_selection_bounds_vfunc(int& start_pos, int& end_pos) const;
311 virtual void on_delete_text(int start_pos, int end_pos);
/dports/comms/rtl-433/rtl_433-21.12/src/
H A Dsamp_grab.c96 unsigned end_pos, start_pos, signal_bsize, wlen, wrest; in samp_grab_write() local
120 end_pos = *g->sample_size * grab_end; in samp_grab_write()
121 if (g->sg_index >= end_pos) in samp_grab_write()
122 end_pos = g->sg_index - end_pos; in samp_grab_write()
124 end_pos = g->sg_size - end_pos + g->sg_index; in samp_grab_write()
127 if (end_pos >= signal_bsize) in samp_grab_write()
128 start_pos = end_pos - signal_bsize; in samp_grab_write()
130 start_pos = g->sg_size - signal_bsize + end_pos; in samp_grab_write()
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/mtproto/
H A DAuthData.cpp20 Status check_message_id_duplicates(int64 *saved_message_ids, size_t max_size, size_t &end_pos, int6… in check_message_id_duplicates() argument
25 if (end_pos == 2 * max_size) { in check_message_id_duplicates()
27 end_pos = max_size; in check_message_id_duplicates()
29 if (end_pos == 0 || message_id > saved_message_ids[end_pos - 1]) { in check_message_id_duplicates()
31 saved_message_ids[end_pos++] = message_id; in check_message_id_duplicates()
34 if (end_pos >= max_size && message_id < saved_message_ids[0]) { in check_message_id_duplicates()
38 auto it = std::lower_bound(&saved_message_ids[0], &saved_message_ids[end_pos], message_id); in check_message_id_duplicates()
42 std::copy_backward(it, &saved_message_ids[end_pos], &saved_message_ids[end_pos + 1]); in check_message_id_duplicates()
44 ++end_pos; in check_message_id_duplicates()
/dports/devel/boost-docs/boost_1_72_0/libs/filesystem/src/
H A Dpath.cpp319 end_pos > 0 in m_parent_path_end()
320 && (end_pos-1) != root_dir_pos in m_parent_path_end()
323 --end_pos) {} in m_parent_path_end()
327 : end_pos; in m_parent_path_end()
541 if (end_pos == 2 in filename_pos()
546 if (end_pos && fs::detail::is_directory_separator(str[end_pos-1])) in filename_pos()
547 return end_pos-1; in filename_pos()
814 size_type end_pos(it.m_pos); in m_path_iterator_decrement() local
833 end_pos > 0 in m_path_iterator_decrement()
834 && (end_pos-1) != root_dir_pos in m_path_iterator_decrement()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/filesystem/src/
H A Dpath.cpp319 end_pos > 0 in m_parent_path_end()
320 && (end_pos-1) != root_dir_pos in m_parent_path_end()
323 --end_pos) {} in m_parent_path_end()
327 : end_pos; in m_parent_path_end()
541 if (end_pos == 2 in filename_pos()
546 if (end_pos && fs::detail::is_directory_separator(str[end_pos-1])) in filename_pos()
547 return end_pos-1; in filename_pos()
814 size_type end_pos(it.m_pos); in m_path_iterator_decrement() local
833 end_pos > 0 in m_path_iterator_decrement()
834 && (end_pos-1) != root_dir_pos in m_path_iterator_decrement()
[all …]
/dports/math/pdal/PDAL-2.3.0/vendor/pdalboost/libs/filesystem/src/
H A Dpath.cpp341 end_pos > 0 in m_parent_path_end()
342 && (end_pos-1) != root_dir_pos in m_parent_path_end()
345 --end_pos) {} in m_parent_path_end()
349 : end_pos; in m_parent_path_end()
547 if (end_pos == 2 in filename_pos()
552 if (end_pos && is_separator(str[end_pos-1])) in filename_pos()
553 return end_pos-1; in filename_pos()
820 size_type end_pos(it.m_pos); in m_path_iterator_decrement() local
839 end_pos > 0 in m_path_iterator_decrement()
840 && (end_pos-1) != root_dir_pos in m_path_iterator_decrement()
[all …]
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/libs/filesystem/src/
H A Dpath.cpp310 end_pos > 0 in m_parent_path_end()
311 && (end_pos-1) != root_dir_pos in m_parent_path_end()
314 --end_pos) {} in m_parent_path_end()
318 : end_pos; in m_parent_path_end()
533 if (end_pos == 2 in filename_pos()
538 if (end_pos && fs::detail::is_directory_separator(str[end_pos-1])) in filename_pos()
539 return end_pos-1; in filename_pos()
804 size_type end_pos(it.m_pos); in m_path_iterator_decrement() local
823 end_pos > 0 in m_path_iterator_decrement()
824 && (end_pos-1) != root_dir_pos in m_path_iterator_decrement()
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/filesystem/src/
H A Dpath.cpp319 end_pos > 0 in m_parent_path_end()
320 && (end_pos-1) != root_dir_pos in m_parent_path_end()
323 --end_pos) {} in m_parent_path_end()
327 : end_pos; in m_parent_path_end()
541 if (end_pos == 2 in filename_pos()
546 if (end_pos && fs::detail::is_directory_separator(str[end_pos-1])) in filename_pos()
547 return end_pos-1; in filename_pos()
814 size_type end_pos(it.m_pos); in m_path_iterator_decrement() local
833 end_pos > 0 in m_path_iterator_decrement()
834 && (end_pos-1) != root_dir_pos in m_path_iterator_decrement()
[all …]
/dports/audio/supercollider/SuperCollider-3.11.0-Source/external_libraries/boost/libs/filesystem/src/
H A Dpath.cpp329 end_pos > 0
330 && (end_pos-1) != root_dir_pos
333 --end_pos) {}
337 : end_pos;
536 if (end_pos == 2
541 if (end_pos && fs::detail::is_directory_separator(str[end_pos-1]))
542 return end_pos-1;
809 size_type end_pos(it.m_pos);
828 end_pos > 0
829 && (end_pos-1) != root_dir_pos
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/filesystem/src/
H A Dpath.cpp310 end_pos > 0 in m_parent_path_end()
311 && (end_pos-1) != root_dir_pos in m_parent_path_end()
314 --end_pos) {} in m_parent_path_end()
318 : end_pos; in m_parent_path_end()
533 if (end_pos == 2 in filename_pos()
538 if (end_pos && fs::detail::is_directory_separator(str[end_pos-1])) in filename_pos()
539 return end_pos-1; in filename_pos()
804 size_type end_pos(it.m_pos); in m_path_iterator_decrement() local
823 end_pos > 0 in m_path_iterator_decrement()
824 && (end_pos-1) != root_dir_pos in m_path_iterator_decrement()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/boost-1.60.0/libs/filesystem/src/
H A Dpath.cpp341 end_pos > 0 in m_parent_path_end()
342 && (end_pos-1) != root_dir_pos in m_parent_path_end()
345 --end_pos) {} in m_parent_path_end()
349 : end_pos; in m_parent_path_end()
547 if (end_pos == 2 in filename_pos()
552 if (end_pos && is_separator(str[end_pos-1])) in filename_pos()
553 return end_pos-1; in filename_pos()
820 size_type end_pos(it.m_pos); in m_path_iterator_decrement() local
839 end_pos > 0 in m_path_iterator_decrement()
840 && (end_pos-1) != root_dir_pos in m_path_iterator_decrement()
[all …]
/dports/x11-toolkits/gtk30/gtk+-3.24.31/gtk/
H A Dgtkeditable.h57 gint end_pos);
67 gint end_pos);
71 gint end_pos);
74 gint end_pos);
77 gint *end_pos);
88 gint end_pos);
92 gint *end_pos);
101 gint end_pos);
105 gint end_pos);
/dports/x11-toolkits/gtk20/gtk+-2.24.33/gtk/
H A Dgtkeditable.h61 gint end_pos);
71 gint end_pos);
75 gint end_pos);
78 gint end_pos);
81 gint *end_pos);
90 gint end_pos);
93 gint *end_pos);
100 gint end_pos);
103 gint end_pos);
/dports/x11-toolkits/gtkmm30/gtkmm-3.24.2/gtk/gtkmm/
H A Deditable.h191 void delete_text(int start_pos, int end_pos);
207 Glib::ustring get_chars(int start_pos, int end_pos) const;
221 void select_region(int start_pos, int end_pos);
233 bool get_selection_bounds(int& start_pos, int& end_pos) const;
306 virtual void delete_text_vfunc(int start_pos, int end_pos);
309 virtual Glib::ustring get_chars_vfunc(int start_pos, int end_pos) const;
312 virtual void select_region_vfunc(int start_pos, int end_pos);
314 virtual bool get_selection_bounds_vfunc(int& start_pos, int& end_pos) const;
335 virtual void on_delete_text(int start_pos, int end_pos);
/dports/games/zoom/zoom-1.1.5/src/
H A Dfile.c99 block = malloc(end_pos-start_pos); in read_block()
106 if (rd != end_pos-start_pos) in read_block()
108 end_pos-start_pos, rd); in read_block()
258 int end_pos) in read_block() argument
278 if (nread != end_pos-start_pos) in read_block()
281 end_pos-start_pos, nread); in read_block()
292 int end_pos) in read_block2() argument
301 if (nread != end_pos-start_pos) in read_block2()
303 end_pos-start_pos, nread); in read_block2()
578 if (rd != end_pos-start_pos) in read_block()
[all …]
/dports/games/ags/ags_linux_v.3.4.4.1/Engine/libsrc/libcda-0.5/
H A Dwindows.c25 static char end_pos[20]; variable
82 sprintf(end_pos, "%u:%s", track, lengthof(track)); in cd_play()
83 return command("play cdaudio from %lu to %s", startof(track), end_pos); in cd_play()
90 sprintf(end_pos, "%u:%s", end, lengthof(end)); in cd_play_range()
91 return command("play cdaudio from %lu to %s", startof(start), end_pos); in cd_play_range()
98 end_pos[0] = 0; in cd_play_from()
131 if (end_pos[0]) in cd_resume()
132 command("play cdaudio from %s to %s", paused_pos, end_pos); in cd_resume()
/dports/comms/bforce-kst/bforce-0.22.8.kst7/contrib/u-srif/lib/
H A Dutmpl.py67 end_pos = string.find(text, '@', pos+1)
68 if end_pos < 0:
70 if end_pos - pos > 1:
72 replace = self.__cmd__(text[pos+1:end_pos])
74 text = text[:pos]+replace+text[end_pos+1:]
76 pos = end_pos + len(replace)-(end_pos-pos+1)
79 pos = end_pos + 1
83 pos = end_pos
/dports/net/libzmq2/zeromq-2.2.0/src/
H A Dyqueue.hpp59 end_pos = 0; in yqueue_t()
98 back_pos = end_pos; in push()
100 if (++end_pos != N) in push()
113 end_pos = 0; in push()
137 if (end_pos) in unpush()
138 --end_pos; in unpush()
140 end_pos = N - 1; in unpush()
184 int end_pos; member in zmq::yqueue_t
/dports/devel/libxs/libxs-1.2.0/src/
H A Dyqueue.hpp60 end_pos = 0; in yqueue_t()
99 back_pos = end_pos; in push()
101 if (++end_pos != N) in push()
114 end_pos = 0; in push()
138 if (end_pos) in unpush()
139 --end_pos; in unpush()
141 end_pos = N - 1; in unpush()
185 int end_pos; member in xs::yqueue_t

12345678910>>...177