HomeSort by relevance Sort by last modified time
    Searched refs:end_index (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /frameworks/av/media/libeffects/loudness/dsp/core/
basic-inl.h 30 int end_index) {
32 int end = end_index;
basic.h 40 int end_index);
  /external/ceres-solver/internal/ceres/
split.cc 96 string::size_type begin_index, end_index; local
99 end_index = full.find_first_of(delim, begin_index);
100 if (end_index == string::npos) {
104 *result++ = full.substr(begin_index, (end_index - begin_index));
105 begin_index = full.find_first_not_of(delim, end_index);
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
mock.py 87 end_index = self._read_data.find('\n', self._read_pos) + 1
88 if not end_index:
89 end_index = len(self._read_data)
90 return self._read_up_to(end_index)
97 end_index = min(len(self._read_data), self._read_pos + length)
98 return self._read_up_to(end_index)
100 def _read_up_to(self, end_index):
101 line = self._read_data[self._read_pos:end_index]
102 self._read_pos = end_index
  /external/chromium_org/chromeos/dbus/ibus/
ibus_text.cc 22 IBusAttribute() : type(0), value(0), start_index(0), end_index(0) {}
26 uint32 end_index; member in struct:chromeos::__anon9655::IBusAttribute
39 !ibus_object_reader.PopUint32(&attribute->end_index)) {
55 ibus_attribute_writer.AppendUint32(attribute.end_index);
99 attribute.end_index = underline_attributes[i].end_index;
110 attribute.end_index = selection_attributes[i].end_index;
197 underline_attribute.end_index = attribute.end_index;
    [all...]
ibus_text.h 130 uint32 end_index; // The exclusive end index. member in struct:chromeos::IBusText::UnderlineAttribute
135 uint32 end_index; // The exclusive end index. member in struct:chromeos::IBusText::SelectionAttribute
ibus_input_context_client.h 107 // |end_index| is exclusive.
110 uint32 end_index) = 0;
  /external/chromium/chrome/browser/
crash_upload_list_win.cc 71 size_t end_index = message.find(pattern_suffix, start_index); local
72 if (end_index != std::wstring::npos) {
74 message.substr(start_index, end_index - start_index);
  /external/chromium_org/chrome/browser/
crash_upload_list_win.cc 72 size_t end_index = message.find(pattern_suffix, start_index); local
73 if (end_index != std::wstring::npos) {
75 message.substr(start_index, end_index - start_index);
  /external/chromium_org/ui/base/l10n/
l10n_util_collator.h 115 // want to be sorted. |end_index| points to the end position of elements in the
121 unsigned int end_index,
123 DCHECK(begin_index < end_index &&
124 end_index <= static_cast<unsigned int>(elements->size()));
133 elements->begin() + end_index,
136 sort(elements->begin() + begin_index, elements->begin() + end_index, c);
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_primitive_restart.c 172 GLuint end_index; local
203 end_index = prims[prim_num].start + prims[prim_num].count;
211 temp_prim.count = MIN2(sub_end_index, end_index) - temp_prim.start;
223 if (sub_end_index >= end_index) {
  /external/mesa3d/src/mesa/vbo/
vbo_primitive_restart.c 172 GLuint end_index; local
203 end_index = prims[prim_num].start + prims[prim_num].count;
211 temp_prim.count = MIN2(sub_end_index, end_index) - temp_prim.start;
223 if (sub_end_index >= end_index) {
  /external/chromium_org/base/i18n/
rtl.cc 279 size_t end_index = text->length() - 1; local
280 char16 end = text->at(end_index);
283 --end_index;
287 text->substr(begin_index, end_index - begin_index + 1);
376 size_t end_index = text.length() - 1; local
377 if (text[end_index] == kPopDirectionalFormatting)
378 --end_index;
379 return text.substr(begin_index, end_index - begin_index + 1);
  /external/chromium/sdch/open-vcdiff/src/
blockhash.cc 203 void BlockHash::AddAllBlocksThroughIndex(int end_index) {
204 if (end_index > static_cast<int>(source_size_)) {
206 " with index " << end_index
211 if (end_index <= last_index_added) {
213 " with index " << end_index
218 int end_limit = end_index;
blockhash.h 187 // (last_block_added_ * kBlockSize, end_index), exclusive of the endpoints.
188 // If end_index <= the last index added (last_block_added_ * kBlockSize),
191 // A partial block beginning anywhere up to (end_index - 1) is also added,
208 void AddAllBlocksThroughIndex(int end_index);
  /external/chromium_org/sdch/open-vcdiff/src/
blockhash.cc 204 void BlockHash::AddAllBlocksThroughIndex(int end_index) {
205 if (end_index > static_cast<int>(source_size_)) {
207 " with index " << end_index
212 if (end_index <= last_index_added) {
214 " with index " << end_index
219 int end_limit = end_index;
  /external/open-vcdiff/src/
blockhash.cc 204 void BlockHash::AddAllBlocksThroughIndex(int end_index) {
205 if (end_index > static_cast<int>(source_size_)) {
207 " with index " << end_index
212 if (end_index <= last_index_added) {
214 " with index " << end_index
219 int end_limit = end_index;
  /external/opencv/cv/src/
cvapprox.cpp 558 slice.end_index = count - 1;
603 slice.end_index = right_slice.start_index += slice.start_index;
606 right_slice.end_index = slice.start_index;
607 if( right_slice.end_index < right_slice.start_index )
608 right_slice.end_index += count;
622 cvSetSeqReaderPos( &reader, slice.end_index );
628 if( slice.end_index > slice.start_index + 1 )
637 for( i = slice.start_index + 1; i < slice.end_index; i++ )
653 assert( slice.end_index > slice.start_index );
666 right_slice.end_index = slice.end_index
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
readable_font_data.h 203 int32_t end_index,
238 int32_t end_index,
  /external/chromium/base/i18n/
rtl.cc 356 size_t end_index = text.length() - 1; local
357 if (text[end_index] == kPopDirectionalFormatting)
358 --end_index;
359 return text.substr(begin_index, end_index - begin_index + 1);
  /external/chromium/base/
string_split.cc 131 const typename STR::size_type end_index = str.find(s, begin_index); local
132 if (end_index == STR::npos) {
139 const STR term = str.substr(begin_index, end_index - begin_index);
143 begin_index = end_index + s.size();
  /external/chromium_org/base/strings/
string_split.cc 122 const typename STR::size_type end_index = str.find(s, begin_index); local
123 if (end_index == STR::npos) {
130 const STR term = str.substr(begin_index, end_index - begin_index);
134 begin_index = end_index + s.size();
  /external/chromium/chrome/browser/history/
visit_database.cc 498 size_t start_index = 0, end_index = 0; local
499 while (end_index < visits_size) {
500 start_index = end_index;
501 end_index = end_index + batch_size < visits_size ? end_index + batch_size
508 for (size_t j = start_index; j < end_index; j++) {
  /external/chromium/chrome/common/extensions/
extension_message_bundle.cc 245 std::string::size_type end_index =
247 if (end_index == message->npos)
252 message->substr(beg_index, end_index - beg_index);
268 end_index - beg_index + var_begin_delimiter_size +
  /external/chromium_org/chrome/common/extensions/
message_bundle.cc 242 std::string::size_type end_index =
244 if (end_index == message->npos)
249 message->substr(beg_index, end_index - beg_index);
265 end_index - beg_index + var_begin_delimiter_size +

Completed in 6759 milliseconds

1 2 3 4