Searched refs:index_ (Results 76 - 100 of 204) sorted by relevance

123456789

/external/jsoncpp/src/lib_json/
H A Djson_value.cpp173 // Notes: index_ indicates if the string was allocated when
178 , index_( index )
185 , index_( allocate )
190 : cstr_( other.index_ != noDuplication && other.cstr_ != 0
193 , index_( other.cstr_ ? (other.index_ == noDuplication ? noDuplication : duplicate)
194 : other.index_ )
200 if ( cstr_ && index_ == duplicate )
208 std::swap( index_, other.index_ );
[all...]
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_index.cc252 Index::const_iterator i = index_.lower_bound(term);
253 if (i == index_.end())
271 while (i != index_.end() &&
283 while (i != index_.end() &&
343 index_[term].insert(node);
348 Index::iterator i = index_.find(term);
349 if (i == index_.end()) {
356 index_.erase(i);
H A Dbookmark_index.h28 // BookmarkIndex maintains the index (index_) as a map of sets. The map (type
101 // Adds |node| to |index_|.
104 // Removes |node| from |index_|.
107 Index index_; member in class:bookmarks::BookmarkIndex
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_entry_operation.h102 int index() const { return index_; }
148 const unsigned int index_; member in class:disk_cache::SimpleEntryOperation
H A Dsimple_backend_impl.cc244 index_->WriteToDisk();
253 index_.reset(new SimpleIndex(
259 index_->ExecuteWhenReady(
275 return index_->SetMaxSize(max_bytes);
279 return index_->max_size() / kMaxFileRatio;
336 index_->Remove(*it);
342 index_->Remove(*it);
367 return index_->GetEntryCount();
451 index_->GetEntriesBetween(initial_time, end_time).release());
459 return index_
[all...]
H A Dsimple_backend_impl.h62 SimpleIndex* index() { return index_.get(); }
190 scoped_ptr<SimpleIndex> index_; member in class:disk_cache::SimpleBackendImpl
/external/chromium_org/net/tools/dump_cache/
H A Ddump_files.cc157 index_(NULL),
177 disk_cache::Index* index_; member in class:__anon9752::CacheDumper
192 index_ = reinterpret_cast<disk_cache::Index*>(
194 if (!index_) {
218 for (int i = current_hash_; i < index_->header.table_len; i++) {
221 if (index_->table[i]) {
223 if (LoadEntry(index_->table[i], entry))
226 printf("Unable to load entry at address 0x%x\n", index_->table[i]);
/external/chromium_org/pdf/pdfium/
H A Dpdfium_page.h84 int index() const { return index_; }
127 int index_; member in class:chrome_pdf::PDFiumPage
/external/chromium_org/v8/src/
H A Dutils.h471 : index_(0), size_(0) {
485 if (index_ >= current_chunk_.length()) {
488 current_chunk_[index_] = value;
489 index_++;
499 if (size > current_chunk_.length() - index_) {
502 T* position = current_chunk_.start() + index_;
503 index_ += size;
517 if (source.length() > current_chunk_.length() - index_) {
520 T* position = current_chunk_.start() + index_;
521 index_
567 int index_; // Current index in current chunk. member in class:v8::internal::Collector
[all...]
H A Dvariables.cc44 index_(-1),
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h202 : base_(base), value_(value), index_(index), step_(step) {}
210 index_++;
223 CheckedDowncastToActualType<const Iterator>(&other)->index_;
224 return index_ == other_index;
230 base_(other.base_), value_(other.value_), index_(other.index_),
238 int index_; member in class:testing::internal::RangeGenerator::Iterator
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h202 : base_(base), value_(value), index_(index), step_(step) {}
210 index_++;
223 CheckedDowncastToActualType<const Iterator>(&other)->index_;
224 return index_ == other_index;
230 base_(other.base_), value_(other.value_), index_(other.index_),
238 int index_; member in class:testing::internal::RangeGenerator::Iterator
/external/gtest/include/gtest/internal/
H A Dgtest-param-util.h202 : base_(base), value_(value), index_(index), step_(step) {}
210 index_++;
223 CheckedDowncastToActualType<const Iterator>(&other)->index_;
224 return index_ == other_index;
230 base_(other.base_), value_(other.value_), index_(other.index_),
238 int index_; member in class:testing::internal::RangeGenerator::Iterator
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h202 : base_(base), value_(value), index_(index), step_(step) {}
210 index_++;
223 CheckedDowncastToActualType<const Iterator>(&other)->index_;
224 return index_ == other_index;
230 base_(other.base_), value_(other.value_), index_(other.index_),
238 int index_; member in class:testing::internal::RangeGenerator::Iterator
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h202 : base_(base), value_(value), index_(index), step_(step) {}
210 index_++;
223 CheckedDowncastToActualType<const Iterator>(&other)->index_;
224 return index_ == other_index;
230 base_(other.base_), value_(other.value_), index_(other.index_),
238 int index_; member in class:testing::internal::RangeGenerator::Iterator
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-param-util.h221 : base_(base), value_(value), index_(index), step_(step) {}
229 index_++;
242 CheckedDowncastToActualType<const Iterator>(&other)->index_;
243 return index_ == other_index;
248 : base_(other.base_), value_(other.value_), index_(other.index_),
256 int index_; member in class:testing::internal::RangeGenerator::Iterator
/external/chromium_org/base/win/
H A Dregistry.cc505 index_ = count - 1;
528 return key_ != NULL && index_ >= 0;
532 --index_;
543 key_, index_, WriteInto(&name_, name_size), &name_size, NULL, &type_,
559 key_, index_, WriteInto(&name_, name_size), &name_size, NULL, &type_,
592 index_ = count - 1;
615 return key_ != NULL && index_ >= 0;
619 --index_;
627 LONG r = ::RegEnumKeyEx(key_, index_, name_, &ncount, NULL, NULL,
/external/chromium_org/courgette/
H A Dadjustment_method.cc83 if (info->label_->index_ != Label::kNoIndex)
84 base::StringAppendF(&s, " (%d)", info->label_->index_);
313 int m_index = p_label_info->label_->index_;
334 p_info->label_->index_ = m_info->label_->index_;
438 if (p_info->label_->index_ != m_info->label_->index_)
474 if (p_info->label_->index_ != m_info->label_->index_)
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dsort.cc66 ptr_sort_key[i].index_ = i; \
77 uint32_t index_; member in struct:webrtc::SortKey
83 uint32_t index_;
217 ptr_sort_key[i].index_ = i;
237 ptr_sort_key[i].index_ * size_of_element, size_of_element);
441 ptr_sort_key[i].index_ * size_of_element, size_of_element);
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_database.h251 DescriptorIndex<const FileDescriptorProto*> index_; member in class:google::protobuf::SimpleDescriptorDatabase
300 SimpleDescriptorDatabase::DescriptorIndex<pair<const void*, int> > index_; member in class:google::protobuf::EncodedDescriptorDatabase
/external/chromium_org/tools/gn/
H A Dparse_tree.cc92 if (index_)
101 if (index_)
102 return LocationRange(base_.location(), index_->GetRange().end());
118 if (index_)
119 index_->Print(out, indent + 1);
125 Value index_value = index_->Execute(scope, err);
141 *err = Err(index_->GetRange(), "Negative array subscript.",
147 *err = Err(index_->GetRange(), "Array subscript out of range.",
/external/protobuf/src/google/protobuf/
H A Ddescriptor_database.h250 DescriptorIndex<const FileDescriptorProto*> index_; member in class:google::protobuf::SimpleDescriptorDatabase
299 SimpleDescriptorDatabase::DescriptorIndex<pair<const void*, int> > index_; member in class:google::protobuf::EncodedDescriptorDatabase
/external/chromium_org/base/metrics/
H A Dsample_vector.h79 size_t index_; member in class:base::SampleVectorIterator
/external/chromium_org/components/sessions/
H A Dserialized_navigation_entry_test_helper.cc37 navigation.index_ = 0;
/external/chromium_org/net/url_request/
H A Dview_cache_helper.h104 int index_; member in class:net::ViewCacheHelper

Completed in 718 milliseconds

123456789