HomeSort by relevance Sort by last modified time
    Searched refs:vecType (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/AST/
Type.cpp 150 VectorType::VectorType(QualType vecType, unsigned nElements, QualType canonType,
152 : Type(Vector, canonType, vecType->isDependentType(),
153 vecType->isInstantiationDependentType(),
154 vecType->isVariablyModifiedType(),
155 vecType->containsUnexpandedParameterPack()),
156 ElementType(vecType)
162 VectorType::VectorType(TypeClass tc, QualType vecType, unsigned nElements,
164 : Type(tc, canonType, vecType->isDependentType(),
165 vecType->isInstantiationDependentType(),
166 vecType->isVariablyModifiedType()
    [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 286 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
311 (Idx = vecType->getPointAccessorIdx(*compStr)) != -1) {
321 } while (*compStr && (Idx = vecType->getPointAccessorIdx(*compStr)) != -1);
324 while ((Idx = vecType->getNumericAccessorIdx(*compStr)) != -1) {
348 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
361 unsigned CompSize = HalvingSwizzle ? (vecType->getNumElements() + 1) / 2
367 return vecType->getElementType();
371 QualType VT = S.Context.getExtVectorType(vecType->getElementType(), CompSize);
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]

Completed in 311 milliseconds