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

1 2 3 45 6 7 8 9

  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
SemaStmt.cpp 52 // Same thing in for stmt first clause (when expr) and third clause.
53 return Owned(static_cast<Stmt*>(FE.take()));
153 void Sema::DiagnoseUnusedExprResult(const Stmt *S) {
284 Stmt **Elts = elts.data();
367 void Sema::ActOnCaseStmtBody(Stmt *caseStmt, Stmt *SubStmt) {
376 Stmt *SubStmt, Scope *CurScope) {
391 SourceLocation ColonLoc, Stmt *SubStmt) {
411 Stmt *SubStmt) {
419 Stmt *thenStmt, SourceLocation ElseLoc
2717 CXXCatchStmt *stmt; member in class:__anon5902::TypeWithHandler
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 239 /// \brief Set of parent Stmts for the currently serializing sub stmt.
240 llvm::DenseSet<Stmt *> ParentStmts;
243 /// just after the stmt record.
244 llvm::DenseMap<Stmt *, uint64_t> SubStmtEntries;
353 SmallVector<Stmt *, 16> StmtsToEmit;
357 SmallVector<Stmt *, 16> *CollectedStmts;
413 void WriteSubStmt(Stmt *S,
414 llvm::DenseMap<Stmt *, uint64_t> &SubStmtEntries,
415 llvm::DenseSet<Stmt *> &ParentStmts);
667 void AddStmt(Stmt *S)
    [all...]
  /external/clang/tools/libclang/
IndexBody.cpp 163 void IndexingContext::indexBody(const Stmt *S, const NamedDecl *Parent,
170 BodyIndexer(*this, Parent, DC).TraverseStmt(const_cast<Stmt*>(S));
CXCursor.h 40 class Stmt;
56 CXCursor MakeCXCursor(const clang::Stmt *S, const clang::Decl *Parent,
246 const Stmt *getCursorStmt(CXCursor Cursor);
IndexDecl.cpp 56 const Stmt *Body = D->getBody();
83 const Stmt *Body = D->getBody();
296 const Stmt *Body = FD->getBody();
  /external/clang/include/clang/Analysis/FlowSensitive/
DataflowSolver.h 301 void ProcessStmt(const Stmt *S, bool record, dataflow::forward_analysis_tag) {
303 TF.BlockStmt_Visit(const_cast<Stmt*>(S));
306 void ProcessStmt(const Stmt *S, bool record, dataflow::backward_analysis_tag){
307 TF.BlockStmt_Visit(const_cast<Stmt*>(S));
  /external/clang/lib/StaticAnalyzer/Checkers/
LLVMConventionsChecker.cpp 76 return RD->getName() == "Stmt" && InNamespace(RD, "clang");
123 void VisitChildren(Stmt *S) {
124 for (Stmt::child_iterator I = S->child_begin(), E = S->child_end() ;
126 if (Stmt *child = *I)
129 void VisitStmt(Stmt *S) { VisitChildren(S); }
ObjCSelfInitChecker.cpp 69 void checkLocation(SVal location, bool isLoad, const Stmt *S,
71 void checkBind(SVal loc, SVal val, const Stmt *S, CheckerContext &C) const;
305 const Stmt *S,
320 void ObjCSelfInitChecker::checkBind(SVal loc, SVal val, const Stmt *S,
CheckSecuritySyntaxOnly.cpp 71 void VisitStmt(Stmt *S) { VisitChildren(S); }
73 void VisitChildren(Stmt *S);
100 void WalkAST::VisitChildren(Stmt *S) {
101 for (Stmt::child_iterator I = S->child_begin(), E = S->child_end(); I!=E; ++I)
102 if (Stmt *child = *I)
154 for (Stmt::child_iterator I = S->child_begin(), E = S->child_end(); I!=E; ++I)
155 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) {
  /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/AST/
StmtVisitor.h 1 //===--- StmtVisitor.h - Visitor for Stmt subclasses ------------*- C++ -*-===//
27 /// StmtVisitorBase - This class implements a simple visitor for Stmt
28 /// subclasses. Since Expr derives from Stmt, this also includes support for
38 RetTy Visit(PTR(Stmt) S) {
41 // optimizer (e.g. LLVM) will fold this comparison into the switch stmt
98 // Top switch stmt: dispatch to VisitFooStmt for each FooStmt.
100 default: llvm_unreachable("Unknown stmt kind!");
101 #define ABSTRACT_STMT(STMT)
102 #define STMT(CLASS, PARENT) \
103 case Stmt::CLASS ## Class: DISPATCH(CLASS, CLASS)
    [all...]
RecursiveASTVisitor.h 26 #include "clang/AST/Stmt.h"
82 /// the node's dynamic type, until the top-most class (e.g. Stmt,
94 /// TraverseStmt(Stmt *x) and TraverseType(QualType x) work
157 bool shouldUseDataRecursionFor(Stmt *S) const {
167 bool TraverseStmt(Stmt *S);
249 // Declare Traverse*() for all concrete Stmt classes.
250 #define ABSTRACT_STMT(STMT)
251 #define STMT(CLASS, PARENT) \
254 // The above header #undefs ABSTRACT_STMT and STMT upon exit.
256 // Define WalkUpFrom*() and empty Visit*() for all Stmt classes
    [all...]
ExternalASTSource.h 32 class Stmt;
113 virtual Stmt *GetExternalDeclStmt(uint64_t Offset);
525 typedef LazyOffsetPtr<Stmt, uint64_t, &ExternalASTSource::GetExternalDeclStmt>
  /external/clang/lib/ARCMigrate/
TransProtectedScope.cpp 67 Stmt *Parent = getCaseParent(Curr);
87 Stmt *getCaseParent(SwitchCase *S) {
88 Stmt *Parent = PMap.getParent(S);
TransformActions.cpp 49 Stmt *S;
114 llvm::DenseSet<Stmt *> StmtRemovals;
137 void removeStmt(Stmt *S);
140 void replaceStmt(Stmt *S, StringRef text);
160 void commitRemoveStmt(Stmt *S);
313 void TransformActionsImpl::removeStmt(Stmt *S) {
350 void TransformActionsImpl::replaceStmt(Stmt *S, StringRef text) {
449 void TransformActionsImpl::commitRemoveStmt(Stmt *S) {
638 void TransformActions::removeStmt(Stmt *S) {
651 void TransformActions::replaceStmt(Stmt *S, StringRef text)
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 70 Stmt *CurrentBody;
114 SmallVector<Stmt *, 32> Stmts;
142 llvm::DenseMap<Stmt *, Stmt *> ReplacedNodes;
198 void ReplaceStmt(Stmt *Old, Stmt *New) {
199 Stmt *ReplacingStmt = ReplacedNodes[Old];
218 void ReplaceStmtWithRange(Stmt *Old, Stmt *New, SourceRange SrcRange) {
300 Stmt *RewriteFunctionBodyOrGlobalInitializer(Stmt *S)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/
Checker.h 85 template <typename STMT>
88 static void _checkStmt(void *checker, const Stmt *S, CheckerContext &C) {
89 ((const CHECKER *)checker)->checkPreStmt(cast<STMT>(S), C);
92 static bool _handlesStmt(const Stmt *S) {
93 return isa<STMT>(S);
104 template <typename STMT>
107 static void _checkStmt(void *checker, const Stmt *S, CheckerContext &C) {
108 ((const CHECKER *)checker)->checkPostStmt(cast<STMT>(S), C);
111 static bool _handlesStmt(const Stmt *S) {
112 return isa<STMT>(S)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 268 bool CallEvent::isCallStmt(const Stmt *S) {
704 const Stmt *S = PM.getParent(getOriginExpr());
715 case Stmt::ObjCPropertyRefExprClass:
718 case Stmt::ObjCSubscriptRefExprClass:
932 const Stmt *CallSite = CalleeCtx->getCallSite();
939 case Stmt::CXXConstructExprClass:
940 case Stmt::CXXTemporaryObjectExprClass: {
    [all...]
ExprEngineCallAndReturn.cpp 67 static std::pair<const Stmt*,
69 const Stmt *S = 0;
108 return std::pair<const Stmt*, const CFGBlock*>((Stmt*)0, (CFGBlock*)0);
113 return std::pair<const Stmt*, const CFGBlock*>(S, Blk);
160 const Stmt *LastSt = 0;
226 const Stmt *CE = calleeCtx->getCallSite();
229 const Stmt *LastSt = 0;
468 const Stmt *CallE) {
611 if (const Stmt *Parent = CurLC->getParentMap().getParent(CtorExpr)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 39 class Stmt;
130 const Stmt *S;
155 PathDiagnosticLocation(const Stmt *s,
197 static PathDiagnosticLocation createBegin(const Stmt *S,
205 static PathDiagnosticLocation createEnd(const Stmt *S,
272 const Stmt *asStmt() const { assert(isValid()); return 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;
  /external/clang/include/clang/Sema/
MultiplexExternalSemaSource.h 79 virtual Stmt *GetExternalDeclStmt(uint64_t Offset);

Completed in 257 milliseconds

1 2 3 45 6 7 8 9