• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/llvmCore-3425.0.34/include/llvm/

Lines Matching defs:classof

62   static inline bool classof(const Operator *) { return true; }
63 static inline bool classof(const Instruction *) { return true; }
64 static inline bool classof(const ConstantExpr *) { return true; }
65 static inline bool classof(const Value *V) {
108 static inline bool classof(const OverflowingBinaryOperator *) { return true; }
109 static inline bool classof(const Instruction *I) {
115 static inline bool classof(const ConstantExpr *CE) {
121 static inline bool classof(const Value *V) {
122 return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
123 (isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
157 static inline bool classof(const ConstantExpr *CE) {
160 static inline bool classof(const Instruction *I) {
163 static inline bool classof(const Value *V) {
164 return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
165 (isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
182 static inline bool classof(const FPMathOperator *) { return true; }
183 static inline bool classof(const Instruction *I) {
186 static inline bool classof(const Value *V) {
187 return isa<Instruction>(V) && classof(cast<Instruction>(V));
198 static inline bool classof(const ConcreteOperator<SuperClass, Opc> *) {
201 static inline bool classof(const Instruction *I) {
204 static inline bool classof(const ConstantExpr *CE) {
207 static inline bool classof(const Value *V) {
208 return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
209 (isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));