Home
last modified time | relevance | path

Searched defs:success (Results 1 – 25 of 1100) sorted by relevance

12345678910>>...44

/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/
DSurfaceEGL.cpp28 EGLBoolean success = mEGL->destroySurface(mSurface); in ~SurfaceEGL() local
41 EGLBoolean success = mEGL->swapBuffers(mSurface); in swap() local
51 EGLBoolean success; in swapWithDamage() local
79 EGLBoolean success = mEGL->presentationTimeANDROID(mSurface, time); in setPresentationTime() local
95 EGLBoolean success = mEGL->bindTexImage(mSurface, buffer); in bindTexImage() local
105 EGLBoolean success = mEGL->releaseTexImage(mSurface, buffer); in releaseTexImage() local
115 EGLBoolean success = mEGL->swapInterval(interval); in setSwapInterval() local
126 EGLBoolean success = mEGL->querySurface(mSurface, EGL_WIDTH, &value); in getWidth() local
134 EGLBoolean success = mEGL->querySurface(mSurface, EGL_HEIGHT, &value); in getHeight() local
148 EGLBoolean success = mEGL->querySurface(mSurface, EGL_SWAP_BEHAVIOR, &value); in getSwapBehavior() local
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/
DSurfaceEGL.cpp28 EGLBoolean success = mEGL->destroySurface(mSurface); in ~SurfaceEGL() local
41 EGLBoolean success = mEGL->swapBuffers(mSurface); in swap() local
53 EGLBoolean success; in swapWithDamage() local
81 EGLBoolean success = mEGL->presentationTimeANDROID(mSurface, time); in setPresentationTime() local
97 EGLBoolean success = mEGL->bindTexImage(mSurface, buffer); in bindTexImage() local
107 EGLBoolean success = mEGL->releaseTexImage(mSurface, buffer); in releaseTexImage() local
117 EGLBoolean success = mEGL->swapInterval(interval); in setSwapInterval() local
128 EGLBoolean success = mEGL->querySurface(mSurface, EGL_WIDTH, &value); in getWidth() local
136 EGLBoolean success = mEGL->querySurface(mSurface, EGL_HEIGHT, &value); in getHeight() local
150 EGLBoolean success = mEGL->querySurface(mSurface, EGL_SWAP_BEHAVIOR, &value); in getSwapBehavior() local
[all …]
/third_party/boost/libs/uuid/test/
Dmock_random.hpp54 void expect_next_call_success(bool success) in expect_next_call_success()
81 void expect_next_call_success(bool success) in expect_next_call_success()
156 void expect_next_call_success(bool success) in expect_next_call_success()
172 bool success = getrandom_next_result.front(); in mock_getrandom() local
200 void expect_next_call_success(bool success) in expect_next_call_success()
237 void expect_next_call_success(bool success) in expect_next_call_success()
252 bool success = posix_next_result.front(); in mockopen() local
268 bool success = posix_next_result.front(); in mockread() local
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
Dutil.cpp22 bool success = pp::numeric_lex_float(str, value); in atof_clamp() local
30 bool success = pp::numeric_lex_int(str, value); in atoi_clamp() local
38 bool success = pp::numeric_lex_int(str, value); in atou_clamp() local
/third_party/flutter/skia/third_party/externals/sdl/visualtest/src/linux/
Dlinux_process.c75 int success, status; in SDL_GetProcessExitStatus() local
108 int success; in SDL_IsProcessRunning() local
133 int success, status; in SDL_QuitProcess() local
168 int success, status; in SDL_KillProcess() local
/third_party/mesa3d/src/util/tests/format/
Du_format_test.c212 boolean success; in test_format_fetch_rgba() local
246 boolean success; in test_format_unpack_rgba() local
286 boolean success; in test_format_pack_rgba_float() local
365 boolean success; in test_format_unpack_rgba_8unorm() local
409 boolean success; in test_format_pack_rgba_8unorm() local
472 boolean success; in test_format_unpack_z_float() local
505 boolean success; in test_format_pack_z_float() local
544 boolean success; in test_format_unpack_z_32unorm() local
583 boolean success; in test_format_pack_z_32unorm() local
623 boolean success; in test_format_unpack_s_8uint() local
[all …]
/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/
Devent.pyx.pxi19 self, grpc_completion_type completion_type, bint success, object tag):
28 self, grpc_completion_type completion_type, bint success, object tag,
41 self, grpc_completion_type completion_type, bint success, object tag,
52 self, grpc_completion_type completion_type, bint success, object tag):
/third_party/grpc/src/csharp/Grpc.Core/Internal/
DINativeCall.cs25 …void OnUnaryResponseClient(bool success, ClientSideStatus receivedStatus, IBufferReader receivedMe… in OnUnaryResponseClient()
31 void OnReceivedStatusOnClient(bool success, ClientSideStatus receivedStatus); in OnReceivedStatusOnClient()
36 void OnReceivedMessage(bool success, IBufferReader receivedMessageReader); in OnReceivedMessage()
41 void OnReceivedResponseHeaders(bool success, Metadata responseHeaders); in OnReceivedResponseHeaders()
46 void OnSendCompletion(bool success); in OnSendCompletion()
51 void OnSendStatusFromServerCompletion(bool success); in OnSendStatusFromServerCompletion()
56 void OnReceivedCloseOnServer(bool success, bool cancelled); in OnReceivedCloseOnServer()
DAsyncCall.cs531 private void HandleReceivedResponseHeaders(bool success, Metadata responseHeaders) in HandleReceivedResponseHeaders()
540 …private void HandleUnaryResponse(bool success, ClientSideStatus receivedStatus, IBufferReader rece… in HandleUnaryResponse()
594 private void HandleFinished(bool success, ClientSideStatus receivedStatus) in HandleFinished()
647 …void IUnaryResponseClientCallback.OnUnaryResponseClient(bool success, ClientSideStatus receivedSta… in IUnaryResponseClientCallback.OnUnaryResponseClient()
654 …void IReceivedStatusOnClientCallback.OnReceivedStatusOnClient(bool success, ClientSideStatus recei… in IReceivedStatusOnClientCallback.OnReceivedStatusOnClient()
661 …void IReceivedResponseHeadersCallback.OnReceivedResponseHeaders(bool success, Metadata responseHea… in IReceivedResponseHeadersCallback.OnReceivedResponseHeaders()
DAsyncCallBase.cs248 protected void HandleSendFinished(bool success) in HandleSendFinished()
303 protected void HandleSendStatusFromServerFinished(bool success) in HandleSendStatusFromServerFinished()
329 protected void HandleReadFinished(bool success, IBufferReader receivedMessageReader) in HandleReadFinished()
380 void ISendCompletionCallback.OnSendCompletion(bool success) in ISendCompletionCallback.OnSendCompletion()
387 … void IReceivedMessageCallback.OnReceivedMessage(bool success, IBufferReader receivedMessageReader) in IReceivedMessageCallback.OnReceivedMessage()
/third_party/flutter/skia/third_party/externals/sdl/visualtest/src/windows/
Dwindows_process.c34 BOOL success; in SDL_LaunchProcess() local
113 BOOL success; in SDL_GetProcessExitStatus() local
147 BOOL success; in SDL_IsProcessRunning() local
240 BOOL success; in SDL_KillProcess() local
/third_party/skia/third_party/externals/dawn/src/common/
DResult.h299 Result<T*, E>::Result(T* success) : mPayload(detail::MakePayload(success, detail::Success)) { in Result()
341 T* success = detail::GetSuccessFromPayload<T>(mPayload); in AcquireSuccess() local
355 Result<const T*, E>::Result(const T* success) in Result()
394 T* success = detail::GetSuccessFromPayload<T>(mPayload); in AcquireSuccess() local
409 Result<Ref<T>, E>::Result(Ref<U>&& success) in Result()
454 Ref<T> success = AcquireRef(detail::GetSuccessFromPayload<T>(mPayload)); in AcquireSuccess() local
469 Result<T, E>::Result(T&& success) : mType(Success), mSuccess(std::move(success)) { in Result()
/third_party/libinput/test/
Dtest-utils.c303 bool success; in START_TEST() member
326 bool success; in START_TEST() local
350 bool success; in START_TEST() member
361 bool success; in START_TEST() local
389 bool success; in START_TEST() member
403 bool success; in START_TEST() local
438 bool success; in START_TEST() member
454 bool success; in START_TEST() local
478 bool success; in START_TEST() member
526 bool success; in START_TEST() local
[all …]
/third_party/flutter/skia/gm/
Dencode_platform.cpp65 bool success = SkPngEncoder::Encode(&buf, src, SkPngEncoder::Options()); in encode_data() local
69 bool success = SkJpegEncoder::Encode(&buf, src, SkJpegEncoder::Options()); in encode_data() local
73 bool success = SkWebpEncoder::Encode(&buf, src, SkWebpEncoder::Options()); in encode_data() local
/third_party/glslang/OGLCompilersDLL/
DInitializeDll.cpp125 bool success = true; in DetachThread() local
152 bool success = true; in DetachProcess() local
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/fact_manager/
Dfact_manager.cpp143 auto success = data_synonym_and_id_equation_facts_.MaybeAddFact( in AddFactDataSynonym() local
211 auto success = dead_block_facts_.MaybeAddFact(fact); in AddFactBlockIsDead() local
223 auto success = livesafe_function_facts_.MaybeAddFact(fact); in AddFactFunctionIsLivesafe() local
243 auto success = irrelevant_value_facts_.MaybeAddFact( in AddFactValueOfPointeeIsIrrelevant() local
252 auto success = irrelevant_value_facts_.MaybeAddFact( in AddFactIdIsIrrelevant() local
266 auto success = data_synonym_and_id_equation_facts_.MaybeAddFact( in AddFactIdEquation() local
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/fact_manager/
Dfact_manager.cpp143 auto success = data_synonym_and_id_equation_facts_.MaybeAddFact( in AddFactDataSynonym() local
211 auto success = dead_block_facts_.MaybeAddFact(fact); in AddFactBlockIsDead() local
223 auto success = livesafe_function_facts_.MaybeAddFact(fact); in AddFactFunctionIsLivesafe() local
243 auto success = irrelevant_value_facts_.MaybeAddFact( in AddFactValueOfPointeeIsIrrelevant() local
252 auto success = irrelevant_value_facts_.MaybeAddFact( in AddFactIdIsIrrelevant() local
266 auto success = data_synonym_and_id_equation_facts_.MaybeAddFact( in AddFactIdEquation() local
/third_party/spirv-tools/source/fuzz/fact_manager/
Dfact_manager.cpp143 auto success = data_synonym_and_id_equation_facts_.MaybeAddFact( in AddFactDataSynonym() local
211 auto success = dead_block_facts_.MaybeAddFact(fact); in AddFactBlockIsDead() local
223 auto success = livesafe_function_facts_.MaybeAddFact(fact); in AddFactFunctionIsLivesafe() local
243 auto success = irrelevant_value_facts_.MaybeAddFact( in AddFactValueOfPointeeIsIrrelevant() local
252 auto success = irrelevant_value_facts_.MaybeAddFact( in AddFactIdIsIrrelevant() local
266 auto success = data_synonym_and_id_equation_facts_.MaybeAddFact( in AddFactIdEquation() local
/third_party/flutter/skia/docs/examples/
DRegion_setRect_2.cpp7 auto debugster = [](const char* label, bool success, SkRegion& region) -> void { in draw()
13 bool success = region.setRect(1, 2, 3, 4); in draw() local
/third_party/grpc/test/cpp/qps/
Dqps_json_driver.cc125 bool* success) { in RunAndReport()
168 bool* success) { in GetCpuLoad()
180 bool* success) { in BinarySearch()
203 bool* success) { in SearchOfferedLoad()
263 bool success = true; in QpsDriver() local
/third_party/grpc/src/core/lib/surface/
Devent_string.cc38 static const char* errstr(int success) { return success ? "OK" : "ERROR"; } in errstr()
40 static void adderr(int success, std::vector<std::string>* buf) { in adderr()
/third_party/glib/gio/tests/
Dstream-rw_all.c32 gboolean success; in read_done() local
42 wait_for_read (gboolean success, in wait_for_read()
64 gboolean success; in write_done() local
74 wait_for_write (gboolean success, in wait_for_write()
/third_party/mesa3d/src/glx/tests/
Dquery_renderer_unittest.cpp289 Bool success = glXQueryRendererIntegerMESA(&dpy, 0, 0, in TEST_F() local
331 Bool success = in TEST_F() local
354 Bool success = in TEST_F() local
377 Bool success = in TEST_F() local
403 Bool success = in TEST_F() local
428 Bool success = in TEST_F() local
/third_party/boost/boost/callable_traits/detail/
Dsfinae_errors.hpp19 struct success { struct
20 static constexpr bool value = true;
21 struct _ { using type = T; };
/third_party/skia/tests/
DParsePathTest.cpp16 bool success = SkParsePath::FromSVGString(str.c_str(), &path2); in test_to_from() local
47 bool success = SkParsePath::FromSVGString(gRec[i].fStr, &path); in DEF_TEST() local
71 bool success = SkParsePath::FromSVGString("M 5", &path); in DEF_TEST() local
87 bool success = SkParsePath::FromSVGString(spec.c_str(), &path); in DEF_TEST() local

12345678910>>...44