Searched defs:Stmt (Results 1 - 13 of 13) sorted by relevance

/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/libmojo/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/python/cpython2/Lib/compiler/
H A Dast.py1215 class Stmt(Node): class in inherits:Node
1229 return "Stmt(%s)" % (repr(self.nodes),)
/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());
304 llvm::PointerIntPair<Stmt *, 1> Data;
307 CFGTerminator(Stmt *
[all...]
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h124 typedef internal::Matcher<Stmt> StatementMatcher;
208 /// Usable as: Matcher<Decl>, Matcher<Stmt>, Matcher<TypeLoc>
210 AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt, TypeLoc)) {
229 /// Usable as: Matcher<Decl>, Matcher<Stmt>, Matcher<TypeLoc>
231 AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt, TypeLoc)) {
254 /// Usable as: Matcher<Decl>, Matcher<Stmt>, Matcher<TypeLoc>
256 AST_POLYMORPHIC_SUPPORTED_TYPES(Decl, Stmt, TypeLoc),
985 const internal::VariadicAllOfMatcher<Stmt> stmt;
996 Stmt,
1010 const internal::VariadicDynCastAllOfMatcher<Stmt, MemberExp
5082 AST_MATCHER_P_OVERLOAD(Stmt, equalsNode, const Stmt*, Other, 1) argument
[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.
19 #include "clang/AST/Stmt.h"
35 } StmtClassInfo[Stmt::lastStmtConstant+1];
37 static StmtClassNameTable &getStmtInfoTableEntry(Stmt::StmtClass E) {
46 StmtClassInfo[(unsigned)Stmt::CLASS##Class].Name = #CLASS; \
47 StmtClassInfo[(unsigned)Stmt::CLASS##Class].Size = sizeof(CLASS);
53 void *Stmt::operator new(size_t bytes, const ASTContext& C,
58 const char *Stmt::getStmtClassName() const {
62 void Stmt
166 implements_children(children_t Stmt::*) argument
175 implements_getLocStart(getLocStart_t Stmt::*) argument
184 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.
38 void CodeGenFunction::EmitStopPoint(const Stmt *S) {
48 void CodeGenFunction::EmitStmt(const Stmt *S) {
78 case Stmt::NoStmtClass:
79 case Stmt::CXXCatchStmtClass:
80 case Stmt::SEHExceptStmtClass:
81 case Stmt::SEHFinallyStmtClass:
82 case Stmt::MSDependentExistsStmtClass:
84 case Stmt::NullStmtClass:
85 case Stmt
1678 AddVariableConstraints(const std::string &Constraint, const Expr &AsmExpr, const TargetInfo &Target, CodeGenModule &CGM, const AsmStmt &Stmt, const bool EarlyClobber) argument
[all...]
H A DCGStmtOpenMP.cpp19 #include "clang/AST/Stmt.h"
1275 const Stmt &S, bool RequiresCleanup, const Expr *LoopCond,
2154 auto *Stmt = cast<CapturedStmt>(S.getAssociatedStmt())->getCapturedStmt(); local
2155 auto *CS = dyn_cast<CompoundStmt>(Stmt);
2157 auto &&CodeGen = [&S, Stmt, CS, &HasLastprivates](CodeGenFunction &CGF,
2185 auto BodyGen = [Stmt, CS, &S, &IV](CodeGenFunction &CGF) {
2215 CGF.EmitStmt(Stmt);
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp132 for (const Stmt *SubStmt : E->children())
169 // Process all the Stmt's in this block to find any calls to FD.
255 const Stmt *Body, AnalysisDeclContext &AC) {
372 const Stmt *S = CS.getStmt();
514 static void CheckFallThroughForBody(Sema &S, const Decl *D, const Stmt *Body,
650 static void CreateIfFixit(Sema &S, const Stmt *If, const Stmt *Then,
651 const Stmt *Else, bool CondVal,
711 const Stmt *Term = I->Terminator;
727 switch (Term ? Term->getStmtClass() : Stmt
908 markFallthroughVisited(const AttributedStmt *Stmt) argument
[all...]
/external/llvm/lib/Target/Hexagon/
H A DRDFGraph.h160 // - Stmt: Statement, members are reference nodes.
161 // - Block: Basic block, members are instruction nodes (i.e. Phi or Stmt).
242 Stmt = 0x0004 << 2, // 100 member in struct:llvm::rdf::NodeAttrs
278 return KB == Phi || KB == Stmt;
280 case Stmt:
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp67 const Stmt *S;
72 RefState(Kind k, const Stmt *s, unsigned family)
85 const Stmt *getStmt() const { return S; }
91 static RefState getAllocated(unsigned family, const Stmt *s) {
98 static RefState getReleased(unsigned family, const Stmt *s) {
101 static RefState getRelinquished(unsigned family, const Stmt *s) {
211 void checkLocation(SVal l, bool isLoad, const Stmt *S,
246 AllocationFamily getAllocationFamily(CheckerContext &C, const Stmt *S) const;
326 bool checkUseAfterFree(SymbolRef Sym, CheckerContext &C, const Stmt *S) const;
329 const Stmt *
427 isAllocated(const RefState *S, const RefState *SPrev, const Stmt *Stmt) argument
436 isReleased(const RefState *S, const RefState *SPrev, const Stmt *Stmt) argument
443 isRelinquished(const RefState *S, const RefState *SPrev, const Stmt *Stmt) argument
452 isReallocFailedCheck(const RefState *S, const RefState *SPrev, const Stmt *Stmt) argument
[all...]
/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.
57 /// Stmt - This represents one statement.
59 class LLVM_ALIGNAS(LLVM_PTR_SIZE) Stmt {
82 friend class Stmt;
301 /// Iterator for iterating over Stmt * arrays that contain only Expr *
303 /// This is needed because AST nodes use Stmt* arrays to store
306 : llvm::iterator_adaptor_base<ExprIterator, Stmt **,
309 ExprIterator(Stmt **I) : iterator_adaptor_base(I) {}
318 /// Const iterator for iterating over Stmt * array
339 explicit Stmt(StmtClass SC, EmptyShell) : Stmt(SC) {} function
342 Stmt(StmtClass SC) { function
[all...]
/external/robolectric/v1/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...

Completed in 566 milliseconds