Searched defs:Stmt (Results 1 - 11 of 11) sorted by path

/external/chromium_org/third_party/jinja2/
H A Dnodes.py111 - :class:`Stmt`: statements
246 class Stmt(Node): class in inherits:Node
263 class Output(Stmt):
270 class Extends(Stmt):
275 class For(Stmt):
286 class If(Stmt):
291 class Macro(Stmt):
299 class CallBlock(Stmt):
306 class FilterBlock(Stmt):
311 class Block(Stmt)
[all...]
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dinput.py11 from compiler.ast import Stmt namespace
179 assert isinstance(c1[1], Stmt)
/external/clang/include/clang/AST/
H A DStmt.h1 //===--- Stmt.h - Classes for representing statements -----------*- C++ -*-===//
10 // This file defines the Stmt interface and subclasses.
53 // ExprIterator - Iterators for iterating over Stmt* arrays that contain
54 // only Expr*. This is needed because AST nodes use Stmt* arrays to store
58 class Stmt;
62 Stmt** I;
64 ExprIterator(Stmt** i) : I(i) {}
81 const Stmt * const *I;
83 ConstExprIterator(const Stmt * const *i) : I(i) {}
102 /// Stmt
104 class Stmt { class in namespace:clang
344 explicit Stmt(StmtClass SC, EmptyShell) { function in class:clang::Stmt
350 Stmt(StmtClass SC) { function in class:clang::Stmt
[all...]
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h122 typedef internal::Matcher<Stmt> StatementMatcher;
615 const internal::VariadicAllOfMatcher<Stmt> stmt;
626 Stmt,
640 const internal::VariadicDynCastAllOfMatcher<Stmt, MemberExpr> memberExpr;
650 const internal::VariadicDynCastAllOfMatcher<Stmt, CallExpr> callExpr;
658 const internal::VariadicDynCastAllOfMatcher<Stmt, LambdaExpr> lambdaExpr;
668 Stmt,
678 const internal::VariadicDynCastAllOfMatcher<Stmt, ExprWithCleanups>
691 const internal::VariadicDynCastAllOfMatcher<Stmt, InitListExpr> initListExpr;
703 const internal::VariadicDynCastAllOfMatcher<Stmt, SubstNonTypeTemplateParmExp
2424 AST_POLYMORPHIC_MATCHER_P(equalsBoundNode, AST_POLYMORPHIC_SUPPORTED_TYPES_4( Stmt, Decl, Type, QualType), std::string, ID) argument
3556 AST_MATCHER_P_OVERLOAD(Stmt, equalsNode, const Stmt*, Other, 1) argument
[all...]
/external/clang/include/clang/Analysis/
H A DCFG.h18 #include "clang/AST/Stmt.h"
36 class Stmt;
117 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
119 const Stmt *getStmt() const {
120 return static_cast<const Stmt *>(Data1.getPointer());
196 CFGAutomaticObjDtor(const VarDecl *var, const Stmt *stmt)
204 const Stmt *getTriggerStmt() const {
205 return static_cast<Stmt*>(Data2.getPointer());
305 llvm::PointerIntPair<Stmt *, 1> Data;
308 CFGTerminator(Stmt *
[all...]
/external/clang/lib/AST/
H A DStmt.cpp1 //===--- Stmt.cpp - Statement AST Node Implementation ---------------------===//
10 // This file implements the Stmt class and statement subclasses.
18 #include "clang/AST/Stmt.h"
34 } StmtClassInfo[Stmt::lastStmtConstant+1];
36 static StmtClassNameTable &getStmtInfoTableEntry(Stmt::StmtClass E) {
45 StmtClassInfo[(unsigned)Stmt::CLASS##Class].Name = #CLASS; \
46 StmtClassInfo[(unsigned)Stmt::CLASS##Class].Size = sizeof(CLASS);
52 void *Stmt::operator new(size_t bytes, const ASTContext& C,
57 const char *Stmt::getStmtClassName() const {
61 void Stmt
139 implements_children(children_t Stmt::*) argument
148 implements_getLocStart(getLocStart_t Stmt::*) argument
157 implements_getLocEnd(getLocEnd_t Stmt::*) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGStmt.cpp10 // This contains code to emit Stmt nodes as LLVM code.
35 void CodeGenFunction::EmitStopPoint(const Stmt *S) {
45 void CodeGenFunction::EmitStmt(const Stmt *S) {
75 case Stmt::NoStmtClass:
76 case Stmt::CXXCatchStmtClass:
77 case Stmt::SEHExceptStmtClass:
78 case Stmt::SEHFinallyStmtClass:
79 case Stmt::MSDependentExistsStmtClass:
81 case Stmt::NullStmtClass:
82 case Stmt
1650 AddVariableConstraints(const std::string &Constraint, const Expr &AsmExpr, const TargetInfo &Target, CodeGenModule &CGM, const AsmStmt &Stmt) argument
[all...]
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp192 // which, process all the Stmt's in this block to find any recursive calls.
233 const Stmt *Body,
358 const Stmt *S = CS.getStmt();
500 static void CheckFallThroughForBody(Sema &S, const Decl *D, const Stmt *Body,
642 static void CreateIfFixit(Sema &S, const Stmt *If, const Stmt *Then,
643 const Stmt *Else, bool CondVal,
704 const Stmt *Term = I->Terminator;
720 switch (Term ? Term->getStmtClass() : Stmt::DeclStmtClass) {
727 case Stmt
902 markFallthroughVisited(const AttributedStmt *Stmt) argument
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp61 const Stmt *S;
66 RefState(Kind k, const Stmt *s, unsigned family)
78 const Stmt *getStmt() const { return S; }
84 static RefState getAllocated(unsigned family, const Stmt *s) {
87 static RefState getReleased(unsigned family, const Stmt *s) {
90 static RefState getRelinquished(unsigned family, const Stmt *s) {
189 void checkLocation(SVal l, bool isLoad, const Stmt *S,
220 AllocationFamily getAllocationFamily(CheckerContext &C, const Stmt *S) const;
293 bool checkUseAfterFree(SymbolRef Sym, CheckerContext &C, const Stmt *S) const;
324 const Stmt *AllocDeallocStm
384 isAllocated(const RefState *S, const RefState *SPrev, const Stmt *Stmt) argument
391 isReleased(const RefState *S, const RefState *SPrev, const Stmt *Stmt) argument
398 isRelinquished(const RefState *S, const RefState *SPrev, const Stmt *Stmt) argument
407 isReallocFailedCheck(const RefState *S, const RefState *SPrev, const Stmt *Stmt) argument
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DStmt.java12 public class Stmt { class
27 * Prepare the next SQL statement for the Stmt instance.
41 * Stmt s = db.prepare("select * from x; select * from y;");
/external/robolectric/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...

Completed in 998 milliseconds