/third_party/benchmark/test/ |
D | state_assembly_test.cc | 10 benchmark::State& GetState(); 19 State& S = GetState(); in test_for_auto_loop() 42 State& S = GetState(); in test_while_loop()
|
/third_party/grpc/test/cpp/end2end/ |
D | flaky_network_test.cc | 292 while ((state = channel->GetState(false /* try_to_connect */)) == in WaitForChannelNotReady() 303 while ((state = channel->GetState(true /* try_to_connect */)) != in WaitForChannelReady() 368 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_P() 390 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_P() 415 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_P() 437 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_P() 450 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_P() 485 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_P() 494 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_P() 511 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_P() [all …]
|
D | delegating_channel_test.cc | 51 grpc_connectivity_state GetState(bool /*try_to_connect*/) override { in GetState() function in grpc::testing::__anon3a7422510111::TestChannel 80 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_IDLE); in TEST_F() 81 EXPECT_EQ(test_channel->GetState(false), GRPC_CHANNEL_READY); in TEST_F()
|
D | client_lb_end2end_test.cc | 409 grpc_connectivity_state state = channel->GetState(try_to_connect); in WaitForChannelState() 468 EXPECT_EQ(channel->GetState(false /* try_to_connect */), GRPC_CHANNEL_IDLE); in TEST_F() 472 EXPECT_EQ(channel->GetState(true /* try_to_connect */), GRPC_CHANNEL_IDLE); in TEST_F() 475 EXPECT_EQ(channel->GetState(false /* try_to_connect */), in TEST_F() 715 channel_state = channel->GetState(true /* try to connect */); in TEST_F() 965 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_F() 970 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_IDLE); in TEST_F() 986 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_F() 1011 EXPECT_THAT(channel->GetState(false), in TEST_F() 1033 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_F() [all …]
|
D | cfstream_test.cc | 219 while ((state = channel->GetState(false /* try_to_connect */)) == in WaitForChannelNotReady() 230 while ((state = channel->GetState(true /* try_to_connect */)) != in WaitForChannelReady() 337 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_P() 362 EXPECT_EQ(channel->GetState(false), GRPC_CHANNEL_READY); in TEST_P()
|
D | grpclb_end2end_test.cc | 750 channel_->GetState(true /* try_to_connect */); in TEST_F() 819 EXPECT_EQ(GRPC_CHANNEL_IDLE, channel_->GetState(true)); in TEST_F() 823 while ((state = channel_->GetState(false)) != in TEST_F() 932 channel_->GetState(true /* try_to_connect */); in TEST_F() 1208 channel_->GetState(true /* try_to_connect */); in TEST_F() 1263 channel_->GetState(true /* try_to_connect */); in TEST_F() 1380 channel_->GetState(true /* try_to_connect */); in TEST_F() 1411 channel_->GetState(true /* try_to_connect */); in TEST_F() 1635 channel_->GetState(true); in TEST_F() 1696 channel_->GetState(true); in TEST_F()
|
/third_party/cef/libcef/browser/views/ |
D | button_impl.h | 33 cef_button_state_t GetState() override; 52 views::Button::ButtonState old_state = ParentClass::root_view()->GetState(); in SetState() 73 CEF_BUTTON_IMPL_T cef_button_state_t CEF_BUTTON_IMPL_D::GetState() { in GetState() function 75 return static_cast<cef_button_state_t>(ParentClass::root_view()->GetState()); in GetState()
|
D | button_view.h | 64 ParentClass::GetState() != views::Button::STATE_PRESSED) { in ButtonPressed()
|
/third_party/cef/libcef/browser/ |
D | download_item_impl.cc | 29 return const_value().GetState() == download::DownloadItem::IN_PROGRESS; in IsInProgress() 34 return const_value().GetState() == download::DownloadItem::COMPLETE; in IsComplete() 39 return const_value().GetState() == download::DownloadItem::CANCELLED; in IsCanceled()
|
D | download_manager_delegate.cc | 120 if (!item || item->GetState() != DownloadItem::IN_PROGRESS) in ChooseDownloadPath() 218 if (item && item->GetState() == DownloadItem::IN_PROGRESS) in DoCancel() 231 if (item && item->GetState() == DownloadItem::IN_PROGRESS) in DoPause()
|
/third_party/gptfdisk/ |
D | gdisk.cc | 34 if (theGPT.GetState() != use_gpt) in main() 41 if (theGPT.GetState() != use_gpt) in main()
|
D | cgdisk.cc | 68 if (theGPT.GetState() != use_gpt) { in main()
|
/third_party/grpc/include/grpcpp/impl/codegen/ |
D | intercepted_channel.h | 41 grpc_connectivity_state GetState(bool try_to_connect) override { in GetState() function 42 return channel_->GetState(try_to_connect); in GetState()
|
D | delegating_channel.h | 37 grpc_connectivity_state GetState(bool try_to_connect) override { in GetState() function 38 return delegate_channel()->GetState(try_to_connect); in GetState()
|
D | channel_interface.h | 76 virtual grpc_connectivity_state GetState(bool try_to_connect) = 0; 99 while ((state = GetState(true)) != GRPC_CHANNEL_READY) { in WaitForConnected()
|
/third_party/cef/libcef/browser/net_service/ |
D | resource_request_handler_wrapper.cc | 505 RequestState* state = GetState(request_id); in AllowCookieLoad() 529 RequestState* state = GetState(request_id); in ContinueWithLoadedCookies() 563 RequestState* state = GetState(request_id); in ShouldInterceptRequest() 606 RequestState* state = GetState(request_id); in ContinueShouldInterceptRequest() 685 RequestState* state = GetState(request_id); in ProcessResponseHeaders() 712 RequestState* state = GetState(request_id); in OnRequestResponse() 873 RequestState* state = GetState(request_id); in AllowCookieSave() 905 RequestState* state = GetState(request_id); in OnFilterResponseBody() 929 RequestState* state = GetState(request_id); in OnFilterError() 947 RequestState* state = GetState(request_id); in OnRequestComplete() [all …]
|
/third_party/cef/include/views/ |
D | cef_button.h | 69 virtual cef_button_state_t GetState() = 0;
|
/third_party/flutter/engine/flutter/shell/platform/common/cpp/ |
D | text_input_model.h | 76 std::unique_ptr<rapidjson::Document> GetState() const;
|
/third_party/cef/tests/ceftests/views/ |
D | button_unittest.cc | 34 EXPECT_EQ(CEF_BUTTON_STATE_NORMAL, button->GetState()); in VerifyButtonStyle() 36 EXPECT_EQ(CEF_BUTTON_STATE_HOVERED, button->GetState()); in VerifyButtonStyle() 38 EXPECT_EQ(CEF_BUTTON_STATE_PRESSED, button->GetState()); in VerifyButtonStyle() 40 EXPECT_EQ(CEF_BUTTON_STATE_DISABLED, button->GetState()); in VerifyButtonStyle()
|
/third_party/mingw-w64/mingw-w64-headers/direct-x/include/ |
D | mmstream.h | 146 virtual HRESULT STDMETHODCALLTYPE GetState( 200 HRESULT (STDMETHODCALLTYPE *GetState)( 241 #define IMultiMediaStream_GetState(This,pCurrentState) (This)->lpVtbl->GetState(This,pCurrentState) 269 return This->lpVtbl->GetState(This,pCurrentState);
|
/third_party/grpc/test/cpp/client/ |
D | destroy_grpclb_channel_with_active_connect_stress_test.cc | 95 channel->GetState(true /* try_to_connect */); in TryConnectAndDestroy()
|
/third_party/uboot/u-boot-2020.01/drivers/fpga/ |
D | ivm_core.c | 330 const char *GetState(unsigned char a_ucState) in GetState() function 681 debug("LDELAY %s ", GetState(ucState)); in ispVMCode() 683 debug("STATE %s;\n", GetState(ucState)); in ispVMCode() 787 printf("ENDDR %s;\n", GetState(g_ucEndDR)); in ispVMCode() 801 printf("ENDIR %s;\n", GetState(g_ucEndIR)); in ispVMCode() 2202 printf("LDELAY %s ", GetState(ucState)); in ispVMLCOUNT()
|
/third_party/mingw-w64/mingw-w64-headers/include/ |
D | audiopolicy.h | 281 virtual HRESULT STDMETHODCALLTYPE GetState( 332 HRESULT (STDMETHODCALLTYPE *GetState)( 385 #define IAudioSessionControl_GetState(This,pRetVal) (This)->lpVtbl->GetState(This,pRetVal) 407 return This->lpVtbl->GetState(This,pRetVal); 491 HRESULT (STDMETHODCALLTYPE *GetState)( 564 #define IAudioSessionControl2_GetState(This,pRetVal) (This)->lpVtbl->GetState(This,pRetVal) 592 return This->lpVtbl->GetState(This,pRetVal);
|
/third_party/grpc/include/grpcpp/ |
D | channel.h | 63 grpc_connectivity_state GetState(bool try_to_connect) override;
|
D | channel_impl.h | 65 grpc_connectivity_state GetState(bool try_to_connect) override;
|