Searched refs:OffsetOfExpr (Results 1 - 19 of 19) sorted by relevance

/external/clang/include/clang/AST/
H A DEvaluatedExprVisitor.h39 void VisitOffsetOfExpr(OffsetOfExpr *E) { }
H A DExpr.h1757 /// OffsetOfExpr - [C99 7.17] - This represents an expression of the form
1771 class OffsetOfExpr : public Expr { class in class:clang::StringLiteral
1877 OffsetOfExpr(const ASTContext &C, QualType type,
1882 explicit OffsetOfExpr(unsigned numComps, unsigned numExprs) function in class:clang::StringLiteral::OffsetOfExpr
1888 static OffsetOfExpr *Create(const ASTContext &C, QualType type,
1893 static OffsetOfExpr *CreateEmpty(const ASTContext &C,
1931 return const_cast<OffsetOfExpr*>(this)->getIndexExpr(Idx);
H A DDataRecursiveASTVisitor.h2059 DEF_TRAVERSE_STMT(OffsetOfExpr, {
H A DRecursiveASTVisitor.h2081 DEF_TRAVERSE_STMT(OffsetOfExpr, {
H A DStmt.h152 friend class OffsetOfExpr; // ctor
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp70 if (isa<OffsetOfExpr>(S))
H A DExprEngineC.cpp697 VisitOffsetOfExpr(const OffsetOfExpr *OOE,
H A DExprEngine.cpp1151 VisitOffsetOfExpr(cast<OffsetOfExpr>(S), Pred, Dst);
/external/clang/lib/AST/
H A DStmtProfile.cpp451 void StmtProfiler::VisitOffsetOfExpr(const OffsetOfExpr *S) {
455 const OffsetOfExpr::OffsetOfNode& ON = S->getComponent(i);
458 case OffsetOfExpr::OffsetOfNode::Array:
462 case OffsetOfExpr::OffsetOfNode::Field:
466 case OffsetOfExpr::OffsetOfNode::Identifier:
470 case OffsetOfExpr::OffsetOfNode::Base:
H A DExpr.cpp1269 OffsetOfExpr *OffsetOfExpr::Create(const ASTContext &C, QualType type,
1275 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1279 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
1283 OffsetOfExpr *OffsetOfExpr::CreateEmpty(const ASTContext &C,
1285 void *Mem = C.Allocate(sizeof(OffsetOfExpr) +
1288 return new (Mem) OffsetOfExpr(numComps, numExprs);
1291 OffsetOfExpr::OffsetOfExpr(cons function in class:OffsetOfExpr
[all...]
H A DExprConstant.cpp5746 bool VisitOffsetOfExpr(const OffsetOfExpr *E);
7016 bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) {
7023 OffsetOfExpr::OffsetOfNode ON = OOE->getComponent(i);
7025 case OffsetOfExpr::OffsetOfNode::Array: {
7039 case OffsetOfExpr::OffsetOfNode::Field: {
7054 case OffsetOfExpr::OffsetOfNode::Identifier:
7057 case OffsetOfExpr::OffsetOfNode::Base: {
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp204 Value *VisitOffsetOfExpr(OffsetOfExpr *E);
1809 Value *ScalarExprEmitter::VisitOffsetOfExpr(OffsetOfExpr *E) {
1821 OffsetOfExpr::OffsetOfNode ON = E->getComponent(i);
1824 case OffsetOfExpr::OffsetOfNode::Array: {
1844 case OffsetOfExpr::OffsetOfNode::Field: {
1870 case OffsetOfExpr::OffsetOfNode::Identifier:
1873 case OffsetOfExpr::OffsetOfNode::Base: {
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h396 void VisitOffsetOfExpr(const OffsetOfExpr *Ex, ExplodedNode *Pred,
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.cc573 VISIT(OffsetOfExpr);
621 IGNORE_EXPR(OffsetOfExpr);
/external/clang/lib/Serialization/
H A DASTWriterStmt.cpp456 void ASTStmtWriter::VisitOffsetOfExpr(OffsetOfExpr *E) {
464 const OffsetOfExpr::OffsetOfNode &ON = E->getComponent(I);
469 case OffsetOfExpr::OffsetOfNode::Array:
473 case OffsetOfExpr::OffsetOfNode::Field:
477 case OffsetOfExpr::OffsetOfNode::Identifier:
481 case OffsetOfExpr::OffsetOfNode::Base:
H A DASTReaderStmt.cpp528 void ASTStmtReader::VisitOffsetOfExpr(OffsetOfExpr *E) {
529 typedef OffsetOfExpr::OffsetOfNode Node;
2179 S = OffsetOfExpr::CreateEmpty(Context,
/external/clang/tools/libclang/
H A DCIndex.cpp1839 void VisitOffsetOfExpr(const OffsetOfExpr *E);
2198 void EnqueueVisitor::VisitOffsetOfExpr(const OffsetOfExpr *E) {
2201 typedef OffsetOfExpr::OffsetOfNode OffsetOfNode;
/external/clang/lib/Sema/
H A DTreeTransform.h6925 TreeTransform<Derived>::TransformOffsetOfExpr(OffsetOfExpr *E) {
6939 typedef OffsetOfExpr::OffsetOfNode Node;
H A DSemaExpr.cpp10213 typedef OffsetOfExpr::OffsetOfNode OffsetOfNode;
10350 return OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, TInfo,

Completed in 212 milliseconds