HomeSort by relevance Sort by last modified time
    Searched refs:ElemTy (Results 1 - 13 of 13) sorted by null

  /external/llvm/include/llvm/ADT/
EquivalenceClasses.h 54 template <class ElemTy>
69 ElemTy Data;
72 ECValue(const ElemTy &Elt)
100 const ElemTy &getData() const { return Data; }
110 /// TheMapping - This implicitly provides a mapping from ElemTy values to the
156 iterator findValue(const ElemTy &V) const {
163 const ElemTy &getLeaderValue(const ElemTy &V) const {
172 const ElemTy &getOrInsertLeaderValue(const ElemTy &V)
    [all...]
  /external/llvm/lib/VMCore/
Type.cpp 543 bool StructType::isValidElementType(Type *ElemTy) {
544 return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
545 !ElemTy->isMetadataTy() && !ElemTy->isFunctionTy();
637 bool ArrayType::isValidElementType(Type *ElemTy) {
638 return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
639 !ElemTy->isMetadataTy() && !ElemTy->isFunctionTy()
    [all...]
  /external/llvm/include/llvm/
DerivedTypes.h 271 static bool isValidElementType(Type *ElemTy);
346 static bool isValidElementType(Type *ElemTy);
405 static bool isValidElementType(Type *ElemTy);
442 static bool isValidElementType(Type *ElemTy);
  /external/clang/include/clang/Analysis/
CFG.h 86 template<class ElemTy> const ElemTy *getAs() const {
87 if (llvm::isa<ElemTy>(this))
88 return static_cast<const ElemTy*>(this);
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 686 llvm::Type *ElemTy = AType->getElementType();
701 RewriteType |= (C->getType() != ElemTy);
711 fillC = llvm::Constant::getNullValue(ElemTy);
714 RewriteType |= (fillC->getType() != ElemTy);
    [all...]
TargetInfo.cpp     [all...]
CGExpr.cpp 560 QualType ElemTy = E->getType()->getAs<ComplexType>()->getElementType();
561 llvm::APFloat FVal(getContext().getFloatTypeSemantics(ElemTy), 1);
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 412 QualType ElemTy = Context.getBaseElementType(AT);
413 const RecordType *RT = ElemTy->getAs<RecordType>();
515 QualType ElemTy = Context.getBaseElementType(AT);
516 const RecordType *RT = ElemTy->getAs<RecordType>();
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 49 QualType ElemTy = Context.getCanonicalType(AT->getElementType());
56 return ElemTy->isCharType() ? Init : 0;
58 return ElemTy->isChar16Type() ? Init : 0;
60 return ElemTy->isChar32Type() ? Init : 0;
67 ElemTy.getUnqualifiedType()))
    [all...]
SemaExpr.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 108 EVT ElemTy = VT.getVectorElementType();
109 if (ElemTy != MVT::i64 && ElemTy != MVT::f64)
112 if (ElemTy != MVT::i32) {
    [all...]

Completed in 708 milliseconds