Searched refs:CurType (Results 1 – 6 of 6) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaType.cpp | 2542 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 D | SemaOpenMP.cpp | 18285 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 D | SemaTemplate.cpp | 3010 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 D | convert.d | 790 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 D | echo.cpp | 1057 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 D | X86AsmParser.cpp | 436 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()
|