Home
last modified time | relevance | path

Searched refs:new_store (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/
Dscanner.h236 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); in ExpandBuffer() local
237 memcpy(new_store.start(), backing_store_.start(), position_); in ExpandBuffer()
239 backing_store_ = new_store; in ExpandBuffer()
244 Vector<byte> new_store; in ConvertToUtf16() local
249 new_store = Vector<byte>::New(NewCapacity(new_content_size)); in ConvertToUtf16()
251 new_store = backing_store_; in ConvertToUtf16()
254 uc16* dst = reinterpret_cast<uc16*>(new_store.start()); in ConvertToUtf16()
258 if (new_store.start() != backing_store_.start()) { in ConvertToUtf16()
260 backing_store_ = new_store; in ConvertToUtf16()
Dutils.h607 Vector<T> new_store = Vector<T>::New(size_); in ToVector() local
608 WriteTo(new_store); in ToVector()
609 return new_store; in ToVector()
/external/chromium/chrome/browser/prefs/
Dpref_value_store.cc126 PrefValueStore::PrefStoreType new_store) { in NotifyPrefChanged() argument
127 DCHECK(new_store != INVALID_STORE); in NotifyPrefChanged()
132 if (controller == INVALID_STORE || controller >= new_store) in NotifyPrefChanged()
Dpref_value_store.h207 void NotifyPrefChanged(const char* path, PrefStoreType new_store);