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

  /external/libbrillo/brillo/
key_value_store_unittest.cc 89 KeyValueStore new_store; local
90 ASSERT_TRUE(new_store.LoadFromString(store_.SaveToString()));
93 EXPECT_TRUE(new_store.GetString(it.first, &value)) << "key: " << it.first;
  /external/v8/src/
collector.h 107 Vector<T> new_store = Vector<T>::New(size_); local
108 WriteTo(new_store);
109 return new_store;
deoptimizer.cc 4175 bool new_store = false; local
    [all...]
  /external/v8/src/parsing/
scanner.cc 76 Vector<byte> new_store = Vector<byte>::New(NewCapacity(kInitialCapacity)); local
77 MemCopy(new_store.start(), backing_store_.start(), position_);
79 backing_store_ = new_store;
84 Vector<byte> new_store; local
89 new_store = Vector<byte>::New(NewCapacity(new_content_size));
91 new_store = backing_store_;
94 uint16_t* dst = reinterpret_cast<uint16_t*>(new_store.start());
98 if (new_store.start() != backing_store_.start()) {
100 backing_store_ = new_store;
    [all...]

Completed in 786 milliseconds