HomeSort by: relevance | last modified time | path
    Searched defs:CurType (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
echo.cpp 1057 LLVMTypeRef CurType = TypeCloner(M).Clone(Cur);
1059 LLVMAddAlias(M, CurType, LLVMGetUndef(CurType), Name);
1091 LLVMTypeRef CurType = TypeCloner(M).Clone(LLVMGlobalGetValueType(Cur));
1094 CurType, /*addressSpace*/ 0, LLVMGetUndef(CurType));
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 436 AsmTypeInfo CurType;
464 StringRef getType() const { return CurType.Name; }
465 unsigned getSize() const { return CurType.Size; }
466 unsigned getElementSize() const { return CurType.ElementSize; }
467 unsigned getLength() const { return CurType.Length; }
935 CurType.Length = 1;
936 CurType.Size = CurType.ElementSize;
1063 void setTypeInfo(AsmTypeInfo Type) { CurType = Type; }
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 2542 QualType Sema::BuildVectorType(QualType CurType, Expr *SizeExpr,
2546 if ((!CurType->isDependentType() &&
2547 (!CurType->isBuiltinType() || CurType->isBooleanType() ||
2548 (!CurType->isIntegerType() && !CurType->isRealFloatingType()))) ||
2549 CurType->isArrayType()) {
2550 Diag(AttrLoc, diag::err_attribute_invalid_vector_type) << CurType;
2555 return Context.getDependentVectorType(CurType, SizeExpr, AttrLoc,
2566 if (CurType->isDependentType()
    [all...]

Completed in 51 milliseconds