HomeSort by relevance Sort by last modified time
    Searched defs:Stmt (Results 1 - 25 of 51) sorted by null

1 2 3

  /build/kati/
stmt.cc 17 #include "stmt.h"
24 Stmt::Stmt() {}
26 Stmt::~Stmt() {}
stmt.h 50 struct Stmt {
52 virtual ~Stmt();
63 Stmt();
70 struct RuleStmt : public Stmt {
82 struct AssignStmt : public Stmt {
102 struct CommandStmt : public Stmt {
113 struct IfStmt : public Stmt {
117 vector<Stmt*> true_stmts;
118 vector<Stmt*> false_stmts;
127 struct IncludeStmt : public Stmt {
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Stmt.java 12 public class Stmt {
27 * Prepare the next SQL statement for the Stmt instance.
41 * Stmt s = db.prepare("select * from x; select * from y;");
  /prebuilts/go/darwin-x86/src/database/sql/driver/
driver.go 193 Prepare(query string) (Stmt, error)
216 PrepareContext(ctx context.Context, query string) (Stmt, error)
274 // Stmt is a prepared statement. It is bound to a Conn and not
276 type Stmt interface {
279 // As of Go 1.1, a Stmt will not be closed if it's in use
307 // StmtExecContext enhances the Stmt interface by providing Exec with context.
316 // StmtQueryContext enhances the Stmt interface by providing Query with context.
331 // NamedValueChecker may be optionally implemented by Conn or Stmt. It provides
336 // stopping at the first found match: Stmt.NamedValueChecker, Conn.NamedValueChecker,
337 // Stmt.ColumnConverter, DefaultParameterConverter
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/driver/
driver.go 193 Prepare(query string) (Stmt, error)
216 PrepareContext(ctx context.Context, query string) (Stmt, error)
274 // Stmt is a prepared statement. It is bound to a Conn and not
276 type Stmt interface {
279 // As of Go 1.1, a Stmt will not be closed if it's in use
307 // StmtExecContext enhances the Stmt interface by providing Exec with context.
316 // StmtQueryContext enhances the Stmt interface by providing Query with context.
331 // NamedValueChecker may be optionally implemented by Conn or Stmt. It provides
336 // stopping at the first found match: Stmt.NamedValueChecker, Conn.NamedValueChecker,
337 // Stmt.ColumnConverter, DefaultParameterConverter
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
nodes.go 309 Stmt interface {
315 Stmt
325 Stmt Stmt
326 stmt
330 List []Stmt
332 stmt
347 stmt
364 Target Stmt
365 stmt
440 type stmt struct{ node } type
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
ast.go 46 // All statement nodes implement the Stmt interface.
47 type Stmt interface {
576 Stmt Stmt
640 List []Stmt
647 Init Stmt // initialization statement; or nil
650 Else Stmt // else branch; or nil
658 Body []Stmt // statement list; or nil
664 Init Stmt // initialization statement; or nil
672 Init Stmt // initialization statement; or ni
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
nodes.go 309 Stmt interface {
315 Stmt
325 Stmt Stmt
326 stmt
330 List []Stmt
332 stmt
347 stmt
364 Target Stmt
365 stmt
440 type stmt struct{ node } type
    [all...]
  /prebuilts/go/linux-x86/src/go/ast/
ast.go 46 // All statement nodes implement the Stmt interface.
47 type Stmt interface {
576 Stmt Stmt
640 List []Stmt
647 Init Stmt // initialization statement; or nil
650 Else Stmt // else branch; or nil
658 Body []Stmt // statement list; or nil
664 Init Stmt // initialization statement; or nil
672 Init Stmt // initialization statement; or ni
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
ast.py     [all...]
  /external/libmojo/third_party/jinja2/
nodes.py 111 - :class:`Stmt`: statements
246 class Stmt(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/
ast.py 1215 class Stmt(Node):
1229 return "Stmt(%s)" % (repr(self.nodes),)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
ast.py 1215 class Stmt(Node):
1229 return "Stmt(%s)" % (repr(self.nodes),)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
ast.py 1215 class Stmt(Node):
1229 return "Stmt(%s)" % (repr(self.nodes),)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 1215 class Stmt(Node):
1229 return "Stmt(%s)" % (repr(self.nodes),)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 1215 class Stmt(Node):
1229 return "Stmt(%s)" % (repr(self.nodes),)
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 18 #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)
197 : CFGImplicitDtor(AutomaticObjectDtor, var, stmt) {}
204 const Stmt *getTriggerStmt() const {
205 return static_cast<Stmt*>(Data2.getPointer())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/
CFG.h 18 #include "clang/AST/Stmt.h"
37 class Stmt;
118 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
120 const Stmt *getStmt() const {
121 return static_cast<const Stmt *>(Data1.getPointer());
197 CFGAutomaticObjDtor(const VarDecl *var, const Stmt *stmt)
198 : CFGImplicitDtor(AutomaticObjectDtor, var, stmt) {}
205 const Stmt *getTriggerStmt() const {
206 return static_cast<Stmt*>(Data2.getPointer())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Analysis/
CFG.h 18 #include "clang/AST/Stmt.h"
37 class Stmt;
118 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
120 const Stmt *getStmt() const {
121 return static_cast<const Stmt *>(Data1.getPointer());
197 CFGAutomaticObjDtor(const VarDecl *var, const Stmt *stmt)
198 : CFGImplicitDtor(AutomaticObjectDtor, var, stmt) {}
205 const Stmt *getTriggerStmt() const {
206 return static_cast<Stmt*>(Data2.getPointer())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Analysis/
CFG.h 18 #include "clang/AST/Stmt.h"
37 class Stmt;
118 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
120 const Stmt *getStmt() const {
121 return static_cast<const Stmt *>(Data1.getPointer());
197 CFGAutomaticObjDtor(const VarDecl *var, const Stmt *stmt)
198 : CFGImplicitDtor(AutomaticObjectDtor, var, stmt) {}
205 const Stmt *getTriggerStmt() const {
206 return static_cast<Stmt*>(Data2.getPointer())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Analysis/
CFG.h 18 #include "clang/AST/Stmt.h"
37 class Stmt;
120 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
122 const Stmt *getStmt() const {
123 return static_cast<const Stmt *>(Data1.getPointer());
180 explicit CFGLoopExit(const Stmt *stmt)
181 : CFGElement(LoopExit, stmt) {}
183 const Stmt *getLoopStmt() const {
184 return static_cast<Stmt *>(Data1.getPointer())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Analysis/
CFG.h 18 #include "clang/AST/Stmt.h"
37 class Stmt;
120 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
122 const Stmt *getStmt() const {
123 return static_cast<const Stmt *>(Data1.getPointer());
180 explicit CFGLoopExit(const Stmt *stmt)
181 : CFGElement(LoopExit, stmt) {}
183 const Stmt *getLoopStmt() const {
184 return static_cast<Stmt *>(Data1.getPointer())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Analysis/
CFG.h 18 #include "clang/AST/Stmt.h"
37 class Stmt;
120 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
122 const Stmt *getStmt() const {
123 return static_cast<const Stmt *>(Data1.getPointer());
180 explicit CFGLoopExit(const Stmt *stmt)
181 : CFGElement(LoopExit, stmt) {}
183 const Stmt *getLoopStmt() const {
184 return static_cast<Stmt *>(Data1.getPointer())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Analysis/
CFG.h 18 #include "clang/AST/Stmt.h"
37 class Stmt;
120 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
122 const Stmt *getStmt() const {
123 return static_cast<const Stmt *>(Data1.getPointer());
180 explicit CFGLoopExit(const Stmt *stmt)
181 : CFGElement(LoopExit, stmt) {}
183 const Stmt *getLoopStmt() const {
184 return static_cast<Stmt *>(Data1.getPointer())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/
CFG.h 18 #include "clang/AST/Stmt.h"
37 class Stmt;
118 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
120 const Stmt *getStmt() const {
121 return static_cast<const Stmt *>(Data1.getPointer());
197 CFGAutomaticObjDtor(const VarDecl *var, const Stmt *stmt)
198 : CFGImplicitDtor(AutomaticObjectDtor, var, stmt) {}
205 const Stmt *getTriggerStmt() const {
206 return static_cast<Stmt*>(Data2.getPointer())
    [all...]

Completed in 1276 milliseconds

1 2 3