HomeSort by relevance Sort by last modified time
    Searched refs:Stmt (Results 101 - 125 of 193) sorted by null

1 2 3 45 6 7 8

  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 168 const Stmt *S = CS.getStmt();
316 static void CheckFallThroughForBody(Sema &S, const Decl *D, const Stmt *Body,
830 const Stmt *Body = D->getBody();
854 .setAlwaysAdd(Stmt::BinaryOperatorClass)
855 .setAlwaysAdd(Stmt::BlockExprClass)
856 .setAlwaysAdd(Stmt::CStyleCastExprClass)
857 .setAlwaysAdd(Stmt::DeclRefExprClass)
858 .setAlwaysAdd(Stmt::ImplicitCastExprClass)
859 .setAlwaysAdd(Stmt::UnaryOperatorClass);
873 if (const Stmt *stmt = i->stmt
    [all...]
SemaChecking.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 77 void VisitStmt(Stmt *S) { VisitChildren(S); }
79 void VisitChildren(Stmt *S);
106 void WalkAST::VisitChildren(Stmt *S) {
107 for (Stmt::child_iterator I = S->child_begin(), E = S->child_end(); I!=E; ++I)
108 if (Stmt *child = *I)
160 for (Stmt::child_iterator I = S->child_begin(), E = S->child_end(); I!=E; ++I)
161 if (Stmt *child = *I) {
StreamChecker.cpp 31 const Stmt *S;
33 StreamState(Kind k, const Stmt *s) : K(k), S(s) {}
44 static StreamState getOpened(const Stmt *s) { return StreamState(Opened, s); }
45 static StreamState getClosed(const Stmt *s) { return StreamState(Closed, s); }
46 static StreamState getOpenFailed(const Stmt *s) {
49 static StreamState getEscaped(const Stmt *s) {
ArrayBoundCheckerV2.cpp 39 void checkLocation(SVal l, bool isLoad, const Stmt*S,
85 const Stmt* LoadS,
NSErrorChecker.cpp 160 void checkLocation(SVal loc, bool isLoad, const Stmt *S,
215 const Stmt *S,
  /external/clang/include/clang/Sema/
Sema.h 138 class Stmt;
847 StmtResult Owned(Stmt* S) { return S; }
    [all...]
ScopeInfo.h 55 const Stmt *stmt; member in class:clang::sema::PossiblyUnreachableDiag
58 const Stmt *stmt)
59 : PD(PD), Loc(Loc), stmt(stmt) {}
  /external/clang/lib/ARCMigrate/
TransformActions.cpp 48 Stmt *S;
113 llvm::DenseSet<Stmt *> StmtRemovals;
136 void removeStmt(Stmt *S);
139 void replaceStmt(Stmt *S, StringRef text);
159 void commitRemoveStmt(Stmt *S);
312 void TransformActionsImpl::removeStmt(Stmt *S) {
349 void TransformActionsImpl::replaceStmt(Stmt *S, StringRef text) {
448 void TransformActionsImpl::commitRemoveStmt(Stmt *S) {
637 void TransformActions::removeStmt(Stmt *S) {
650 void TransformActions::replaceStmt(Stmt *S, StringRef text)
    [all...]
Transforms.cpp 230 void mark(Stmt *S) {
243 void trans::clearRefsIn(Stmt *S, ExprSet &refs) {
247 void trans::collectRefs(ValueDecl *D, Stmt *S, ExprSet &refs) {
251 void trans::collectRemovables(Stmt *S, ExprSet &exprs) {
280 bool TraverseStmt(Stmt *rootS) {
  /external/clang/lib/Analysis/
UninitializedValues.cpp 375 void Visit(Stmt *s);
383 void ProcessUses(Stmt *s = 0);
416 Stmt *element = fs->getElement();
569 void TransferFunctions::Visit(clang::Stmt *s) {
576 void TransferFunctions::ProcessUses(Stmt *s) {
665 tf.Visit(const_cast<Stmt*>(cs->getStmt()));
ThreadSafety.cpp 424 std::vector<std::pair<Stmt*, Context> > SavedContexts;
465 Context getNextContext(unsigned &CtxIndex, Stmt *S, Context C) {
525 void saveContext(Stmt *S, Context C) {
794 VMapBuilder.Visit(const_cast<Stmt*>(CS->getStmt()));
834 if (const Stmt *S = CurrBlock->getTerminator()) {
    [all...]
  /external/clang/include/clang/AST/
ExternalASTSource.h 29 class Stmt;
110 virtual Stmt *GetExternalDeclStmt(uint64_t Offset);
514 typedef LazyOffsetPtr<Stmt, uint64_t, &ExternalASTSource::GetExternalDeclStmt>
Decl.h 31 class Stmt;
706 Stmt *Value;
738 typedef llvm::PointerUnion4<Stmt *, EvaluatedStmt *,
    [all...]
  /external/clang/tools/libclang/
IndexDecl.cpp 55 const Stmt *Body = D->getBody();
82 const Stmt *Body = D->getBody();
282 const Stmt *Body = FD->getBody();
CursorVisitor.h 251 void EnqueueWorkList(VisitorWorkList &WL, Stmt *S);
252 LLVM_ATTRIBUTE_NOINLINE bool Visit(Stmt *S);
  /external/v8/tools/gcmole/
gcmole.cc 790 ExprEffect Seq(clang::Stmt* parent,
874 Environment VisitStmt(clang::Stmt* stmt, const Environment& env) {
876 clang::type* concrete_stmt = dyn_cast_or_null<clang::type>(stmt); \
882 if (clang::Expr* expr = dyn_cast_or_null<clang::Expr>(stmt)) {
911 Environment Visit##type (clang::type* stmt, const Environment& env)
914 Environment Visit##type (clang::type* stmt, const Environment& env) { \
971 void Seq(clang::Stmt* a, clang::Stmt* b, clang::Stmt* c)
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldFunctionContextTest.java 23 import SQLite.Stmt;
104 Stmt st = null;
140 Stmt st = null;
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/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 98 // See also Stmt.cpp:{getLocStart(),getLocEnd()}.
121 case Stmt::NoStmtClass: llvm_unreachable("statement without class");
123 #define STMT(type, base) \
124 case Stmt::type##Class: llvm_unreachable(#type " is not an Expr"); break;
126 case Stmt::type##Class: return getExprLocImpl<type>(this, &type::getExprLoc);
805 SubExprs = new (C) Stmt*[numargs+PREARGS_START+NumPreArgs];
833 SubExprs = new (C) Stmt*[numargs+PREARGS_START];
855 SubExprs = new (C) Stmt*[PREARGS_START];
863 SubExprs = new (C) Stmt*[PREARGS_START+NumPreArgs];
910 Stmt **NewSubExprs = new (C) Stmt*[NumArgs+PREARGS_START+NumPreArgs]
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 84 Environment Env; // Maps a Stmt to its current SVal.
195 ProgramStateRef BindExpr(const Stmt *S, const LocationContext *LCtx,
200 ProgramStateRef bindExprAndLocation(const Stmt *S,
248 SVal getSVal(const Stmt *S, const LocationContext *LCtx,
251 SVal getSValAsScalarOrLoc(const Stmt *Ex, const LocationContext *LCtx) const;
295 ProgramStateRef addTaint(const Stmt *S, const LocationContext *LCtx,
307 bool isTainted(const Stmt *S, const LocationContext *LCtx,
663 inline SVal ProgramState::getSVal(const Stmt *Ex, const LocationContext *LCtx,
671 ProgramState::getSValAsScalarOrLoc(const Stmt *S,
CoreEngine.h 100 void HandleBranch(const Stmt *Cond, const Stmt *Term, const CFGBlock *B,
371 ExplodedNode *generateNode(const Stmt *S,
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 39 class Stmt;
104 const Stmt *S;
131 PathDiagnosticLocation(const Stmt *s,
162 static PathDiagnosticLocation createBegin(const Stmt *S,
229 const Stmt *asStmt() const { assert(isValid()); return S; }
  /external/clang/lib/Rewrite/
Rewriter.cpp 16 #include "clang/AST/Stmt.h"
322 /// ReplaceStmt - This replaces a Stmt/Expr with another, using the pretty
325 bool Rewriter::ReplaceStmt(Stmt *From, Stmt *To) {
341 std::string Rewriter::ConvertToString(Stmt *From) {

Completed in 8199 milliseconds

1 2 3 45 6 7 8