HomeSort by relevance Sort by last modified time
    Searched refs:HandleBase (Results 1 - 5 of 5) 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.
DenseMap.h 987 class DenseMapIterator : DebugEpochBase::HandleBase {
1006 : DebugEpochBase::HandleBase(&Epoch), Ptr(Pos), End(E) {
    [all...]
  /external/v8/src/
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 {
88 class Handle final : public HandleBase {
91 : HandleBase(reinterpret_cast<Object**>(location)) {
98 V8_INLINE Handle(T* object, Isolate* isolate) : HandleBase(object, isolate) {}
107 : HandleBase(handle) {
118 return reinterpret_cast<T*>(HandleBase::operator*());
123 return reinterpret_cast<T**>(HandleBase::location())
    [all...]
handles-inl.h 16 HandleBase::HandleBase(Object* object, Isolate* isolate)
handles.cc 16 bool HandleBase::IsDereferenceAllowed(DereferenceCheckMode mode) const {

Completed in 58 milliseconds