Searched defs:CallbackVH (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/IR/
H A DValueHandle.h344 class CallbackVH : public ValueHandleBase { class in namespace:llvm
347 ~CallbackVH() = default;
348 CallbackVH(const CallbackVH &) = default;
349 CallbackVH &operator=(const CallbackVH &) = default;
356 CallbackVH() : ValueHandleBase(Callback) {} function in class:llvm::CallbackVH
357 CallbackVH(Value *P) : ValueHandleBase(Callback, P) {} function in class:llvm::CallbackVH
367 /// methods. If WeakVH were implemented as a CallbackVH, it would use this
379 /// implemented as a CallbackVH, i
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DValueHandle.h350 /// CallbackVH - This is a value handle that allows subclasses to define
356 class CallbackVH : public ValueHandleBase { class in namespace:llvm
358 CallbackVH(const CallbackVH &RHS) function in class:llvm::CallbackVH
361 virtual ~CallbackVH();
368 CallbackVH() : ValueHandleBase(Callback) {} function in class:llvm::CallbackVH
369 CallbackVH(Value *P) : ValueHandleBase(Callback, P) {} function in class:llvm::CallbackVH
377 /// If WeakVH were implemented as a CallbackVH, it would use this method to
389 /// implemented as a CallbackVH, it would use this method to call
394 // Specialize simplify_type to allow CallbackVH t
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DValue.cpp526 // (as might occur in theory for CallbackVH's): the new value handle will not
549 static_cast<CallbackVH*>(Entry)->deleted();
606 static_cast<CallbackVH*>(Entry)->allUsesReplacedWith(New);
630 /// ~CallbackVH. Empty, but defined here to avoid emitting the vtable
632 CallbackVH::~CallbackVH() {}

Completed in 124 milliseconds