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

1 2

  /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);
  /system/core/base/
strings.cpp 56 size_t end_index = s.size() - 1; local
67 while (end_index >= start_index) {
68 if (!isspace(s[end_index])) {
71 end_index--;
75 if (end_index < start_index) {
78 // Start_index is the first non-space, end_index is the last one.
79 return s.substr(start_index, end_index - start_index + 1);
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
nack.cc 101 size_t end_index = nack_index + num_nack_fields; local
102 for (; nack_index < end_index; ++nack_index) {
transport_feedback.cc 690 const size_t end_index = kHeaderLength + header.payload_size_bytes; local
700 if (index + 2 > end_index) {
722 if (index + 1 > end_index) {
730 if (index + 2 > end_index) {
743 RTC_DCHECK_GE(index, end_index - 3);
744 RTC_DCHECK_LE(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/squashfs-tools/kernel/fs/squashfs/
file.c 386 int end_index = start_index | mask; local
452 for (i = start_index; i <= end_index && bytes > 0; i++,
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/gtest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/libchrome/base/json/
json_parser.cc 827 int end_index = start_index; local
836 end_index = index_;
849 end_index = index_;
861 end_index = index_;
885 StringPiece num_string(num_start, end_index - start_index);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
gim_hash_table.h 215 GUINT end_index = start_index + m_node_size; local
217 while(start_index<end_index)
235 GUINT end_index = start_index + m_node_size; local
237 while(start_index<end_index)
  /external/libweave/third_party/chromium/base/json/
json_parser.cc 822 int end_index = start_index; local
831 end_index = index_;
844 end_index = index_;
856 end_index = index_;
880 StringPiece num_string(num_start, end_index - start_index);
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 244 int end_index = 0; local
246 end_index++;
247 return end_index;
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 172 string::size_type begin_index, end_index; local
175 end_index = full.find_first_of(delim, begin_index);
176 if (end_index == string::npos) {
180 *result++ = full.substr(begin_index, (end_index - begin_index));
181 begin_index = full.find_first_not_of(delim, end_index);
209 string::size_type begin_index, end_index; local
213 end_index = full.find_first_of(delim, begin_index);
214 if (end_index == string::npos) {
218 *result++ = full.substr(begin_index, (end_index - begin_index));
219 begin_index = end_index + 1
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_pattern.cpp 375 int min_x, max_x, start_index, end_index; local
380 end_index = 1;
385 end_index = 0;
396 FX_FLOAT r_unit = (r[end_index] - r[start_index]) / (max_x - min_x);
397 FX_FLOAT g_unit = (g[end_index] - g[start_index]) / (max_x - min_x);
398 FX_FLOAT b_unit = (b[end_index] - b[start_index]) / (max_x - min_x);
    [all...]
  /external/squashfs-tools/kernel-2.4/fs/squashfs/
inode.c 1465 int end_index = start_index | mask; local
    [all...]
  /art/runtime/
utils.cc 897 unsigned int end_index = s.size() - 1; local
908 while (end_index >= start_index) {
909 if (!isspace(s[end_index])) {
912 end_index--;
916 if (end_index < start_index) {
919 // Start_index is the first non-space, end_index is the last one.
920 return s.substr(start_index, end_index - start_index + 1);
    [all...]
  /external/opencv/cxcore/include/
cxtypes.h 1092 int start_index, end_index; member in struct:CvSlice
1100 slice.end_index = end;
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
types_c.h 1100 int start_index, end_index; member in struct:CvSlice
    [all...]
  /external/v8/src/regexp/
jsregexp.cc 2218 int end_index = range_boundaries->length() - 1; local
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h 10244 int end_index = 0; local
    [all...]
  /external/opencv3/modules/ts/include/opencv2/ts/
ts_gtest.h 10305 int end_index = 0; local
    [all...]

Completed in 6014 milliseconds

1 2