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

  /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;");
  /external/clang/include/clang/Analysis/
CFG.h 18 #include "clang/AST/Stmt.h"
35 class Stmt;
108 CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
110 const Stmt *getStmt() const {
111 return static_cast<const Stmt *>(Data1.getPointer());
168 CFGAutomaticObjDtor(const VarDecl *var, const Stmt *stmt)
169 : CFGImplicitDtor(AutomaticObjectDtor, var, stmt) {}
176 const Stmt *getTriggerStmt() const {
177 return static_cast<Stmt*>(Data2.getPointer())
    [all...]
  /external/chromium_org/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/chromium_org/tools/gyp/pylib/gyp/
input.py 11 from compiler.ast import Stmt
165 assert isinstance(c1[1], Stmt)
    [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/AST/
Stmt.h 1 //===--- 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 - This represents one statement
    [all...]
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 

Completed in 1153 milliseconds