HomeSort by relevance Sort by last modified time
    Searched defs:ValType (Results 1 - 5 of 5) sorted by null

  /external/vixl/test/
test-invalset.cc 38 typedef ptrdiff_t ValType;
44 Obj(KeyType key, ValType val) : key_(key), val_(val) {}
46 ValType val_;
  /external/llvm/lib/IR/
ConstantsContext.h 348 typedef ConstantExprKeyType ValType;
352 typedef InlineAsmKeyType ValType;
356 typedef ConstantAggrKeyType<ConstantArray> ValType;
360 typedef ConstantAggrKeyType<ConstantStruct> ValType;
364 typedef ConstantAggrKeyType<ConstantVector> ValType;
551 typedef typename ConstantInfo<ConstantClass>::ValType ValType;
553 typedef std::pair<TypeClass *, ValType> LookupKey;
566 return getHashValue(LookupKey(CP->getType(), ValType(CP, Storage)));
600 ConstantClass *create(TypeClass *Ty, ValType V)
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 521 : SExpr(COP_Literal), ValType(ValueType::getValueType<void>()), Cexpr(C)
523 Literal(ValueType VT) : SExpr(COP_Literal), ValType(VT), Cexpr(nullptr) {}
524 Literal(const Literal &L) : SExpr(L), ValType(L.ValType), Cexpr(L.Cexpr) {}
529 ValueType valueType() const { return ValType; }
547 const ValueType ValType;
573 switch (ValType.Base) {
579 switch (ValType.Size) {
581 if (ValType.Signed)
586 if (ValType.Signed
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 518 enum ValType {
527 PointerIntPair<Value *, 2, ValType> Val;
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 792 QualType ValType = pointerType->getPointeeType();
793 QualType AddrType = ValType.getUnqualifiedType().withVolatile();
799 if (!AddrType.isAtLeastAsQualifiedAs(ValType)) {
817 if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
818 !ValType->isBlockPointerType() && !ValType->isFloatingType()) {
825 if (Context.getTypeSize(ValType) > MaxWidth) {
832 switch (ValType.getObjCLifetime()) {
842 << ValType << PointerArg->getSourceRange()
    [all...]

Completed in 260 milliseconds