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

  /external/libchrome/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
59 // EXAMPLE OF Owned():
64 // Closure foo_callback = Bind(&foo, Owned(pn));
74 // Without Owned(), someone would have to know to delete |pn| when the last
446 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 133 static inline ExprResult Owned(Expr *E) { return E; }
134 static inline StmtResult Owned(Stmt *S) { return S; }
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 79 Owned = 0, // Owning reference.
80 NotOwned, // Reference is not owned by still valid (not freed).
85 ErrorDeallocNotOwned, // -dealloc called on non-owned object.
88 ErrorReleaseNotOwned, // Release of an object that was not owned.
180 return getKind() == Owned;
198 /// Most commonly, this is an owned object with a retain count of +1.
201 return RefVal(Owned, o, Count, 0, t, IvarAccessHistory::None);
274 case Owned: {
275 Out << "Owned";
311 Out << "-dealloc (not-owned)";
    [all...]

Completed in 215 milliseconds