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

  /external/chromium_org/v8/src/
scanner.h 222 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); local
223 OS::MemCopy(new_store.start(), backing_store_.start(), position_);
225 backing_store_ = new_store;
230 Vector<byte> new_store; local
235 new_store = Vector<byte>::New(NewCapacity(new_content_size));
237 new_store = backing_store_;
240 uc16* dst = reinterpret_cast<uc16*>(new_store.start());
244 if (new_store.start() != backing_store_.start()) {
246 backing_store_ = new_store;
utils.h 699 Vector<T> new_store = Vector<T>::New(size_);
700 WriteTo(new_store);
701 return new_store;
    [all...]
  /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);
  /external/chromium_org/base/prefs/
pref_value_store.cc 123 PrefValueStore::PrefStoreType new_store) {
124 DCHECK(new_store != INVALID_STORE);
pref_value_store.h 216 void NotifyPrefChanged(const char* path, PrefStoreType new_store);

Completed in 133 milliseconds