OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VariableArrayType
(Results
1 - 25
of
34
) sorted by null
1
2
/external/clang/lib/AST/
StmtIterator.cpp
21
static inline const
VariableArrayType
*FindVA(const Type* t) {
23
if (const
VariableArrayType
*vat = dyn_cast<
VariableArrayType
>(vt))
36
const
VariableArrayType
*p = getVAPtr();
72
if (const
VariableArrayType
* VAPtr = FindVA(VD->getType().getTypePtr())) {
81
if (const
VariableArrayType
* VAPtr =
100
StmtIteratorBase::StmtIteratorBase(const
VariableArrayType
* t)
106
if (const
VariableArrayType
* VAPtr = getVAPtr()) {
TypePrinter.cpp
447
void TypePrinter::printVariableArrayBefore(const
VariableArrayType
*T,
453
void TypePrinter::printVariableArrayAfter(const
VariableArrayType
*T,
461
if (T->getSizeModifier() ==
VariableArrayType
::Static)
463
else if (T->getSizeModifier() ==
VariableArrayType
::Star)
[
all
...]
ASTContext.cpp
[
all
...]
Type.cpp
885
return !isa<
VariableArrayType
>(CanonicalType);
[
all
...]
ASTImporter.cpp
51
QualType VisitVariableArrayType(const
VariableArrayType
*T);
479
const
VariableArrayType
*Array1 = cast<
VariableArrayType
>(T1);
480
const
VariableArrayType
*Array2 = cast<
VariableArrayType
>(T2);
[
all
...]
MicrosoftMangle.cpp
[
all
...]
/external/clang/include/clang/AST/
StmtIterator.h
28
class
VariableArrayType
;
52
const
VariableArrayType
*getVAPtr() const {
53
return reinterpret_cast<const
VariableArrayType
*>(RawVAPtr & ~Flags);
56
void setVAPtr(const
VariableArrayType
*P) {
68
StmtIteratorBase(const
VariableArrayType
*t);
85
StmtIteratorImpl(const
VariableArrayType
*t) : StmtIteratorBase(t) {}
127
StmtIterator(const
VariableArrayType
*t)
ASTContext.h
92
mutable std::vector<
VariableArrayType
*> VariableArrayTypes;
[
all
...]
CanonicalType.h
519
template<> struct CanProxyAdaptor<
VariableArrayType
>;
RecursiveASTVisitor.h
[
all
...]
TypeLoc.h
[
all
...]
Type.h
[
all
...]
/external/clang/lib/CodeGen/
CodeGenFunction.cpp
[
all
...]
CodeGenTypes.cpp
428
const
VariableArrayType
*A = cast<
VariableArrayType
>(Ty);
CGExprScalar.cpp
[
all
...]
CodeGenFunction.h
[
all
...]
CGExpr.cpp
630
else if (const
VariableArrayType
*VAT = dyn_cast<
VariableArrayType
>(AT))
[
all
...]
CGDecl.cpp
[
all
...]
/external/clang/lib/Analysis/
LiveVariables.cpp
233
static const
VariableArrayType
*FindVA(QualType Ty) {
236
if (const
VariableArrayType
*VAT = dyn_cast<
VariableArrayType
>(VT))
308
for (const
VariableArrayType
* VA = FindVA(VD->getType());
425
// does extent the liveness of metadata if 'var' is a
VariableArrayType
.
CFG.cpp
620
static const
VariableArrayType
*FindVA(const Type *t) {
622
if (const
VariableArrayType
*vat = dyn_cast<
VariableArrayType
>(vt))
[
all
...]
/external/clang/lib/StaticAnalyzer/Checkers/
VLASizeChecker.cpp
87
const
VariableArrayType
*VLA = Ctx.getAsVariableArrayType(VD->getType());
/external/clang/tools/libclang/
CXType.cpp
603
ET = cast<
VariableArrayType
> (TP)->getElementType();
655
ET = cast<
VariableArrayType
> (TP)->getElementType();
RecursiveASTVisitor.h
807
DEF_TRAVERSE_TYPE(
VariableArrayType
, {
[
all
...]
/external/clang/include/clang/ASTMatchers/
ASTMatchers.h
[
all
...]
/external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp
187
if (isa<
VariableArrayType
>(T))
[
all
...]
Completed in 441 milliseconds
1
2