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

  /external/clang/include/clang/AST/
APValue.h 181 bool isVector() const { return Kind == Vector; }
253 assert(isVector() && "Invalid accessor");
261 assert(isVector() && "Invalid accessor");
350 assert(isVector() && "Invalid accessor");
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Types.h 201 bool isVector() const { return size > 1 && !matrix; }
intermediate.h 254 bool isVector() const { return type.isVector(); }
  /external/llvm/include/llvm/CodeGen/
ValueTypes.h 172 /// isVector - Return true if this is a vector value type.
173 bool isVector() const {
229 return isVector() ? getVectorElementType() : *this;
527 /// isVector - Return true if this is a vector value type.
528 bool isVector() const {
529 return isSimple() ? V.isVector() : isExtendedVector();
614 return isVector() ? getVectorElementType() : *this;
620 assert(isVector() && "Invalid vector type!");
629 assert(isVector() && "Invalid vector type!");
658 assert(isInteger() && !isVector() && "Invalid integer type!")
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 38 static inline bool isVector(MVT::SimpleValueType VT) {
39 return EVT(VT).isVector();
42 return !EVT(VT).isVector();
122 if (isVector(TypeVec[i]))
299 return FillWithPossibleTypes(TP, isVector, "vector");
306 if (!isVector(TypeVec[i])) {
531 assert(isVector(TypeVec[i]) && "EnforceVector didn't work");
    [all...]

Completed in 77 milliseconds