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

  /external/v8/src/
scanner-base.h 214 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); local
215 memcpy(new_store.start(), backing_store_.start(), position_);
217 backing_store_ = new_store;
222 Vector<byte> new_store; local
227 new_store = Vector<byte>::New(NewCapacity(new_content_size));
229 new_store = backing_store_;
232 uc16* dst = reinterpret_cast<uc16*>(new_store.start());
236 if (new_store.start() != backing_store_.start()) {
238 backing_store_ = new_store;
utils.h 573 Vector<T> new_store = Vector<T>::New(size_);
574 WriteTo(new_store);
575 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/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 183 const StoreRef &new_store = local
185 return makeWithStore(new_store);

Completed in 909 milliseconds