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

  /external/chromium_org/base/
bind_helpers.h 15 // The wrapper functions are base::Unretained(), base::Owned(), base::Passed(),
21 // Owned() transfers ownership of an object to the Callback resulting from
56 // EXAMPLE OF Owned():
61 // Closure foo_callback = Bind(&foo, Owned(pn));
71 // Without Owned(), someone would have to know to delete |pn| when the last
507 static inline internal::OwnedWrapper<T> Owned(T* o) {
  /external/clang/lib/Parse/
ParseDeclCXX.cpp     [all...]
ParseDecl.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplate.cpp     [all...]
SemaDeclCXX.cpp     [all...]
TreeTransform.h 132 static inline ExprResult Owned(Expr *E) { return E; }
133 static inline StmtResult Owned(Stmt *S) { return S; }
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 78 Owned = 0, // Owning reference.
79 NotOwned, // Reference is not owned by still valid (not freed).
84 ErrorDeallocNotOwned, // -dealloc called on non-owned object.
87 ErrorReleaseNotOwned, // Release of an object that was not owned.
163 return getKind() == Owned;
181 /// Most commonly, this is an owned object with a retain count of +1.
184 return RefVal(Owned, o, Count, 0, t);
257 case Owned: {
258 Out << "Owned";
294 Out << "-dealloc (not-owned)";
    [all...]

Completed in 227 milliseconds