HomeSort by relevance Sort by last modified time
    Searched refs:end_index (Results 26 - 50 of 69) sorted by null

12 3

  /art/runtime/
method_handles-inl.h 98 int32_t end_index) REQUIRES_SHARED(Locks::mutator_lock_) {
103 for (int32_t i = start_index; i < end_index; ++i) {
method_handles.h 127 int32_t end_index) REQUIRES_SHARED(Locks::mutator_lock_);
  /external/libchrome/base/json/
json_parser.cc 676 int end_index = start_index; local
685 end_index = index_;
694 end_index = index_;
711 end_index = index_;
735 StringPiece num_string(num_start, end_index - start_index);
  /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/googletest/googletest/include/gtest/internal/
gtest-param-util.h 269 int end_index = 0; local
271 end_index++;
272 return end_index;
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-param-util.h 269 int end_index = 0; local
271 end_index++;
272 return end_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/swiftshader/third_party/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/v8/testing/gtest/include/gtest/internal/
gtest-param-util.h 269 int end_index = 0; local
271 end_index++;
272 return end_index;
  /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;
  /prebuilts/ndk/r16/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;
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/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;
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 199 string::size_type begin_index, end_index; local
202 end_index = full.find_first_of(delim, begin_index);
203 if (end_index == string::npos) {
207 *result++ = full.substr(begin_index, (end_index - begin_index));
208 begin_index = full.find_first_not_of(delim, end_index);
236 string::size_type begin_index, end_index; local
240 end_index = full.find_first_of(delim, begin_index);
241 if (end_index == string::npos) {
245 *result++ = full.substr(begin_index, (end_index - begin_index));
246 begin_index = end_index + 1
    [all...]
  /external/v8/src/regexp/
jsregexp.cc 2214 int end_index = range_boundaries->length() - 1; local
    [all...]
  /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/opencv/cxcore/src/
cxdatastructs.cpp 612 int length = slice.end_index - slice.start_index;
618 if( slice.end_index <= 0 )
619 slice.end_index += total;
621 length = slice.end_index - slice.start_index;
    [all...]
  /external/libtextclassifier/
text-classifier.h 208 // (inclusive) and 'end_index' (exclusive). Assigns the winning candidate
213 int start_index, int end_index,
  /external/opencv/cv/include/
cv.hpp 114 int get_width() const { return prev_x_range.end_index - prev_x_range.start_index; }
  /prebuilts/misc/common/swig/include/2.0.11/d/
std_vector.i 494 void linearRemove(size_type start_index, size_type end_index) throw (std::out_of_range) {
496 std::vector< CTYPE >::iterator end = $self->begin() + end_index;
  /frameworks/base/tools/aapt2/configuration/
ConfigurationParser.cpp 354 size_t end_index = apk_name.to_string().rfind(ext.to_string()); local
356 (end_index != std::string::npos) ? std::string{apk_name.begin(), end_index} : "";
  /system/core/init/
builtins.cpp 398 static void import_late(const std::vector<std::string>& args, size_t start_index, size_t end_index) {
402 if (end_index <= start_index) {
409 for (size_t i = start_index; i < end_index; ++i) {
    [all...]
  /external/sonivox/jet_tools/JetCreator/
midifile.py 898 def DeleteEvents (self, start_index, end_index, move_meta_events=None):
902 if end_index is None:
903 end_index = len(self)
906 #for evt in self[start_index:end_index]:
912 for event in self[start_index:end_index]:
928 midi_file_logger.debug('DeleteEvents: deleted %d events in range(%s:%s)' % (delete_count, start_index, end_index))
929 midi_file_logger.debug('DeleteEvents: moved %d events in range(%s:%s)' % (move_count, start_index, end_index))
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsub-table.hh 1008 unsigned int start_index = 0, end_index = 0; local
1016 1, &end_index))
1018 c->buffer->unsafe_to_break_from_outbuffer (start_index, end_index);
    [all...]

Completed in 513 milliseconds

12 3