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

1 2 3

  /external/compiler-rt/lib/tsan/rtl/
tsan_vector.h 29 , begin_()
35 if (begin_)
36 internal_free(begin_);
40 if (begin_)
41 internal_free(begin_);
42 begin_ = 0;
48 return end_ - begin_;
52 DCHECK_LT(i, end_ - begin_);
53 return begin_[i];
57 DCHECK_LT(i, end_ - begin_);
95 T *begin_; member in class:__tsan::Vector
    [all...]
  /external/chromium_org/base/timer/
elapsed_timer.cc 10 begin_ = TimeTicks::Now();
14 return TimeTicks::Now() - begin_;
elapsed_timer.h 24 TimeTicks begin_; member in class:base::ElapsedTimer
  /external/chromium_org/ui/events/
event_target_iterator.h 28 : begin_(children.rbegin()),
34 if (begin_ == end_)
36 EventTarget* target = *(begin_);
37 ++begin_;
42 typename std::vector<T*>::const_reverse_iterator begin_; member in class:ui::EventTargetIteratorImpl
  /external/chromium_org/tools/gn/
location.cc 67 : begin_(begin),
69 DCHECK(begin_.file() == end_.file());
73 DCHECK(begin_.file() == other.begin_.file());
75 begin_ < other.begin_ ? begin_ : other.begin_,
location.h 46 const Location& begin() const { return begin_; }
52 Location begin_; member in class:LocationRange
trace.h 42 base::TimeTicks begin() const { return begin_; }
43 void set_begin(base::TimeTicks b) { begin_ = b; }
47 base::TimeDelta delta() const { return end_ - begin_; }
62 base::TimeTicks begin_; member in class:TraceItem
  /art/runtime/gc/collector/
