Home
last modified time | relevance | path

Searched refs:CreateError (Results 1 – 5 of 5) sorted by relevance

/third_party/flutter/skia/third_party/externals/dawn/src/tests/unittests/
DResultTests.cpp60 auto CreateError = []() -> Result<void, int*> { in TEST() local
64 Result<void, int*> result = CreateError(); in TEST()
85 auto CreateError = []() -> Result<void, int*> { in TEST() local
89 Result<void, int*> result = CreateError(); in TEST()
111 auto CreateError = []() -> Result<float*, int*> { in TEST() local
115 Result<float*, int*> result = CreateError(); in TEST()
159 auto CreateError = []() -> Result<const float*, int*> { return {&dummyError}; }; in TEST() local
161 Result<const float*, int*> result = CreateError(); in TEST()
203 auto CreateError = []() -> Result<std::vector<float>, int*> { in TEST() local
207 Result<std::vector<float>, int*> result = CreateError(); in TEST()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
DResultTests.cpp99 auto CreateError = []() -> Result<void, int> { in TEST() local
103 Result<void, int> result = CreateError(); in TEST()
124 auto CreateError = []() -> Result<void, int> { return {}; }; in TEST() local
126 Result<void, int> result = CreateError(); in TEST()
148 auto CreateError = []() -> Result<float*, int> { in TEST() local
152 Result<float*, int> result = CreateError(); in TEST()
219 auto CreateError = []() -> Result<const float*, int> { in TEST() local
223 Result<const float*, int> result = CreateError(); in TEST()
265 auto CreateError = []() -> Result<Ref<AClass>, int> { in TEST() local
269 Result<Ref<AClass>, int> result = CreateError(); in TEST()
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_wire/client/
DBuffer.h33 static WGPUBuffer CreateError(Device* device);
DDevice.cpp196 return Buffer::CreateError(this); in CreateErrorBuffer()
DBuffer.cpp129 WGPUBuffer Buffer::CreateError(Device* device) { in CreateError() function in dawn_wire::client::Buffer