/external/llvm/include/llvm/Support/ |
Casting.h | 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(), 255 // dyn_cast<X> - Return the argument parameter cast to the specified type. This 260 // if (const Instruction *I = dyn_cast<Instruction>(myVal)) { ... } 266 dyn_cast(const Y &Val) { function in namespace:llvm 271 inline typename cast_retty<X, Y>::ret_type dyn_cast(Y &Val) { function in namespace:llvm 276 inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) { function in namespace:llvm 280 // dyn_cast_or_null<X> - Functionally identical to dyn_cast, except that a null
|
/external/llvm/include/llvm/ADT/ |
PointerUnion.h | 134 /// dyn_cast<T>() - If the current value is of the specified pointer type, 137 T dyn_cast() const { 286 /// dyn_cast<T>() - If the current value is of the specified pointer type, 289 T dyn_cast() const { function in class:llvm::PointerUnion3 395 /// dyn_cast<T>() - If the current value is of the specified pointer type, 398 T dyn_cast() const { function in class:llvm::PointerUnion4
|