immune_region.h 49 return reinterpret_cast<uintptr_t>(obj) - reinterpret_cast<uintptr_t>(begin_) < size_;
52 begin_ = begin;
65 size_ = reinterpret_cast<uintptr_t>(end_) - reinterpret_cast<uintptr_t>(begin_);
68 mirror::Object* begin_; member in class:art::gc::collector::ImmuneRegion
immune_region.cc 47 if (space_limit <= begin_) { // Space is before the immune region.
60 begin_ <= reinterpret_cast<mirror::Object*>(space->Begin()) &&
  /external/chromium_org/components/autofill/core/browser/
autofill_scanner.cc 15 begin_(fields.begin()),
47 DCHECK(index < static_cast<size_t>(end_ - begin_));
48 cursor_ = begin_ + index;
54 return static_cast<size_t>(cursor_ - begin_);
autofill_scanner.h 51 const std::vector<AutofillField*>::iterator begin_; member in class:autofill::AutofillScanner
  /art/runtime/gc/accounting/
atomic_stack.h 48 DCHECK(begin_ != NULL);
83 *start_address = &begin_[index];
84 *end_address = &begin_[new_index];
88 DCHECK_EQ(begin_[i], static_cast<T>(0))
98 DCHECK_EQ(begin_[i], static_cast<T>(0)) << "i=" << i;
110 begin_[index] = value;
117 return begin_[back_index_.LoadRelaxed()];
125 return begin_[index];
144 return const_cast<T*>(begin_ + front_index_.LoadRelaxed());
148 return const_cast<T*>(begin_ + back_index_.LoadRelaxed())
232 T* begin_; member in class:art::gc::accounting::AtomicStack
    [all...]
space_bitmap_test.cc 45 begin_(begin),
49 EXPECT_TRUE(obj >= begin_);
55 const mirror::Object* begin_; member in class:art::gc::accounting::BitmapVerify
  /art/runtime/
oat_file-inl.h 38 return reinterpret_cast<const byte*>(method_header) - begin_;
54 return reinterpret_cast<const byte*>(&method_header->code_size_) - begin_;
95 return static_cast<uint32_t>(gc_map != nullptr ? gc_map - begin_ : 0u);
103 return reinterpret_cast<const byte*>(&method_header->gc_map_offset_) - begin_;
108 return static_cast<uint32_t>(mapping_table != nullptr ? mapping_table - begin_ : 0u);
116 return reinterpret_cast<const byte*>(&method_header->mapping_table_offset_) - begin_;
121 return static_cast<uint32_t>(vmap_table != nullptr ? vmap_table - begin_ : 0u);
129 return reinterpret_cast<const byte*>(&method_header->vmap_table_offset_) - begin_;
oat_file.cc 51 oat_file->begin_ = elf_file->Begin() + hdr->sh_offset;
62 oat_file->begin_ = &oat_contents[0];
145 : location_(location), begin_(NULL), end_(NULL), is_executable_(is_executable),
171 begin_ = reinterpret_cast<byte*>(dlsym(dlopen_handle_, "oatdata"));
172 if (begin_ == NULL) {
177 if (requested_base != NULL && begin_ != requested_base) {
180 begin_, requested_base);
210 begin_ = elf_file_->FindDynamicSymbolAddress("oatdata");
211 if (begin_ == NULL) {
215 if (requested_base != NULL && begin_ != requested_base)
    [all...]
dex_file_verifier.h 38 : dex_file_(dex_file), begin_(begin), size_(size), location_(location),
115 const byte* const begin_; member in class:art::DexFileVerifier
mem_map.h 103 return begin_;
156 byte* const begin_; // Start of data. member in class:art::MemMap
dex_file-inl.h 29 const byte* ptr = begin_ + string_id.string_data_off_;
36 const byte* ptr = begin_ + string_id.string_data_off_;
  /external/chromium_org/v8/src/heap/
gc-tracer.h 54 RingBuffer() : begin_(0), end_(0) {}
56 bool empty() const { return begin_ == end_; }
58 return (end_ - begin_ + MAX_SIZE + 1) % (MAX_SIZE + 1);
60 const_iterator begin() const { return const_iterator(begin_, elements_); }
66 if (end_ == begin_) begin_ = (begin_ + 1) % (MAX_SIZE + 1);
69 begin_ = (begin_ + MAX_SIZE) % (MAX_SIZE + 1);
70 if (begin_ == end_) end_ = (end_ + MAX_SIZE) % (MAX_SIZE + 1)
76 size_t begin_; member in class:v8::internal::RingBuffer
    [all...]
  /external/chromium_org/net/http/
http_auth_challenge_tokenizer.h 30 return std::string(begin_, end_);
49 std::string::const_iterator begin_; member in class:net::HttpAuthChallengeTokenizer
http_auth_challenge_tokenizer.cc 14 : begin_(begin),
  /external/clang/test/SemaCXX/
for-range-examples.cpp 16 value_range(const T &a, const T &b) : begin_(a), end_(b) {}
17 value_range_iter<T> begin_, end_; member in struct:value_range_detail::value_range
21 value_range_iter<T> begin(const value_range<T> &r) { return r.begin_; }
94 T begin_, end_; member in struct:map_range::iter_pair
95 iter_pair(T begin, T end) : begin_(begin), end_(end) {}
97 template<typename T> T begin(iter_pair<T> p) { return p.begin_; }
  /external/chromium_org/content/common/android/
address_parser_internal.h 51 base::string16::const_iterator begin_; member in class:content::address_parser::internal::HouseNumberParser
address_parser_internal.cc 107 if (result_chars_ == 0 || SafePreviousChar(it_, begin_) == '-')
120 it_ = begin_ = begin;
163 DCHECK(it_ != begin_);
164 base::char16 previous = SafePreviousChar(it_, begin_);
178 bool is_teen = SafePreviousChar(it_ - 1, begin_) == '1' &&
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
table_shifter.js 30 this.begin_ = true;
84 if (this.begin_) {
101 this.begin_ = false;

Completed in 811 milliseconds

1 2 3