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

  /external/clang/lib/Parse/
ParseDeclCXX.cpp     [all...]
ParseDecl.cpp     [all...]
  /external/clang/include/clang/Parse/
Parser.h 214 ExprResult Owned(ExprResult res) {
218 StmtResult Owned(StmtResult res) {
    [all...]
  /external/clang/lib/Sema/
SemaTemplate.cpp 396 return Owned(CXXDependentScopeMemberExpr::Create(Context,
413 return Owned(DependentScopeDeclRefExpr::Create(Context,
    [all...]
TreeTransform.h 127 static inline ExprResult Owned(Expr *E) { return E; }
128 static inline StmtResult Owned(Stmt *S) { return S; }
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 155 Owned = 0, // Owning reference.
156 NotOwned, // Reference is not owned by still valid (not freed).
161 ErrorDeallocNotOwned, // -dealloc called on non-owned object.
164 ErrorReleaseNotOwned, // Release of an object that was not owned.
199 return getKind() == Owned;
216 return RefVal(Owned, o, Count, 0, t);
266 case Owned: {
267 Out << "Owned";
303 Out << "-dealloc (not-owned)";
323 Out << "Release of Not-Owned [ERROR]"
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 744 ExprResult Owned(Expr* E) { return E; }
745 ExprResult Owned(ExprResult R) { return R; }
746 StmtResult Owned(Stmt* S) { return S; }
    [all...]

Completed in 242 milliseconds