Home
last modified time | relevance | path

Searched refs:CurType (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaType.cpp2542 QualType Sema::BuildVectorType(QualType CurType, Expr *SizeExpr, in BuildVectorType() argument
2546 if ((!CurType->isDependentType() && in BuildVectorType()
2547 (!CurType->isBuiltinType() || CurType->isBooleanType() || in BuildVectorType()
2548 (!CurType->isIntegerType() && !CurType->isRealFloatingType()))) || in BuildVectorType()
2549 CurType->isArrayType()) { in BuildVectorType()
2550 Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << CurType; in BuildVectorType()
2555 return Context.getDependentVectorType(CurType, SizeExpr, AttrLoc, in BuildVectorType()
2566 if (CurType->isDependentType()) in BuildVectorType()
2567 return Context.getDependentVectorType(CurType, SizeExpr, AttrLoc, in BuildVectorType()
2578 unsigned TypeSize = static_cast<unsigned>(Context.getTypeSize(CurType)); in BuildVectorType()
[all …]
H A DSemaOpenMP.cpp18285 QualType CurType = BaseE->getType().getNonReferenceType(); in VisitMemberExpr() local
18291 if (CurType->isUnionType()) { in VisitMemberExpr()
18357 QualType CurType = in VisitOMPArraySectionExpr() local
18363 if (CurType->isReferenceType()) in VisitOMPArraySectionExpr()
18364 CurType = CurType->getPointeeType(); in VisitOMPArraySectionExpr()
18366 bool IsPointer = CurType->isAnyPointerType(); in VisitOMPArraySectionExpr()
18368 if (!IsPointer && !CurType->isArrayType()) { in VisitOMPArraySectionExpr()
18375 checkArrayExpressionDoesNotReferToWholeSize(SemaRef, OASE, CurType); in VisitOMPArraySectionExpr()
18377 checkArrayExpressionDoesNotReferToUnitySize(SemaRef, OASE, CurType); in VisitOMPArraySectionExpr()
H A DSemaTemplate.cpp3010 if (const Type *CurType = NNS->getAsType()) { in getRangeOfTypeInNestedNameSpecifier() local
3011 if (Context.hasSameUnqualifiedType(T, QualType(CurType, 0))) in getRangeOfTypeInNestedNameSpecifier()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dconvert.d790 alias CurType = OriginalType!EType; variable
792 alias CurType = typeof(cur); variable
793 …static if (is(CurType == struct) || is(CurType == union) || __traits(isStaticArray, CurType) || !i…
795 … bytes[val.tupleof[key].offsetof .. val.tupleof[key].offsetof + CurType.sizeof] = toUbyte(cur)[];
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
H A Decho.cpp1057 LLVMTypeRef CurType = TypeCloner(M).Clone(Cur); in declare_symbols() local
1059 LLVMAddAlias(M, CurType, LLVMGetUndef(CurType), Name); in declare_symbols()
1091 LLVMTypeRef CurType = TypeCloner(M).Clone(LLVMGlobalGetValueType(Cur)); in declare_symbols() local
1094 CurType, /*addressSpace*/ 0, LLVMGetUndef(CurType)); in declare_symbols()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp436 AsmTypeInfo CurType; member in __anon301d74170111::X86AsmParser::IntelExprStateMachine
464 StringRef getType() const { return CurType.Name; } in getType()
465 unsigned getSize() const { return CurType.Size; } in getSize()
466 unsigned getElementSize() const { return CurType.ElementSize; } in getElementSize()
467 unsigned getLength() const { return CurType.Length; } in getLength()
935 CurType.Length = 1; in onLBrac()
936 CurType.Size = CurType.ElementSize; in onLBrac()
1063 void setTypeInfo(AsmTypeInfo Type) { CurType = Type; } in setTypeInfo()