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

1 2 3 4 56 7 8

  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 64 const Stmt *S = SP->getStmt();
77 const Stmt *CE = calleeCtx->getCallSite();
195 case Stmt::CallExprClass: {
SymbolManager.cpp 184 SymbolManager::getConjuredSymbol(const Stmt *E, const LocationContext *LCtx,
237 SymbolManager::getMetadataSymbol(const MemRegion* R, const Stmt *S, QualType T,
496 SymbolReaper::isLive(const Stmt *ExprVal, const LocationContext *ELCtx) const {
ExprEngineObjC.cpp 74 const Stmt *elem = S->getElement();
ProgramState.cpp 266 ProgramStateRef ProgramState::BindExpr(const Stmt *S,
281 ProgramState::bindExprAndLocation(const Stmt *S, const LocationContext *LCtx,
609 ProgramStateRef ProgramState::addTaint(const Stmt *S,
645 bool ProgramState::isTainted(const Stmt *S, const LocationContext *LCtx,
  /external/clang/tools/libclang/
IndexTypeSourceInfo.cpp 89 bool TraverseStmt(Stmt *S) {
CIndex.cpp 457 if (Stmt *S = getCursorStmt(Cursor))
524 if (Stmt *Body = B->getBody())
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 32 class Stmt;
185 const Stmt *getStmt() const;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SValBuilder.h 147 const SymbolConjured* getConjuredSymbol(const Stmt *stmt,
152 return SymMgr.getConjuredSymbol(stmt, LCtx, type, visitCount, symbolTag);
184 DefinedOrUnknownSVal getConjuredSymbolVal(const Stmt *stmt,
Store.h 25 class Stmt;
  /external/clang/lib/ARCMigrate/
TransUnbridgedCasts.cpp 59 void transformBody(Stmt *body) {
241 Stmt *parent = E;
ObjCMT.cpp 146 for (Stmt::child_range range = E->children(); range; ++range)
TransEmptyStatementsAndDealloc.cpp 178 void check(Stmt *S) {
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 200 virtual void observeStmt(const Stmt *S, const CFGBlock *block,
245 const Stmt *parent = Parents.getParentIgnoreParenCasts(U);
ObjCSelfInitChecker.cpp 71 void checkLocation(SVal location, bool isLoad, const Stmt *S,
330 const Stmt *S,
MacOSKeychainAPIChecker.cpp 105 const Stmt *getAllocationSite(const ExplodedNode *N, SymbolRef Sym,
511 const Stmt *
551 if (const Stmt *AllocStmt = getAllocationSite(N, AP.first, C))
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 441 if (Stmt *Body = FD->getBody()) BodyRange = Body->getSourceRange();
481 bool CodeGenFunction::ContainsLabel(const Stmt *S, bool IgnoreCaseStmts) {
503 for (Stmt::const_child_range I = S->children(); I; ++I)
513 bool CodeGenFunction::containsBreak(const Stmt *S) {
527 for (Stmt::const_child_range I = S->children(); I; ++I)
681 /// specified stmt yet.
682 void CodeGenFunction::ErrorUnsupported(const Stmt *S, const char *Type,
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h 28 #include "clang/AST/Stmt.h"
133 static inline StmtResult Owned(Stmt *S) { return S; }
317 StmtResult TransformStmt(Stmt *S);
531 TransformSEHHandler(Stmt *Handler);
577 #define STMT(Node, Parent) \
581 #define ABSTRACT_STMT(Stmt)
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 106 SubExprs = new (C) Stmt*[TotalSize];
183 Base(static_cast<Stmt *>(Base)), IsArrow(isArrow),
664 void *Mem = C.Allocate(sizeof(CXXDefaultArgExpr) + sizeof(Stmt *));
742 Args = new (C) Stmt*[NumArgs];
    [all...]
StmtPrinter.cpp 1 //===--- StmtPrinter.cpp - Printing implementation for Stmt ASTs ----------===//
10 // This file implements the Stmt::dumpPretty/Stmt::printPretty methods, which
44 void PrintStmt(Stmt *S) {
48 void PrintStmt(Stmt *S, int SubIndent) {
51 // If this is an expr used in a stmt context, indent and newline it.
85 void Visit(Stmt* S) {
91 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED {
92 Indent() << "<<unknown stmt type>>\n";
100 #define STMT(CLASS, PARENT)
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h 740 /// \brief When reading a Stmt tree, Stmt operands are placed in this stack.
741 SmallVector<Stmt *, 16> StmtStack;
783 Stmt *ReadStmtFromStream(ModuleFile &F);
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldDatabaseTest.java 29 import SQLite.Stmt;
633 Stmt s = db.prepare("select sin(res) from TEST WHERE res = ?");
705 Stmt stat = null;
814 String stmt = "create table TEST (res double);"; local
819 db.exec(stmt,t);
821 assertEquals(t.getTrace(),stmt); local
825 db.exec(stmt,t);
854 Stmt st = null;
855 Stmt st2 = null;
861 fail("stmt should not be prepared")
972 int stmt = 0; local
    [all...]
  /external/clang/lib/Serialization/
ASTWriterStmt.cpp 40 void VisitStmt(Stmt *S);
41 #define STMT(Type, Base) \
56 void ASTStmtWriter::VisitStmt(Stmt *S) {
    [all...]
ASTReaderStmt.cpp 1 //===--- ASTReaderStmt.cpp - Stmt/Expr Deserialization ----------*- C++ -*-===//
75 /// \brief The number of record fields required for the Stmt class
90 void VisitStmt(Stmt *S);
91 #define STMT(Type, Base) \
110 void ASTStmtReader::VisitStmt(Stmt *S) {
122 SmallVector<Stmt *, 16> Stmts;
302 SmallVector<Stmt*, 16> Exprs;
421 E->Exprs = new (Reader.getContext()) Stmt*[NumExprs];
514 assert(E->getStmtClass() == Stmt::MemberExprClass &&
770 new(Reader.getContext()) Stmt*[GenericSelectionExpr::END_EXPR+E->NumAssocs]
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 24 class Stmt;
169 Stmt *Body;
284 // Location information, modeled after the Stmt API.
407 virtual Stmt *getBody() const {
408 return (Stmt*) Body;
411 void setBody(Stmt *B) { Body = B; }
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]

Completed in 380 milliseconds

1 2 3 4 56 7 8