Searched refs:Persistent (Results 1 - 25 of 131) sorted by relevance

123456

/external/chromium_org/third_party/skia/experimental/SkV8Example/
H A DJsContext.h53 Persistent<Function> fOnDraw;
57 static Persistent<ObjectTemplate> gContextTemplate;
H A DGlobal.h24 typedef Persistent<Function, CopyablePersistentTraits<Function> > CopyablePersistentFn;
73 Persistent<Context> fContext;
/external/skia/experimental/SkV8Example/
H A DJsContext.h53 Persistent<Function> fOnDraw;
57 static Persistent<ObjectTemplate> gContextTemplate;
H A DGlobal.h24 typedef Persistent<Function, CopyablePersistentTraits<Function> > CopyablePersistentFn;
73 Persistent<Context> fContext;
/external/chromium_org/tools/clang/blink_gc_plugin/tests/
H A Dpersistent_field_in_gc_managed_class.h17 Persistent<HeapObject> m_obj;
H A Dcycle_sub.h31 Persistent<A> m_a;
H A Dcycle_super.h36 Persistent<C> m_c;
H A Dcycle_super_neg.h32 Persistent<B> m_b;
H A Dmember_in_offheap_class.h19 Persistent<HeapVector<Member<HeapObject> > > m_objs; // OK
H A Dcycle_ptrs.h49 Persistent<A> m_a;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DDataEquivalency.h30 bool dataEquivalent(const Persistent<T>& a, const Persistent<T>& b)
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocationInspectorAgent.h67 Persistent<GeolocationPosition> m_geolocationPosition;
68 Persistent<GeolocationPosition> m_platformGeolocationPosition;
/external/chromium_org/gin/test/
H A Dv8_test.h30 v8::Persistent<v8::Context> context_;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScriptWrappable.h50 * ScriptWrappable acts much like a v8::Persistent<> in that it keeps a
58 * - if odd: a pointer to v8::Persistent<v8::Object> + 1.
72 * - setWrapper: install a v8::Persistent (or empty)
74 * remove v8::Persistent and install a TypeInfo of the previous value.
99 v8::Persistent<v8::Object> persistent(isolate, wrapper);
108 v8::Persistent<v8::Object> persistent;
119 v8::Persistent<v8::Object> persistent;
135 v8::Persistent<v8::Object> persistent;
156 v8::Persistent<v8::Object> persistent;
168 v8::Persistent<v
[all...]
H A DScopedPersistent.h95 ALWAYS_INLINE v8::Persistent<T>& getUnsafe()
100 v8::Persistent<T> m_handle;
H A DNPV8Object.h55 v8::Persistent<v8::Object> v8Object;
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DWebIDBDatabaseCallbacksImpl.h53 Persistent<IDBDatabaseCallbacks> m_callbacks;
H A DIDBTransactionTest.cpp99 Persistent<IDBDatabase> db = IDBDatabase::create(executionContext(), backend.release(), FakeIDBDatabaseCallbacks::create());
103 Persistent<IDBTransaction> transaction = IDBTransaction::create(executionContext(), transactionId, transactionScope, blink::WebIDBTransactionModeReadOnly, db.get());
110 Persistent<IDBRequest> request = IDBRequest::create(scriptState(), IDBAny::createUndefined(), transaction.get());
129 Persistent<IDBDatabase> db = IDBDatabase::create(executionContext(), backend.release(), FakeIDBDatabaseCallbacks::create());
133 Persistent<IDBTransaction> transaction = IDBTransaction::create(executionContext(), transactionId, transactionScope, blink::WebIDBTransactionModeReadOnly, db.get());
/external/chromium_org/third_party/WebKit/Source/modules/quota/
H A DDeprecatedStorageQuota.h49 Persistent, enumerator in enum:WebCore::DeprecatedStorageQuota::Type
H A DWorkerNavigatorStorageQuota.cpp77 m_persistentStorage = DeprecatedStorageQuota::create(DeprecatedStorageQuota::Persistent);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDirectoryReaderSync.cpp62 Persistent<DirectoryReaderSync> m_reader;
78 Persistent<DirectoryReaderSync> m_reader;
H A DDirectoryReader.cpp54 // FIXME: This Persistent keeps the reader alive until all of the readDirectory results are received. crbug.com/350285
55 Persistent<DirectoryReader> m_reader;
71 Persistent<DirectoryReader> m_reader;
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHandle.h142 // RootsAccessor for Persistent that provides access to thread-local list
160 // RootsAccessor for Persistent that provides synchronized access to global
229 // A dummy Persistent handle that ensures the list of persistents is never null.
271 // Persistent handles are used to store pointers into the
272 // managed heap. As long as the Persistent handle is alive
273 // the GC will keep the object pointed to alive. Persistent
275 // Persistent handles must not be used to contain pointers
280 // A Persistent is always a GC root from the point of view of
283 // We have to construct and destruct Persistent with default RootsAccessor in
286 class Persistent class in namespace:WebCore
290 Persistent() : m_raw(0) { } function in class:WebCore::Persistent
292 Persistent(std::nullptr_t) : m_raw(0) { } function in class:WebCore::Persistent
294 Persistent(T* raw) : m_raw(raw) function in class:WebCore::Persistent
300 explicit Persistent(T& raw) : m_raw(&raw) function in class:WebCore::Persistent
306 Persistent(const Persistent& other) : m_raw(other) { recordBacktrace(); } function in class:WebCore::Persistent
309 Persistent(const Persistent<U, RootsAccessor>& other) argument
312 Persistent(const Member<U>& other) : m_raw(other) { recordBacktrace(); } function in class:WebCore::Persistent
315 Persistent(const RawPtr<U>& other) : m_raw(other.get()) { recordBacktrace(); } function in class:WebCore::Persistent
377 operator =(const Persistent<U, RootsAccessor>& other) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DGeolocationClientProxy.h56 WebCore::Persistent<WebCore::GeolocationPosition> m_lastPosition;
/external/chromium_org/tools/clang/blink_gc_plugin/
H A DEdge.cpp22 void RecursiveEdgeVisitor::AtPersistent(Persistent*) {}
63 void RecursiveEdgeVisitor::VisitPersistent(Persistent* e) {

Completed in 374 milliseconds

123456