OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isVector
(Results
1 - 5
of
5
) sorted by null
/external/clang/include/clang/AST/
APValue.h
105
bool
isVector
() const { return Kind == Vector; }
127
assert(
isVector
() && "Invalid accessor");
131
assert(
isVector
() && "Invalid accessor");
135
assert(
isVector
() && "Invalid accessor");
183
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;
463
///
isVector
- Return true if this is a vector value type.
464
bool
isVector
() const {
465
return isSimple() ? V.
isVector
() : isExtendedVector();
555
return
isVector
() ? getVectorElementType() : *this;
561
assert(
isVector
() && "Invalid vector type!");
570
assert(
isVector
() && "Invalid vector type!");
599
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 51 milliseconds