Searched refs:begin (Results 1 - 25 of 161) sorted by last modified time

1234567

/art/tools/
H A Dcpplint.py979 def RemoveMultiLineCommentsFromRange(lines, begin, end):
983 for i in range(begin, end):
2352 # or they begin with multiple slashes followed by a space:
/art/test/137-cfi/
H A Dcfi.cc68 for (Backtrace::const_iterator it = bt->begin(); it != bt->end(); ++it) {
81 for (Backtrace::const_iterator it = bt->begin(); it != bt->end(); ++it) {
/art/imgdiag/
H A Dimgdiag.cc330 "local begin " << reinterpret_cast<const void*>(image_begin) <<
332 ", remote begin " << reinterpret_cast<const void*>(boot_map.start) <<
402 // Iterate through one page at a time. Boot map begin/end already implicitly aligned.
403 for (uintptr_t begin = boot_map.start; begin != boot_map.end; begin += kPageSize) {
404 ptrdiff_t offset = begin - boot_map.start;
428 for (uintptr_t begin = boot_map.start; begin != boot_map.end; ++begin) {
[all...]
/art/oatdump/
H A Doatdump.cc1160 std::iota(indexes_.begin(), indexes_.end(), 0u);
1161 std::sort(indexes_.begin(),
H A Doatdump_test.cc79 exec_argv.insert(exec_argv.end(), args.begin(), args.end());
/art/patchoat/
H A Dpatchoat.cc259 std::replace(converted_image_filename.begin() + 1, converted_image_filename.end(), '/', '@');
309 std::replace(converted_image_filename.begin() + 1, converted_image_filename.end(), '/', '@');
/art/runtime/arch/arm/
H A Dinstruction_set_features_arm.cc271 for (auto i = features.begin(); i != features.end(); i++) {
/art/runtime/arch/arm64/
H A Dinstruction_set_features_arm64.cc136 for (auto i = features.begin(); i != features.end(); i++) {
/art/runtime/arch/
H A Dinstruction_set_features.cc223 for (auto it = features.begin(); it != features.end();) {
293 const char* const * begin = variants; local
294 const char* const * end = begin + num_variants;
295 return std::find(begin, end, variant) != end;
/art/runtime/arch/mips/
H A Dinstruction_set_features_mips.cc208 for (auto i = features.begin(); i != features.end(); i++) {
/art/runtime/arch/mips64/
H A Dinstruction_set_features_mips64.cc104 auto i = features.begin();
/art/runtime/arch/x86/
H A Dinstruction_set_features_x86.cc318 for (auto i = features.begin(); i != features.end(); i++) {
/art/runtime/base/
H A Darray_slice.h103 StrideIterator<T> begin() { function in class:art::ArraySlice
107 StrideIterator<const T> begin() const { function in class:art::ArraySlice
120 return size() != 0 ? MakeIterationRange(begin(), end())
H A Dbit_utils_test.cc323 auto expected_it = expected.begin();
324 auto element_it = elements.begin();
H A Dbit_vector.h44 * object with begin() and end() suitable for range-based loops:
102 IndexIterator begin() const { function in class:art::BitVector::IndexContainer
H A Dbit_vector_test.cc42 EXPECT_TRUE(bv.Indexes().begin().Done());
43 EXPECT_TRUE(bv.Indexes().begin() == bv.Indexes().end());
58 BitVector::IndexIterator iterator = bv.Indexes().begin();
H A Ddchecked_vector.h101 using Base::begin;
205 return lhs.size() == rhs.size() && std::equal(lhs.begin(), lhs.end(), rhs.begin());
213 return std::lexicographical_compare(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
H A Dhash_set.h272 iterator begin() { function in class:art::HashSet
281 const_iterator begin() const { function in class:art::HashSet
H A Dhash_set_test.cc116 ASSERT_TRUE(hash_set.begin() == hash_set.end());
134 for (auto it = hash_set.begin(); it != hash_set.end();) {
291 size_t HashIntSequence(T begin, T end) { argument
293 for (auto iter = begin; iter != end; ++iter) {
301 return HashIntSequence(item.begin(), item.end());
305 return HashIntSequence(item.begin(), item.end());
313 auto aiter = a.begin();
314 auto biter = b.begin();
H A Diteration_range.h37 iterator begin() const { return first_; } function in class:art::IterationRange
H A Dlength_prefixed_array.h46 StrideIterator<T> begin(size_t element_size = sizeof(T), size_t alignment = alignof(T)) { function in class:art::LengthPrefixedArray
50 StrideIterator<const T> begin(size_t element_size = sizeof(T), function in class:art::LengthPrefixedArray
115 MakeIterationRange(arr->begin(element_size, alignment), arr->end(element_size, alignment)) :
H A Dmutex.cc177 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
185 for (It it = all_mutexes->begin(); it != all_mutexes->end(); ++it) {
H A Dstl_util.h30 std::sort(v->begin(), v->end());
31 v->erase(std::unique(v->begin(), v->end()), v->end());
45 void STLDeleteContainerPointers(ForwardIterator begin, argument
47 while (begin != end) {
48 ForwardIterator temp = begin;
49 ++begin;
56 // hash_set, or any other STL container which defines sensible begin(), end(),
67 STLDeleteContainerPointers(container->begin(), container->end());
78 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
121 auto it = std::find(container.begin(), containe
[all...]
H A Dstringpiece.h133 iterator begin() const { return ptr_; } function in class:art::StringPiece
H A Dtiming_logger.cc120 sorted_histograms(histograms_.begin(), histograms_.end());

Completed in 205 milliseconds

1234567