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 106 bool isVector() const { return Kind == Vector; }
128 assert(isVector() && "Invalid accessor");
132 assert(isVector() && "Invalid accessor");
136 assert(isVector() && "Invalid accessor");
184 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 157 /// isVector - Return true if this is a vector value type.
158 bool isVector() const {
183 return isVector() ? getVectorElementType() : *this;
478 /// isVector - Return true if this is a vector value type.
479 bool isVector() const {
480 return isSimple() ? V.isVector() : isExtendedVector();
570 return isVector() ? getVectorElementType() : *this;
576 assert(isVector() && "Invalid vector type!");
585 assert(isVector() && "Invalid vector type!");
614 assert(isInteger() && !isVector() && "Invalid integer type!")
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 35 static inline bool isVector(MVT::SimpleValueType VT) {
36 return EVT(VT).isVector();
39 return !EVT(VT).isVector();
119 if (isVector(TypeVec[i]))
296 return FillWithPossibleTypes(TP, isVector, "vector");
303 if (!isVector(TypeVec[i])) {
528 assert(isVector(TypeVec[i]) && "EnforceVector didn't work");
    [all...]

Completed in 144 milliseconds