HomeSort by relevance Sort by last modified time
    Searched refs:it_ (Results 1 - 20 of 20) sorted by null

  /external/libcxx/test/std/strings/basic.string/
input_iterator.h 18 It it_; member in class:input_iterator
26 input_iterator() : it_() {}
27 explicit input_iterator(It it) : it_(it) {}
29 reference operator*() const {return *it_;}
30 pointer operator->() const {return it_;}
32 input_iterator& operator++() {++it_; return *this;}
36 {return x.it_ == y.it_;}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/
input_iterator.h 18 It it_; member in class:input_iterator
26 input_iterator() : it_() {}
27 explicit input_iterator(It it) : it_(it) {}
29 reference operator*() const {return *it_;}
30 pointer operator->() const {return it_;}
32 input_iterator& operator++() {++it_; return *this;}
36 {return x.it_ == y.it_;}
  /external/libcxx/test/support/
test_iterators.h 25 It it_; member in class:output_iterator
35 It base() const {return it_;}
38 explicit output_iterator(It it) : it_(it) {}
40 output_iterator(const output_iterator<U>& u) :it_(u.it_) {}
42 reference operator*() const {return *it_;}
44 output_iterator& operator++() {++it_; return *this;}
55 It it_; member in class:input_iterator
65 It base() const {return it_;}
67 input_iterator() : it_() {}
107 It it_; member in class:forward_iterator
159 It it_; member in class:bidirectional_iterator
210 It it_; member in class:random_access_iterator
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
test_iterators.h 18 It it_; member in class:output_iterator
28 It base() const {return it_;}
31 explicit output_iterator(It it) : it_(it) {}
33 output_iterator(const output_iterator<U>& u) :it_(u.it_) {}
35 reference operator*() const {return *it_;}
37 output_iterator& operator++() {++it_; return *this;}
45 It it_; member in class:input_iterator
55 It base() const {return it_;}
57 input_iterator() : it_() {}
94 It it_; member in class:forward_iterator
143 It it_; member in class:bidirectional_iterator
191 It it_; member in class:random_access_iterator
    [all...]
  /system/connectivity/shill/
property_iterator.h 36 bool AtEnd() const { return it_ == collection_.end(); }
41 ++it_;
46 const std::string& Key() const { return it_->first; }
58 it_(collection_.begin()),
69 value_ = it_->second->Get(&error);
74 typename std::map<std::string, VAccessorPtr>::const_iterator it_; member in class:shill::ReadablePropertyConstIterator
  /art/runtime/
dex_method_iterator.h 67 if (it_.get() == nullptr) {
68 it_.reset(new ClassDataItemIterator(GetDexFileInternal(), class_data_));
91 it_.reset(nullptr);
100 if (it_.get() != nullptr) {
124 CHECK(it_.get() != nullptr);
125 return *it_.get();
143 std::unique_ptr<ClassDataItemIterator> it_; member in class:art::DexMethodIterator
  /external/protobuf/src/google/protobuf/
repeated_field.h 1339 void* const* it_; member in class:google::protobuf::internal::RepeatedPtrIterator
1423 VoidPtr* it_; member in class:google::protobuf::internal::RepeatedPtrOverPtrsIterator
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
repeated_field.h 1258 void* const* it_; member in class:google::protobuf::internal::RepeatedPtrIterator
1338 VoidPtr* it_; member in class:google::protobuf::internal::RepeatedPtrOverPtrsIterator
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
repeated_field.h 1258 void* const* it_; member in class:google::protobuf::internal::RepeatedPtrIterator
1338 VoidPtr* it_; member in class:google::protobuf::internal::RepeatedPtrOverPtrsIterator
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
repeated_field.h 1258 void* const* it_; member in class:google::protobuf::internal::RepeatedPtrIterator
1338 VoidPtr* it_; member in class:google::protobuf::internal::RepeatedPtrOverPtrsIterator
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
repeated_field.h 1258 void* const* it_; member in class:google::protobuf::internal::RepeatedPtrIterator
1338 VoidPtr* it_; member in class:google::protobuf::internal::RepeatedPtrOverPtrsIterator
    [all...]
  /external/v8/src/heap/
mark-compact-inl.h 146 while (!it_.Done()) {
162 DCHECK(!it_.Done());
163 it_.Advance();
164 cell_base_ = it_.CurrentCellBase();
165 current_cell_ = *it_.CurrentCell();
181 if (!it_.Done()) {
182 it_.Advance();
183 cell_base_ = it_.CurrentCellBase();
184 current_cell_ = *it_.CurrentCell();
mark-compact.h 872 it_(chunk_),
873 cell_base_(it_.CurrentCellBase()),
874 current_cell_(*it_.CurrentCell()) {}
880 MarkBitCellIterator it_; member in class:v8::internal::BASE_EMBEDDED
  /external/v8/src/
bit-vector.h 198 : it_(target->bits_ == NULL ? new (zone) BitVector(1, zone)
200 bool Done() const { return it_.Done(); }
201 void Advance() { it_.Advance(); }
202 int Current() const { return it_.Current(); }
205 BitVector::Iterator it_; member in class:v8::internal::BASE_EMBEDDED::BASE_EMBEDDED
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
repeated_field.h 2152 void* const* it_; member in class:google::protobuf::internal::RepeatedPtrIterator
2236 VoidPtr* it_; member in class:google::protobuf::internal::RepeatedPtrOverPtrsIterator
    [all...]
map.h 1423 InnerIt it_; member in class:google::protobuf::Map::const_iterator
1474 InnerIt it_; member in class:google::protobuf::Map::iterator
    [all...]
  /external/libchrome/base/
values.h 365 bool IsAtEnd() const { return it_ == target_.dictionary_.end(); }
366 void Advance() { ++it_; }
368 const std::string& key() const { return it_->first; }
369 const Value& value() const { return *it_->second; }
373 ValueMap::const_iterator it_; member in class:base::DictionaryValue::Iterator
values.cc 838 it_(target.dictionary_.begin()) {}
    [all...]
  /external/libweave/third_party/chromium/base/
values.h 353 bool IsAtEnd() const { return it_ == target_.dictionary_.end(); }
354 void Advance() { ++it_; }
356 const std::string& key() const { return it_->first; }
357 const Value& value() const { return *it_->second; }
361 ValueMap::const_iterator it_; member in class:base::DictionaryValue::Iterator
values.cc 795 it_(target.dictionary_.begin()) {}

Completed in 810 milliseconds