reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Derived Classes

tools/clang/lib/Rewrite/DeltaTree.cpp
  123   class DeltaTreeInteriorNode : public DeltaTreeNode {

References

include/llvm/Support/Casting.h
   57   static inline bool doit(const From &Val) {
  104   static inline bool doit(const From *Val) {
  106     return isa_impl<To, From>::doit(*Val);
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  265   return cast_convert_val<X, Y*,
  266                           typename simplify_type<Y*>::SimpleType>::doit(Val);
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
tools/clang/lib/Rewrite/DeltaTree.cpp
   58       DeltaTreeNode *LHS, *RHS;
  123   class DeltaTreeInteriorNode : public DeltaTreeNode {
  126     DeltaTreeNode *Children[2*WidthFactor];
  145     const DeltaTreeNode *getChild(unsigned i) const {
  150     DeltaTreeNode *getChild(unsigned i) {
  155     static bool classof(const DeltaTreeNode *N) { return !N->isLeaf(); }
  258   DeltaTreeNode *SubRHS = InsertRes->RHS;
  307   DeltaTreeNode *NewNode;
  317     NewNode = new DeltaTreeNode();
  386 static DeltaTreeNode *getRoot(void *Root) {
  391   Root = new DeltaTreeNode();
  398   Root = new DeltaTreeNode();
  409   const DeltaTreeNode *Node = getRoot(Root);
  457   DeltaTreeNode *MyRoot = getRoot(Root);
  459   DeltaTreeNode::InsertResult InsertRes;
usr/include/c++/7.4.0/type_traits
 1983     { typedef _Up     type; };