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

  /external/llvm/include/llvm/ADT/
EpochTracker.h 10 // This file defines the DebugEpochBase and DebugEpochBase::HandleBase classes.
31 class HandleBase {
33 HandleBase() = default;
34 explicit HandleBase(const DebugEpochBase *) {}
69 /// HandleBase does not track the parent data structure by itself. It expects
73 class HandleBase {
78 HandleBase() : EpochAddress(nullptr), EpochAtCreation(UINT64_MAX) {}
80 explicit HandleBase(const DebugEpochBase *Parent)
85 /// HandleBase instance.
  /external/v8/src/
handles-inl.h 16 HandleBase::HandleBase(Object* object, Isolate* isolate)
handles.h 27 class HandleBase {
29 V8_INLINE explicit HandleBase(Object** location) : location_(location) {}
30 V8_INLINE explicit HandleBase(Object* object, Isolate* isolate);
33 V8_INLINE bool is_identical_to(const HandleBase that) const {
84 class Handle final : public HandleBase {
87 : HandleBase(reinterpret_cast<Object**>(location)) {
94 V8_INLINE Handle(T* object, Isolate* isolate) : HandleBase(object, isolate) {}
103 : HandleBase(handle) {
114 return reinterpret_cast<T*>(HandleBase::operator*());
119 return reinterpret_cast<T**>(HandleBase::location())
    [all...]

Completed in 48 milliseconds