HomeSort by relevance Sort by last modified time
    Searched refs:ElemTy (Results 1 - 19 of 19) 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/clang/lib/AST/
APValue.cpp 325 QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
326 getVectorElt(0).printPretty(Out, Ctx, ElemTy);
329 getVectorElt(i).printPretty(Out, Ctx, ElemTy);
386 QualType ElemTy;
389 ElemTy = VD->getType();
393 ElemTy = E->getType();
399 if (ElemTy->getAs<RecordType>()) {
406 ElemTy = Ctx.getRecordType(RD);
413 ElemTy = VD->getType();
418 ElemTy = Ctx.getAsArrayType(ElemTy)->getElementType()
    [all...]
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...]
ExprConstant.cpp     [all...]
  /external/llvm/lib/VMCore/
Type.cpp 613 bool StructType::isValidElementType(Type *ElemTy) {
614 return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
615 !ElemTy->isMetadataTy() && !ElemTy->isFunctionTy();
707 bool ArrayType::isValidElementType(Type *ElemTy) {
708 return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
709 !ElemTy->isMetadataTy() && !ElemTy->isFunctionTy()
    [all...]
  /external/llvm/include/llvm/
DerivedTypes.h 275 static bool isValidElementType(Type *ElemTy);
350 static bool isValidElementType(Type *ElemTy);
410 static bool isValidElementType(Type *ElemTy);
448 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);
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 766 llvm::Type *ElemTy = AType->getElementType();
784 RewriteType |= (C->getType() != ElemTy);
794 fillC = llvm::Constant::getNullValue(ElemTy);
797 RewriteType |= (fillC->getType() != ElemTy);
    [all...]
CodeGenModule.cpp     [all...]
TargetInfo.cpp     [all...]
CGExpr.cpp 558 QualType ElemTy = E->getType()->getAs<ComplexType>()->getElementType();
559 llvm::APFloat FVal(getContext().getFloatTypeSemantics(ElemTy), 1);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 346 static inline VectorType *getVecTypeForPair(Type *ElemTy) {
347 if (VectorType *VTy = dyn_cast<VectorType>(ElemTy)) {
349 return VectorType::get(ElemTy->getScalarType(), numElem*2);
352 return VectorType::get(ElemTy, 2);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 51 QualType ElemTy = Context.getCanonicalType(AT->getElementType());
58 return ElemTy->isCharType() ? Init : 0;
60 return ElemTy->isChar16Type() ? Init : 0;
62 return ElemTy->isChar32Type() ? Init : 0;
69 ElemTy.getUnqualifiedType()))
    [all...]
SemaExpr.cpp     [all...]
SemaExprCXX.cpp 832 QualType ElemTy = Ty;
837 ElemTy = Context.getBaseElementType(Ty);
841 RequireCompleteType(TyBeginLoc, ElemTy
    [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 104 EVT ElemTy = VT.getVectorElementType();
105 if (ElemTy != MVT::i64 && ElemTy != MVT::f64)
109 if (ElemTy == MVT::i32) {
    [all...]

Completed in 786 milliseconds