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

/external/compiler-rt/lib/ubsan/
H A Dubsan_value.h124 bool isIntegerTy() const { return getKind() == TK_Integer; } function in class:__ubsan::TypeDescriptor
126 return isIntegerTy() && (TypeInfo & 1);
129 return isIntegerTy() && !(TypeInfo & 1);
132 CHECK(isIntegerTy());
160 CHECK(getType().isIntegerTy());
/external/llvm/include/llvm/IR/
H A DType.h194 /// isIntegerTy - True if this is an instance of IntegerType.
196 bool isIntegerTy() const { return getTypeID() == IntegerTyID; } function in class:llvm::Type
198 /// isIntegerTy - Return true if this is an IntegerType of the given width.
199 bool isIntegerTy(unsigned Bitwidth) const;
204 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); }
/external/llvm/lib/IR/
H A DType.cpp57 /// isIntegerTy - Return true if this is an IntegerType of the specified width.
58 bool Type::isIntegerTy(unsigned Bitwidth) const { function in class:Type
59 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
159 if (this->isIntegerTy())
653 if (!V->getType()->getScalarType()->isIntegerTy(32))
726 return ElemTy->isIntegerTy() || ElemTy->isFloatingPointTy() ||

Completed in 103 milliseconds