/external/skqp/tools/gpu/ |
TestContext.h | 61 virtual GrBackend backend() = 0;
|
GrContextFactory.cpp | 151 GrBackend backend = ContextTypeBackend(type); local 152 switch (backend) { 258 SkASSERT(testCtx && testCtx->backend() == backend); 291 context.fBackend = backend;
|
/external/skqp/tools/skqp/ |
gm_runner.h | 18 A Skia GM is a single rendering test that can be executed on any Skia backend Canvas. 78 @return a descriptive name for the backend. 96 std::tuple<float, Error> EvaluateGM(SkiaBackend backend,
|
/external/skia/tests/ |
DeferredDisplayListTest.cpp | 164 sk_sp<SkSurface> makeNonTextureable(GrContext* context, GrBackendTexture* backend) const { 170 *backend = gpu->createTestingOnlyBackendTexture(nullptr, fWidth, fHeight, 173 if (!backend->isValid() || !gpu->isTestingOnlyBackendTexture(*backend)) { 178 context, *backend, fOrigin, fSampleCount, fColorType, nullptr, nullptr); 181 gpu->deleteTestingOnlyBackendTexture(backend); 188 void cleanUpBackEnd(GrContext* context, GrBackendTexture* backend) const { 191 gpu->deleteTestingOnlyBackendTexture(backend); 297 GrBackendTexture backend; local 299 sk_sp<SkSurface> s = params.makeNonTextureable(context, &backend); [all...] |
/external/tensorflow/tensorflow/compiler/xla/tests/ |
xla_hlo_profile_test.cc | 125 Backend* backend = service->mutable_backend(); local 126 se::StreamExecutor* executor = backend->default_stream_executor(); 127 DeviceMemoryAllocator* allocator = backend->memory_allocator(); 128 auto* transfer_manager = backend->transfer_manager(); 133 lhs_arg_shape, allocator, backend->default_device_ordinal())); 140 rhs_arg_shape, allocator, backend->default_device_ordinal())); 155 Backend::StreamPtr stream_ptr, 156 backend->BorrowStream(backend->default_device_ordinal())) [all...] |
/external/google-benchmark/src/ |
re.h | 34 #error No regular expression backend was found! 67 #error No regular expression backend implementation available
|
/external/libcxx/utils/google-benchmark/src/ |
re.h | 34 #error No regular expression backend was found! 67 #error No regular expression backend implementation available
|
/external/skia/bench/ |
Benchmark.h | 52 enum Backend { 62 virtual bool isSuitableFor(Backend backend) { 63 return backend != kNonRendering_Backend;
|
MipMapBench.cpp | 30 bool isSuitableFor(Backend backend) override { 31 return kNonRendering_Backend == backend;
|
ReadPixBench.cpp | 87 bool isSuitableFor(Backend backend) override { 88 return backend == kNonRendering_Backend;
|
/external/skqp/bench/ |
Benchmark.h | 52 enum Backend { 62 virtual bool isSuitableFor(Backend backend) { 63 return backend != kNonRendering_Backend;
|
MipMapBench.cpp | 30 bool isSuitableFor(Backend backend) override { 31 return kNonRendering_Backend == backend;
|
ReadPixBench.cpp | 87 bool isSuitableFor(Backend backend) override { 88 return backend == kNonRendering_Backend;
|
/external/skqp/include/gpu/ |
GrBackendSurface.h | 21 // Creates an invalid backend texture. 65 GrBackend backend() const {return fBackend; } function in class:GrBackendTexture 67 // If the backend API is GL, this returns a pointer to the GrGLTextureInfo struct. Otherwise 72 // If the backend API is Vulkan, this returns a pointer to the GrVkImageInfo struct. Otherwise 77 // If the backend API is Mock, this returns a pointer to the GrMockTextureInfo struct. Otherwise 81 // Returns true if the backend texture has been initialized. 112 // Creates an invalid backend texture. 143 GrBackend backend() const {return fBackend; } function in class:GrBackendRenderTarget 145 // If the backend API is GL, this returns a pointer to the GrGLFramebufferInfo struct. Otherwise 150 // If the backend API is Vulkan, this returns a pointer to the GrVkImageInfo struct. Otherwis [all...] |
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
BatteryOptimizationPreferenceController.java | 56 DashboardFragment fragment, String packageName, PowerWhitelistBackend backend) { 61 mBackend = backend;
|
/packages/apps/Settings/src/com/android/settings/notification/ |
AllowSoundPreferenceController.java | 40 NotificationBackend backend) { 41 super(context, backend);
|
LightsPreferenceController.java | 36 public LightsPreferenceController(Context context, NotificationBackend backend) { 37 super(context, backend);
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue6036.go | 8 // Issue 6036: 6g's backend generates OINDREG with
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue6036.go | 8 // Issue 6036: 6g's backend generates OINDREG with
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/ |
re.h | 34 #error No regular expression backend was found! 67 #error No regular expression backend implementation available
|
/external/selinux/libselinux/src/ |
label.c | 212 struct selabel_handle *selabel_open(unsigned int backend, 218 if (backend >= ARRAY_SIZE(initfuncs)) { 223 if (!initfuncs[backend]) { 233 rec->backend = backend; 238 if ((*initfuncs[backend])(rec, opts, nopts)) { 276 * If the label backend does not support partial matching,
|
/external/guice/extensions/persist/lib/ |
hibernate-search.jar | |
/external/skia/tools/gpu/ |
GrContextFactory.cpp | 151 GrBackend backend = ContextTypeBackend(type); local 152 switch (backend) { 258 SkASSERT(testCtx && testCtx->backend() == backend); 291 context.fBackend = backend;
|
/external/autotest/client/common_lib/ |
software_manager.py | 9 implement the given backend class. 97 logging.debug('Package Manager backend: %s' % pm_supported) 106 uses the concept of a backend, a helper class that implements the set of 114 operating system running and initializes the appropriate backend. 119 self.backend = YumBackend() 121 self.backend = ZypperBackend() 123 self.backend = AptBackend() 137 return self.backend.check_installed(name, version, arch) 144 return self.backend.list_all() 153 return self.backend.list_files(name [all...] |
/external/skia/include/gpu/ |
GrBackendSurface.h | 21 // Creates an invalid backend format. 38 GrBackend backend() const {return fBackend; } function in class:GrBackendFormat 40 // If the backend API is GL, these return a pointer to the format and target. Otherwise 46 // If the backend API is Vulkan, this returns a pointer to a VkFormat. Otherwise 51 // If the backend API is Mock, this returns a pointer to a GrPixelConfig. Otherwise 55 // Returns true if the backend format has been initialized. 84 // Creates an invalid backend texture. 128 GrBackend backend() const {return fBackend; } function in class:GrBackendTexture 130 // If the backend API is GL, this returns a pointer to the GrGLTextureInfo struct. Otherwise 135 // If the backend API is Vulkan, this returns a pointer to the GrVkImageInfo struct. Otherwis 208 GrBackend backend() const {return fBackend; } function in class:GrBackendRenderTarget [all...] |