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

  /external/chromium_org/v8/include/
v8-util.h 15 * C++11 embedders can use STL containers with UniquePersistent values,
104 static void Dispose(Isolate* isolate, UniquePersistent<V> value, K key) { }
109 * A map wrapper that allows using UniquePersistent as a mapped value.
110 * C++11 embedders don't need this class, as they can use UniquePersistent
173 * Returns old value as UniquePersistent.
175 UniquePersistent<V> Set(const K& key, Local<V> value) {
176 UniquePersistent<V> persistent(isolate_, value);
183 UniquePersistent<V> Set(const K& key, UniquePersistent<V> value) {
190 UniquePersistent<V> Remove(const K& key)
    [all...]
v8.h 108 template<class T> class UniquePersistent;
564 template<class F> friend class UniquePersistent;
723 class UniquePersistent : public PersistentBase<T> {
725 V8_INLINE explicit RValue(UniquePersistent* obj) : object(obj) {}
726 UniquePersistent* object;
731 * A UniquePersistent with no storage cell.
733 V8_INLINE UniquePersistent() : PersistentBase<T>(0) { }
735 * Construct a UniquePersistent from a Handle.
740 V8_INLINE UniquePersistent(Isolate* isolate, Handle<S> that)
745 * Construct a UniquePersistent from a PersistentBase
    [all...]
  /external/chromium_org/gin/public/
context_holder.h 44 v8::UniquePersistent<v8::Context> context_;
  /external/chromium_org/mojo/bindings/js/
drain_data.h 57 v8::UniquePersistent<v8::Promise::Resolver> resolver_;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8ValueCache.cpp 42 v8::Isolate* isolate, v8::UniquePersistent<v8::String> value, StringImpl* key)
116 v8::UniquePersistent<v8::String> wrapper(isolate, newString);
DOMWrapperMap.h 75 v8::UniquePersistent<v8::Object> unique(m_isolate, wrapper);
148 static void Dispose(v8::Isolate* isolate, v8::UniquePersistent<v8::Object> value, KeyType* key) { }
V8ValueCache.h 57 static void Dispose(v8::Isolate*, v8::UniquePersistent<v8::String> value, StringImpl* key);
V8PersistentValueMap.h 109 static void Dispose(v8::Isolate* isolate, v8::UniquePersistent<ValueType> value, KeyType key) { }
V8NPObject.cpp 192 static void Dispose(v8::Isolate* isolate, v8::UniquePersistent<v8::FunctionTemplate> value, PrivateIdentifier* key) { }
428 v8::UniquePersistent<v8::Object> value,
DOMDataStore.h 312 v8::UniquePersistent<v8::Object> value,
  /external/chromium_org/extensions/renderer/
module_system.h 201 scoped_ptr<v8::UniquePersistent<v8::Promise::Resolver> > resolver,
module_system.cc 528 scoped_ptr<v8::UniquePersistent<v8::Promise::Resolver> > persistent_resolver(
529 new v8::UniquePersistent<v8::Promise::Resolver>(GetIsolate(), resolver));
660 scoped_ptr<v8::UniquePersistent<v8::Promise::Resolver> > resolver,
  /external/chromium_org/content/shell/renderer/test_runner/
test_runner.cc 120 argv_.reset(new v8::UniquePersistent<v8::Value>[argc]);
122 argv_[i] = v8::UniquePersistent<v8::Value>(isolate, argv[i]);
126 v8::UniquePersistent<v8::Function> callback_;
128 scoped_ptr<v8::UniquePersistent<v8::Value>[]> argv_;
    [all...]
  /external/chromium_org/v8/test/cctest/
test-api.cc     [all...]

Completed in 275 milliseconds