OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:VectorType
(Results
1 - 8
of
8
) sorted by null
/external/llvm/unittests/ADT/
SmallVectorTest.cpp
93
typedef SmallVector<Constructable, 4>
VectorType
;
95
VectorType
theVector;
96
VectorType
otherVector;
102
void assertEmpty(
VectorType
& v) {
112
void assertValuesInOrder(
VectorType
& v, size_t size, ...) {
126
void makeSequence(
VectorType
& v, int start, int end) {
247
VectorType
::iterator it = theVector.begin();
265
VectorType
::reverse_iterator rit = theVector.rbegin();
386
VectorType
constVector;
/external/llvm/include/llvm/
PassAnalysisSupport.h
38
typedef SmallVector<AnalysisID, 32>
VectorType
;
42
VectorType
Required, RequiredTransitive, Preserved;
107
const
VectorType
&getRequiredSet() const { return Required; }
108
const
VectorType
&getRequiredTransitiveSet() const {
111
const
VectorType
&getPreservedSet() const { return Preserved; }
DerivedTypes.h
144
/// and
VectorType
.
339
///
VectorType
- Class to represent vector types.
341
class
VectorType
: public SequentialType {
344
VectorType
(const
VectorType
&); // Do not implement
345
const
VectorType
&operator=(const
VectorType
&); // Do not implement
346
VectorType
(Type *ElType, unsigned NumEl);
348
///
VectorType
::get - This static method is the primary way to construct an
349
///
VectorType
[
all
...]
/external/webkit/Source/JavaScriptCore/runtime/
ArgList.h
38
typedef Vector<Register, inlineCapacity>
VectorType
;
42
typedef
VectorType
::iterator iterator;
43
typedef
VectorType
::const_iterator const_iterator;
153
VectorType
m_vector;
/external/llvm/lib/VMCore/
Pass.cpp
246
typedef AnalysisUsage::
VectorType
VectorType
;
247
VectorType
&CFGOnlyList;
248
GetCFGOnlyPasses(
VectorType
&L) : CFGOnlyList(L) {}
Type.cpp
44
if (
VectorType
*VTy = dyn_cast<
VectorType
>(this))
62
return cast<
VectorType
>(this)->getElementType()->isIntegerTy();
74
return cast<
VectorType
>(this)->getElementType()->isFloatingPointTy();
92
if (const
VectorType
*thisPTy = dyn_cast<
VectorType
>(this)) {
93
if (const
VectorType
*thatPTy = dyn_cast<
VectorType
>(Ty))
101
if (const
VectorType
*thatPTy = dyn_cast<
VectorType
>(Ty)
[
all
...]
/external/clang/lib/AST/
Type.cpp
130
VectorType
::
VectorType
(QualType vecType, unsigned nElements, QualType canonType,
142
VectorType
::
VectorType
(TypeClass tc, QualType vecType, unsigned nElements,
519
AutoType *VisitVectorType(const
VectorType
*T) {
550
if (const
VectorType
*VT = dyn_cast<
VectorType
>(CanonicalType))
691
if (const
VectorType
*VT = dyn_cast<
VectorType
>(CanonicalType))
731
if (const
VectorType
*VT = dyn_cast<VectorType>(CanonicalType)
[
all
...]
/external/clang/include/clang/AST/
Type.h
[
all
...]
Completed in 4856 milliseconds