Searched defs:OffsetOfExpr (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/AST/
H A DExpr.cpp1322 OffsetOfExpr *OffsetOfExpr::Create(const ASTContext &C, QualType type,
1328 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1332 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
1336 OffsetOfExpr *OffsetOfExpr::CreateEmpty(const ASTContext &C,
1338 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1341 return new (Mem) OffsetOfExpr(numComps, numExprs);
1344 OffsetOfExpr::OffsetOfExpr(cons function in class:OffsetOfExpr
[all...]
/external/clang/include/clang/AST/
H A DExpr.h1809 /// OffsetOfExpr - [C99 7.17] - This represents an expression of the form
1823 class OffsetOfExpr : public Expr { class in class:clang::StringLiteral
1929 OffsetOfExpr(const ASTContext &C, QualType type,
1934 explicit OffsetOfExpr(unsigned numComps, unsigned numExprs) function in class:clang::StringLiteral::OffsetOfExpr
1940 static OffsetOfExpr *Create(const ASTContext &C, QualType type,
1945 static OffsetOfExpr *CreateEmpty(const ASTContext &C,
1983 return const_cast<OffsetOfExpr*>(this)->getIndexExpr(Idx);

Completed in 82 milliseconds