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

  /external/v8/src/
scanner.h 236 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); local
237 memcpy(new_store.start(), backing_store_.start(), position_);
239 backing_store_ = new_store;
244 Vector<byte> new_store; local
249 new_store = Vector<byte>::New(NewCapacity(new_content_size));
251 new_store = backing_store_;
254 uc16* dst = reinterpret_cast<uc16*>(new_store.start());
258 if (new_store.start() != backing_store_.start()) {
260 backing_store_ = new_store;
utils.h 607 Vector<T> new_store = Vector<T>::New(size_);
608 WriteTo(new_store);
609 return new_store;
  /external/chromium/chrome/browser/prefs/
pref_value_store.cc 126 PrefValueStore::PrefStoreType new_store) {
127 DCHECK(new_store != INVALID_STORE);
132 if (controller == INVALID_STORE || controller >= new_store)
pref_value_store.h 207 void NotifyPrefChanged(const char* path, PrefStoreType new_store);

Completed in 82 milliseconds