Home
last modified time | relevance | path

Searched defs:Persistent (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/heap/
DHandle.h505 Persistent() : m_raw(0) { } in Persistent() function
507 Persistent(std::nullptr_t) : m_raw(0) { } in Persistent() function
509 Persistent(T* raw) : m_raw(raw) in Persistent() function
515 explicit Persistent(T& raw) : m_raw(&raw) in Persistent() function
521 Persistent(const Persistent& other) : m_raw(other) { recordBacktrace(); } in Persistent() function
524 Persistent(const Persistent<U, RootsAccessor>& other) : m_raw(other) { recordBacktrace(); } in Persistent() function
527 Persistent(const Member<U>& other) : m_raw(other) { recordBacktrace(); } in Persistent() function
530 Persistent(const RawPtr<U>& other) : m_raw(other.get()) { recordBacktrace(); } in Persistent() function
DHeap.h110 …, typename RootsAccessor = ThreadLocalPersistents<ThreadingTrait<T>::Affinity > > class Persistent; variable
/external/chromium_org/third_party/WebKit/Source/modules/quota/
DDeprecatedStorageQuota.h50 Persistent, enumerator
/external/chromium_org/tools/clang/blink_gc_plugin/
DEdge.h21 class Persistent; variable
33 virtual void VisitPersistent(Persistent*) {} in VisitPersistent() argument
190 explicit Persistent(Edge* ptr) : PtrEdge(ptr) { } in Persistent() function
DEdge.cpp22 void RecursiveEdgeVisitor::AtPersistent(Persistent*) {} in AtPersistent() argument
/external/chromium_org/v8/include/
Dv8.h107 class M = NonCopyablePersistentTraits<T> > class Persistent; variable
300 template<class F, class M> friend class Persistent; variable
378 template<class F, class M> friend class Persistent; variable
563 template<class F1, class F2> friend class Persistent; variable
632 V8_INLINE Persistent() : PersistentBase<T>(0) { } in Persistent() function
638 template <class S> V8_INLINE Persistent(Isolate* isolate, Handle<S> that) in Persistent() function
648 V8_INLINE Persistent(Isolate* isolate, const Persistent<S, M2>& that) in Persistent() function
658 V8_INLINE Persistent(const Persistent& that) : PersistentBase<T>(0) { in Persistent() function
662 V8_INLINE Persistent(const Persistent<S, M2>& that) : PersistentBase<T>(0) { in Persistent() function
707 template<class F1, class F2> friend class Persistent; variable
[all …]
/external/clang/tools/libclang/
DIndexing.cpp625 bool Persistent = requestedToGetTU; in clang_indexSourceFile_Impl() local
/external/clang/lib/Frontend/
DASTUnit.cpp1756 ASTFrontendAction *Action, ASTUnit *Unit, bool Persistent, in LoadFromCompilerInvocationAction()