Home
last modified time | relevance | path

Searched refs:HandleBase (Results 1 – 13 of 13) sorted by relevance

/external/llvm/include/llvm/ADT/
DEpochTracker.h31 class HandleBase {
33 HandleBase() = default;
34 explicit HandleBase(const DebugEpochBase *) {} in HandleBase() function
73 class HandleBase {
78 HandleBase() : EpochAddress(nullptr), EpochAtCreation(UINT64_MAX) {}
80 explicit HandleBase(const DebugEpochBase *Parent)
DDenseMap.h1033 class DenseMapIterator : DebugEpochBase::HandleBase {
1052 : DebugEpochBase::HandleBase(&Epoch), Ptr(Pos), End(E) {
1064 : DebugEpochBase::HandleBase(I), Ptr(I.Ptr), End(I.End) {} in DenseMapIterator()
/external/libmojo/mojo/android/system/src/org/chromium/mojo/system/impl/
DHandleBase.java18 abstract class HandleBase implements Handle { class
35 HandleBase(CoreImpl core, int mojoHandle) { in HandleBase() method in HandleBase
44 protected HandleBase(HandleBase other) { in HandleBase() method in HandleBase
46 HandleBase otherAsHandleImpl = other; in HandleBase()
DSharedBufferHandleImpl.java14 class SharedBufferHandleImpl extends HandleBase implements SharedBufferHandle {
26 SharedBufferHandleImpl(HandleBase handle) { in SharedBufferHandleImpl()
DUntypedHandleImpl.java16 class UntypedHandleImpl extends HandleBase implements UntypedHandle {
28 UntypedHandleImpl(HandleBase handle) { in UntypedHandleImpl()
DDataPipeProducerHandleImpl.java16 class DataPipeProducerHandleImpl extends HandleBase implements ProducerHandle {
28 DataPipeProducerHandleImpl(HandleBase handle) { in DataPipeProducerHandleImpl()
DMessagePipeHandleImpl.java17 class MessagePipeHandleImpl extends HandleBase implements MessagePipeHandle {
29 MessagePipeHandleImpl(HandleBase handle) { in MessagePipeHandleImpl()
DDataPipeConsumerHandleImpl.java16 class DataPipeConsumerHandleImpl extends HandleBase implements ConsumerHandle {
28 DataPipeConsumerHandleImpl(HandleBase other) { in DataPipeConsumerHandleImpl()
DCoreImpl.java296 ((HandleBase) handle).invalidateHandle(); in writeMessage()
467 return ((HandleBase) handle).getMojoHandle(); in getMojoHandle()
/external/v8/src/
Dhandles.h27 class HandleBase {
29 V8_INLINE explicit HandleBase(Object** location) : location_(location) {} in HandleBase() function
30 V8_INLINE explicit HandleBase(Object* object, Isolate* isolate);
33 V8_INLINE bool is_identical_to(const HandleBase that) const { in is_identical_to()
90 class Handle final : public HandleBase {
93 : HandleBase(reinterpret_cast<Object**>(location)) { in HandleBase() function
100 V8_INLINE Handle(T* object, Isolate* isolate) : HandleBase(object, isolate) {} in Handle()
109 : HandleBase(handle) { in Handle()
120 return reinterpret_cast<T*>(HandleBase::operator*());
125 return reinterpret_cast<T**>(HandleBase::location()); in location()
Dhandles-inl.h16 HandleBase::HandleBase(Object* object, Isolate* isolate) in HandleBase() function
Dhandles.cc16 bool HandleBase::IsDereferenceAllowed(DereferenceCheckMode mode) const { in IsDereferenceAllowed()
/external/libmojo/mojo/android/
DBUILD.gn58 "system/src/org/chromium/mojo/system/impl/HandleBase.java",