HomeSort by relevance Sort by last modified time
    Searched refs:Stmt (Results 126 - 150 of 223) sorted by null

1 2 3 4 56 7 8 9

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 96 void HandleBranch(const Stmt *Cond, const Stmt *Term, const CFGBlock *B,
374 ExplodedNode *generateNode(const Stmt *S,
384 ExplodedNode *generateSink(const Stmt *S,
ProgramState.h 85 Environment Env; // Maps a Stmt to its current SVal.
214 ProgramStateRef BindExpr(const Stmt *S, const LocationContext *LCtx,
274 SVal getSVal(const Stmt *S, const LocationContext *LCtx) const;
276 SVal getSValAsScalarOrLoc(const Stmt *Ex, const LocationContext *LCtx) const;
320 ProgramStateRef addTaint(const Stmt *S, const LocationContext *LCtx,
332 bool isTainted(const Stmt *S, const LocationContext *LCtx,
690 inline SVal ProgramState::getSVal(const Stmt *Ex,
697 ProgramState::getSValAsScalarOrLoc(const Stmt *S,
CallEvent.h 160 SVal getSVal(const Stmt *S) const {
337 static bool isCallStmt(const Stmt *S);
679 CXXDestructorCall(const CXXDestructorDecl *DD, const Stmt *Trigger,
    [all...]
CheckerContext.h 194 SVal getSVal(const Stmt *S) const {
SValBuilder.h 144 const SymbolConjured* conjureSymbol(const Stmt *stmt,
149 return SymMgr.conjureSymbol(stmt, LCtx, type, visitCount, symbolTag);
181 DefinedOrUnknownSVal conjureSymbolVal(const Stmt *stmt,
  /external/javasqlite/src/main/java/SQLite/
Database.java 710 * @return a Stmt object
713 public Stmt prepare(String sql) throws SQLite.Exception {
715 Stmt stmt = new Stmt(); local
716 stmt_prepare(sql, stmt);
717 return stmt;
769 * @param stmt Stmt object
772 private native void stmt_prepare(String sql, Stmt stmt
    [all...]
  /external/clang/lib/AST/
Expr.cpp 184 // See also Stmt.cpp:{getLocStart(),getLocEnd()}.
207 case Stmt::NoStmtClass: llvm_unreachable("statement without class");
209 #define STMT(type, base) \
210 case Stmt::type##Class: llvm_unreachable(#type " is not an Expr"); break;
212 case Stmt::type##Class: return getExprLocImpl<type>(this, &type::getExprLoc);
    [all...]
Android.mk 70 Stmt.cpp \
StmtPrinter.cpp 1 //===--- StmtPrinter.cpp - Printing implementation for Stmt ASTs ----------===//
10 // This file implements the Stmt::dumpPretty/Stmt::printPretty methods, which
46 void PrintStmt(Stmt *S) {
50 void PrintStmt(Stmt *S, int SubIndent) {
53 // If this is an expr used in a stmt context, indent and newline it.
87 void Visit(Stmt* S) {
93 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED {
94 Indent() << "<<unknown stmt type>>\n";
102 #define STMT(CLASS, PARENT)
    [all...]
  /external/clang/include/clang/AST/
Decl.h 40 class Stmt;
617 Stmt *Value;
649 typedef llvm::PointerUnion4<Stmt *, EvaluatedStmt *,
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 144 class Stmt;
896 StmtResult Owned(Stmt* S) { return S; }
    [all...]
ScopeInfo.h 62 const Stmt *stmt; member in class:clang::sema::PossiblyUnreachableDiag
65 const Stmt *stmt)
66 : PD(PD), Loc(Loc), stmt(stmt) {}
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 71 Stmt *CurrentBody;
123 SmallVector<Stmt *, 32> Stmts;
162 llvm::DenseMap<Stmt *, Stmt *> ReplacedNodes;
235 void ReplaceStmt(Stmt *Old, Stmt *New) {
236 Stmt *ReplacingStmt = ReplacedNodes[Old];
255 void ReplaceStmtWithRange(Stmt *Old, Stmt *New, SourceRange SrcRange) {
342 Stmt *RewriteFunctionBodyOrGlobalInitializer(Stmt *S)
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 152 for (Stmt::child_range range = E->children(); range; ++range)
170 bool TraverseStmt(Stmt *S) {
Transforms.cpp 291 void mark(Stmt *S) {
304 void trans::clearRefsIn(Stmt *S, ExprSet &refs) {
308 void trans::collectRefs(ValueDecl *D, Stmt *S, ExprSet &refs) {
312 void trans::collectRemovables(Stmt *S, ExprSet &exprs) {
341 bool TraverseStmt(Stmt *rootS) {
TransUnbridgedCasts.cpp 65 Stmt *Body;
73 void transformBody(Stmt *body, Decl *ParentD) {
366 Stmt *parent = E;
  /external/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundCheckerV2.cpp 39 void checkLocation(SVal l, bool isLoad, const Stmt*S,
85 const Stmt* LoadS,
NSErrorChecker.cpp 161 void checkLocation(SVal loc, bool isLoad, const Stmt *S,
202 const Stmt *S,
ObjCUnusedIVarsChecker.cpp 33 static void Scan(IvarUsageMap& M, const Stmt *S) {
60 for (Stmt::const_child_iterator I=S->child_begin(),E=S->child_end(); I!=E;++I)
  /external/clang/tools/libclang/
CursorVisitor.h 262 void EnqueueWorkList(VisitorWorkList &WL, const Stmt *S);
263 LLVM_ATTRIBUTE_NOINLINE bool Visit(const Stmt *S);
IndexTypeSourceInfo.cpp 88 bool TraverseStmt(Stmt *S) {
RecursiveASTVisitor.h 26 #include "clang/AST/Stmt.h"
83 /// the node's dynamic type, until the top-most class (e.g. Stmt,
95 /// TraverseStmt(Stmt *x) and TraverseType(QualType x) work
160 bool TraverseStmt(Stmt *S);
242 // Declare Traverse*() for all concrete Stmt classes.
243 #define ABSTRACT_STMT(STMT)
244 #define STMT(CLASS, PARENT) \
247 // The above header #undefs ABSTRACT_STMT and STMT upon exit.
249 // Define WalkUpFrom*() and empty Visit*() for all Stmt classes.
250 bool WalkUpFromStmt(Stmt *S) { return getDerived().VisitStmt(S);
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldStmtTest.java 21 import SQLite.Stmt;
30 private Stmt st;
84 st = new Stmt();
105 fail("Cannot execute non prepared Stmt");
116 assertEquals("stmt already closed", expected.getMessage());
119 st = new Stmt();
122 st = new Stmt();
126 st = new Stmt();
149 assertEquals("stmt already closed", expected.getMessage());
152 st = new Stmt();
    [all...]
  /external/clang/lib/Rewrite/Core/
Rewriter.cpp 18 #include "clang/AST/Stmt.h"
327 /// ReplaceStmt - This replaces a Stmt/Expr with another, using the pretty
330 bool Rewriter::ReplaceStmt(Stmt *From, Stmt *To) {
346 std::string Rewriter::ConvertToString(Stmt *From) {
  /external/clang/lib/Sema/
MultiplexExternalSemaSource.cpp 69 Stmt *MultiplexExternalSemaSource::GetExternalDeclStmt(uint64_t Offset) {
71 if (Stmt *Result = Sources[i]->GetExternalDeclStmt(Offset))

Completed in 379 milliseconds

1 2 3 4 56 7 8 9