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

1 2 3 4

  /external/chromium/chrome/browser/safe_browsing/
prefix_set.cc 47 index_.push_back(std::make_pair(prev_prefix, deltas_.size()));
72 index_.push_back(std::make_pair(sorted_prefixes[i], deltas_.size()));
89 const size_t bits_used = index_.size() * sizeof(index_[0]) * CHAR_BIT +
91 const size_t unique_prefixes = index_.size() + deltas_.size();
102 index_.swap(*index);
109 if (index_.empty())
112 // Find the first position after |prefix| in |index_|.
114 iter = std::upper_bound(index_.begin(), index_.end()
    [all...]
  /external/chromium/chrome/browser/chromeos/
wm_overview_snapshot.h 28 int index() const { return index_; }
49 int index_; member in class:chromeos::WmOverviewSnapshot
wm_overview_snapshot.cc 28 index_(-1),
54 index_ = index;
  /external/bluetooth/glib/glib/
garray.c 167 guint index_,
175 g_memmove (g_array_elt_pos (array, len + index_),
176 g_array_elt_pos (array, index_),
177 g_array_elt_len (array, array->len - index_));
179 memcpy (g_array_elt_pos (array, index_), data, g_array_elt_len (array, len));
212 guint index_)
218 g_return_val_if_fail (index_ < array->len, NULL);
220 if (index_ != array->len - 1)
221 g_memmove (g_array_elt_pos (array, index_),
222 g_array_elt_pos (array, index_ + 1)
    [all...]
garray.h 86 guint index_,
92 guint index_);
94 guint index_);
96 guint index_,
108 #define g_ptr_array_index(array,index_) ((array)->pdata)[index_]
116 guint index_);
118 guint index_);
124 guint index_,
155 guint index_);
    [all...]
gbsearcharray.h 74 guint index_);
200 guint index_)
206 g_return_val_if_fail (index_ <= barray->n_nodes, NULL);
217 node = G_BSEARCH_ARRAY_NODES (barray) + index_ * bconfig->sizeof_node;
218 g_memmove (node + bconfig->sizeof_node, node, (barray->n_nodes - index_) * bconfig->sizeof_node);
239 guint index_ = g_bsearch_array_get_index (barray, bconfig, node); local
242 barray = g_bsearch_array_grow (barray, bconfig, index_);
243 node = G_BSEARCH_ARRAY_NODES (barray) + index_ * bconfig->sizeof_node;
266 guint index_)
270 g_return_val_if_fail (index_ < barray->n_nodes, NULL)
    [all...]
  /external/v8/src/
dateparser.h 71 : index_(0),
79 void Next() { ch_ = (index_ < buffer_.length()) ? buffer_[index_++] : 0; }
157 int index_; member in class:v8::internal::DateParser::BASE_EMBEDDED
211 TimeComposer() : index_(0), hour_offset_(kNone) {}
212 bool IsEmpty() const { return index_ == 0; }
214 return (index_ == 1 && IsMinute(n)) ||
215 (index_ == 2 && IsSecond(n)) ||
216 (index_ == 3 && IsMillisecond(n));
219 return index_ < kSize ? (comp_[index_++] = n, true) : false
    [all...]
