Home
last modified time | relevance | path

Searched refs:isOwned (Results 1 – 25 of 43) sorted by relevance

12

/external/catch2/projects/SelfTest/IntrospectiveTests/
DString.tests.cpp11 static auto isOwned( StringRef const& stringRef ) -> bool { in isOwned() function
12 return stringRef.isOwned(); in isOwned()
21 auto isOwned( StringRef const& stringRef ) -> bool { in isOwned() function
22 return StringRefTestAccess::isOwned( stringRef ); in isOwned()
34 using Catch::isOwned; using Catch::isSubstring;
53 REQUIRE( isOwned( s ) == false );
57 REQUIRE( isOwned( s ) == false );
64 REQUIRE( isOwned( original ) == false );
69 REQUIRE( isOwned( original ) );
85 REQUIRE( isOwned( ss ) == false );
[all …]
/external/skqp/src/gpu/vk/
DGrVkSemaphore.cpp19 sk_sp<GrVkSemaphore> GrVkSemaphore::Make(GrVkGpu* gpu, bool isOwned) { in Make() argument
29 return sk_sp<GrVkSemaphore>(new GrVkSemaphore(gpu, semaphore, false, false, isOwned)); in Make()
46 bool prohibitWait, bool isOwned) in GrVkSemaphore() argument
48 fResource = new Resource(semaphore, prohibitSignal, prohibitWait, isOwned); in GrVkSemaphore()
49 isOwned ? this->registerWithCache(SkBudgeted::kNo) in GrVkSemaphore()
DGrVkSemaphore.h22 static sk_sp<GrVkSemaphore> Make(GrVkGpu* gpu, bool isOwned);
35 Resource(VkSemaphore semaphore, bool prohibitSignal, bool prohibitWait, bool isOwned) in Resource() argument
40 , fIsOwned(isOwned) {} in Resource()
90 bool isOwned);
/external/skia/src/gpu/vk/
DGrVkSemaphore.h22 static std::unique_ptr<GrVkSemaphore> Make(GrVkGpu* gpu, bool isOwned);
37 Resource(VkSemaphore semaphore, bool prohibitSignal, bool prohibitWait, bool isOwned) in Resource() argument
42 , fIsOwned(isOwned) {} in Resource()
86 bool isOwned);
DGrVkSemaphore.cpp19 std::unique_ptr<GrVkSemaphore> GrVkSemaphore::Make(GrVkGpu* gpu, bool isOwned) { in Make() argument
33 return std::unique_ptr<GrVkSemaphore>(new GrVkSemaphore(gpu, semaphore, false, false, isOwned)); in Make()
51 bool prohibitWait, bool isOwned) in GrVkSemaphore() argument
53 fResource = new Resource(semaphore, prohibitSignal, prohibitWait, isOwned); in GrVkSemaphore()
/external/skqp/src/gpu/gl/
DGrGLSemaphore.cpp12 GrGLSemaphore::GrGLSemaphore(GrGLGpu* gpu, bool isOwned) in GrGLSemaphore() argument
13 : INHERITED(gpu), fSync(0), fIsOwned(isOwned) { in GrGLSemaphore()
14 isOwned ? this->registerWithCache(SkBudgeted::kNo) in GrGLSemaphore()
DGrGLSemaphore.h19 static sk_sp<GrGLSemaphore> Make(GrGLGpu* gpu, bool isOwned) { in Make() argument
20 return sk_sp<GrGLSemaphore>(new GrGLSemaphore(gpu, isOwned)); in Make()
42 GrGLSemaphore(GrGLGpu* gpu, bool isOwned);
/external/skia/src/gpu/gl/
DGrGLSemaphore.h19 static std::unique_ptr<GrGLSemaphore> Make(GrGLGpu* gpu, bool isOwned) { in Make() argument
20 return std::unique_ptr<GrGLSemaphore>(new GrGLSemaphore(gpu, isOwned)); in Make()
44 GrGLSemaphore(GrGLGpu* gpu, bool isOwned);
DGrGLSemaphore.cpp12 GrGLSemaphore::GrGLSemaphore(GrGLGpu* gpu, bool isOwned) in GrGLSemaphore() argument
13 : fGpu(gpu), fSync(0), fIsOwned(isOwned) { in GrGLSemaphore()
/external/catch2/include/internal/
Dcatch_stringref.cpp50 auto StringRef::isOwned() const noexcept -> bool { in isOwned() function in Catch::StringRef
58 if( !isOwned() ) { in takeOwnership()
Dcatch_stringref.h110 auto isOwned() const noexcept -> bool;
/external/skia/tests/
DTraceMemoryDumpTest.cpp58 bool isOwned) { in ValidateMemoryDumps() argument
67 if (isOwned) { in ValidateMemoryDumps()
/external/skqp/tests/
DTraceMemoryDumpTest.cpp56 bool isOwned) { in ValidateMemoryDumps() argument
65 if (isOwned) { in ValidateMemoryDumps()
/external/scudo/standalone/tests/
Dcombined_test.cpp80 EXPECT_FALSE(Allocator->isOwned(&Mutex)); in testAllocator()
81 EXPECT_FALSE(Allocator->isOwned(&Allocator)); in testAllocator()
83 EXPECT_FALSE(Allocator->isOwned(&StackVariable)); in testAllocator()
100 EXPECT_TRUE(Allocator->isOwned(P)); in testAllocator()
/external/clang/include/clang/StaticAnalyzer/Checkers/
DObjCRetainCount.h165 bool isOwned() const { in isOwned() function
/external/skqp/src/gpu/mock/
DGrMockGpu.h38 sk_sp<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned) override { in makeSemaphore() argument
/external/skqp/src/gpu/
DGrResourceProvider.cpp448 sk_sp<GrSemaphore> SK_WARN_UNUSED_RESULT GrResourceProvider::makeSemaphore(bool isOwned) { in makeSemaphore() argument
449 return fGpu->makeSemaphore(isOwned); in makeSemaphore()
DGrResourceProvider.h235 sk_sp<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned = true);
/external/skia/src/gpu/mock/
DGrMockGpu.h37 std::unique_ptr<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned) override { in makeSemaphore() argument
/external/skia/src/gpu/d3d/
DGrD3DGpu.h58 std::unique_ptr<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned) override { in makeSemaphore() argument
/external/skqp/src/gpu/mtl/
DGrMtlGpu.h105 sk_sp<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned) override { in makeSemaphore() argument
/external/skia/src/gpu/dawn/
DGrDawnGpu.h90 std::unique_ptr<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned = true) override;
/external/skia/src/gpu/
DGrResourceProvider.h285 std::unique_ptr<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned = true);
DGrResourceProvider.cpp542 bool isOwned) { in makeSemaphore() argument
543 return this->isAbandoned() ? nullptr : fGpu->makeSemaphore(isOwned); in makeSemaphore()
/external/skia/src/gpu/mtl/
DGrMtlGpu.h95 std::unique_ptr<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned) override;

12