HomeSort by relevance Sort by last modified time
    Searched refs:Owned (Results 1 - 25 of 35) sorted by null

1 2

  /external/libchrome/base/
barrier_closure.cc 48 Owned(new BarrierInfo(num_callbacks_left, std::move(done_closure))));
critical_closure.h 64 Owned(new internal::CriticalClosure(std::move(closure))));
task_runner_util.h 46 std::move(reply), Owned(result)));
bind.h 365 // Owned() transfers ownership of an object to the Callback resulting from
368 // EXAMPLE OF Owned():
373 // Closure foo_callback = Bind(&foo, Owned(pn));
383 // Without Owned(), someone would have to know to delete |pn| when the last
386 static inline internal::OwnedWrapper<T> Owned(T* o) {
bind_unittest.cc 702 // Test Owned() support.
710 BindRepeating(&PolymorphicIdentity<DeleteCounter*>, Owned(counter));
720 BindRepeating(&DeleteCounter::VoidMethod0, Owned(counter));
734 BindOnce(&PolymorphicIdentity<DeleteCounter*>, Owned(counter));
742 BindOnce(&DeleteCounter::VoidMethod0, Owned(counter));
1470 auto owned = Owned(p); local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
JSON.h 87 /// It simulates DenseMap<ObjectKey, Value>. ObjectKey is a maybe-owned string.
485 /// - it's optimized for the string literal case (Owned == nullptr)
490 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) {
491 if (LLVM_UNLIKELY(!isUTF8(*Owned))) {
493 *Owned = fixUTF8(std::move(*Owned));
495 Data = *Owned;
510 if (C.Owned) {
511 Owned.reset(new std::string(*C.Owned));
    [all...]
  /external/grpc-grpc/src/csharp/Grpc.Core/Internal/
CStringSafeHandle.cs 23 /// Owned char* object.
  /external/libchrome/base/task/
cancelable_task_tracker.cc 86 // Owned by reply callback below.
96 BindOnce(&RunIfNotCanceledThenUntrack, Owned(flag), std::move(reply),
129 Bind(&IsCanceled, flag, Owned(untrack_and_delete_flag_runner));
cancelable_task_tracker.h 91 std::move(reply), Owned(result)));
cancelable_task_tracker_unittest.cc 76 return Bind(&RunChecker::Run, Owned(new RunChecker(location)));
  /external/libchrome/base/timer/
timer.cc 206 base::Owned(scheduled_task_)),
212 base::Owned(scheduled_task_)));
mock_timer_unittest.cc 74 base::Owned(has_weak_ptr)));
  /external/libchrome/base/task_scheduler/
post_task.h 59 // Tasks posted through functions below will run on threads owned by the
161 std::move(reply), Owned(result)));
  /external/libchrome/mojo/public/cpp/bindings/tests/
callback_helpers_unittest.cc 123 base::BindOnce(&SetBoolFromRawPtr, &a), base::Owned(b));
133 base::BindOnce(&SetBoolFromRawPtr, &a), base::Owned(b));
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
BitcodeReader.h 191 void setBufferOwned(bool Owned) { BufferOwned = Owned; }
  /external/libbrillo/brillo/http/
http_transport_curl.cc 221 FROM_HERE, base::Bind(error_callback, 0, base::Owned(error.release())));
247 FROM_HERE, base::Bind(error_callback, 0, base::Owned(error.release())));
459 base::Owned(error.release())));
473 base::Owned(error.release())));
http_utils.cc 140 0, base::Owned(error.release())));
293 FROM_HERE, base::Bind(error_callback, 0, base::Owned(error.release())));
http_request.cc 149 FROM_HERE, base::Bind(error_callback, 0, base::Owned(error.release())));
  /external/pdfium/core/fxcrt/
maybe_owned_unittest.cpp 83 TEST(MaybeOwned, Owned) {
  /external/libchrome/dbus/
object_proxy.cc 340 // PendingCallback instance is owned by libdbus.
397 base::Owned(response.release()),
398 base::Owned(error_response.release())));
  /external/clang/lib/Sema/
DeclSpec.cpp 664 Decl *Rep, bool Owned,
666 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned, Policy);
673 Decl *Rep, bool Owned,
687 TypeSpecOwned = Owned && Rep != nullptr;
    [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...]
  /external/libbrillo/brillo/streams/
stream_utils_unittest.cc 44 FROM_HERE, base::Bind(std::get<k>(args), base::Owned(error.release())));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Demangle/
MicrosoftDemangle.cpp 1115 StringView Owned = copyString(Name);
1116 memorizeString(Owned);
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 637 unsigned &DiagID, Decl *Rep, bool Owned,
645 unsigned &DiagID, Decl *Rep, bool Owned,
    [all...]

Completed in 1177 milliseconds

1 2