dateparser.cc 36 if (index_ < 1) return false;
38 while (index_ < kSize) {
39 comp_[index_++] = 1;
47 if (index_ == 3 && !IsDay(comp_[0])) {
56 if (index_ == 3) year = comp_[2];
60 if (index_ == 1) {
88 while (index_ < kSize) {
89 comp_[index_++] = 0;
utils.h 489 : index_(0), size_(0) {
506 if (index_ >= current_chunk_.length()) {
509 current_chunk_[index_] = value;
510 index_++;
520 if (size > current_chunk_.length() - index_) {
523 T* position = current_chunk_.start() + index_;
524 index_ += size;
538 if (source.length() > current_chunk_.length() - index_) {
541 T* position = current_chunk_.start() + index_;
542 index_ += source.length()
    [all...]
  /external/bluetooth/glib/gobject/
gvaluearray.h 55 guint index_);
64 guint index_,
67 guint index_);
  /external/chromium/chrome/browser/sessions/
session_types.cc 17 index_(-1) {
32 index_(index) {
42 index_(tab.index_) {
55 index_ = tab.index_;
session_types.h 82 void set_index(int index) { index_ = index; }
83 int index() const { return index_; }
95 int index_; member in class:TabNavigation
  /external/chromium/chrome/browser/ui/views/extensions/
browser_action_drag_data.cc 16 : profile_id_(0), index_(-1) {
21 : profile_id_(0), id_(id), index_(index) {
71 pickle->WriteSize(index_);
85 if (!pickle->ReadSize(&data_iterator, &index_))
browser_action_drag_data.h 29 size_t index() const { return index_; }
55 size_t index_; member in class:BrowserActionDragData
  /external/chromium/base/
observer_list.h 83 index_(0),
99 while (index_ < max_index && !observers[index_])
100 ++index_;
101 return index_ < max_index ? observers[index_++] : NULL;
106 size_t index_; member in class:ObserverListBase::Iterator
  /external/chromium/chrome/browser/history/
in_memory_history_backend.cc 34 if (index_.get())
35 index_->ShutDown();
48 index_.reset(new InMemoryURLIndex(history_dir));
50 index_->Init(db, languages);
136 if (index_.get())
137 index_->UpdateURL(id, *i);
150 if (index_.get())
151 index_->ReloadFromHistory(db_.get(), true);
163 if (index_.get())
164 index_->DeleteURL(id)
    [all...]
in_memory_history_backend.h 74 history::InMemoryURLIndex* InMemoryIndex() const { return index_.get(); }
100 scoped_ptr<history::InMemoryURLIndex> index_; member in class:history::InMemoryHistoryBackend
  /external/chromium/chrome/browser/
jumplist_win.h 43 ShellLinkItem() : index_(0), favicon_(false) {
49 int index() const { return index_; }
62 index_ = index;
79 int index_; member in class:ShellLinkItem
  /external/chromium/chrome/browser/bookmarks/
bookmark_storage.h 43 BookmarkIndex* index() { return index_.get(); }
44 BookmarkIndex* release_index() { return index_.release(); }
69 scoped_ptr<BookmarkIndex> index_; member in class:BookmarkLoadDetails
bookmark_index.cc 161 Index::const_iterator i = index_.lower_bound(term);
162 if (i == index_.end())
180 while (i != index_.end() &&
192 while (i != index_.end() &&
252 if (std::find(index_[term].begin(), index_[term].end(), node) !=
253 index_[term].end()) {
257 index_[term].insert(node);
262 Index::iterator i = index_.find(term);
263 if (i == index_.end())
    [all...]
bookmark_folder_editor_controller.cc 38 index_(index),
67 model_->AddFolder(node_, index_, WideToUTF16Hack(text));
  /external/chromium/base/win/
registry.h 121 int Index() const { return index_; }
131 int index_; member in class:base::win::RegistryValueIterator
158 int Index() const { return index_; }
168 int index_; member in class:base::win::RegistryKeyIterator
  /external/chromium/webkit/glue/
webmenurunner_mac.h 32 int index_; variable
  /dalvik/vm/alloc/
HeapBitmap.h 31 #define HB_INDEX_TO_OFFSET(index_) \
32 ((uintptr_t)(index_) * HB_OBJECT_ALIGNMENT * HB_BITS_PER_WORD)
  /external/chromium/chrome/browser/instant/
instant_unload_handler.cc 24 index_(index) {
39 int index() const { return index_; }
79 const int index_; member in class:InstantUnloadHandler::TabContentsDelegateImpl

Completed in 421 milliseconds

1 2 3 4