Home
last modified time | relevance | path

Searched refs:Client (Results 1 – 25 of 40) sorted by relevance

12

/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DClangdLSPServerTests.cpp53 return Client; in start()
60 Client.stop(); in stop()
102 LSPClient Client; member in clang::clangd::__anon7e5ef16f0111::LSPTest
111 auto &Client = start(); in TEST_F() local
124 auto &Client = start(); in TEST_F() local
141 auto &Client = start(); in TEST_F() local
152 Client.notify( in TEST_F()
160 Client.notify( in TEST_F()
171 auto &Client = start(); in TEST_F() local
188 auto Items = Client in TEST_F()
[all …]
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/
H A Dsetup.py75 Client = client.Client()
79 Client.CreateProcessAndAttach2(binfile)
82 sym_opts = Client.Symbols.GetSymbolOptions()
84 Client.Symbols.SetSymbolOptions(sym_opts)
87 res = Client.Control.WaitForEvent(timeout=1000)
95 Client.Control.Execute("l+t")
97 Client.Control.SetExpressionSyntax(cpp=True)
112 res = Client.Control.WaitForEvent(timeout=5000)
117 break_on_all_but_main(Client.Control, Client.Symbols, offset)
121 filts = Client.Control.GetNumberEventFilters()
[all …]
H A Dprobe_process.py72 def probe_state(Client): argument
74 frames, numframes = Client.Control.GetStackTraceEx()
76 the_frames = [Frame(frames[x], x, Client.Symbols) for x in range(numframes)]
77 if not main_on_stack(Client.Symbols, the_frames):
/llvm-project-15.0.7/lldb/unittests/tools/lldb-server/tests/
H A DLLGSTest.cpp30 auto &Client = **ClientOr; in TEST_F() local
32 ASSERT_THAT_ERROR(Client.ContinueAll(), Succeeded()); in TEST_F()
34 Client.GetLatestStopReplyAs<StopReplyExit>(), in TEST_F()
48 auto &Client = **ClientOr; in TEST_F() local
50 ASSERT_THAT_ERROR(Client.ContinueAll(), Succeeded()); in TEST_F()
52 Client.GetLatestStopReplyAs<StopReplyExit>(), in TEST_F()
61 auto &Client = **ClientOr; in TEST_F() local
64 ASSERT_THAT_ERROR(Client.SendMessage("vAttach;1"), in TEST_F()
68 ASSERT_THAT_ERROR(Client.SendMessage("QEnableErrorStrings"), Succeeded()); in TEST_F()
72 Client.SendMessage("vAttach;1"), in TEST_F()
H A DTestBase.h50 Client = std::move(*ClientOr); in SetUp()
54 std::unique_ptr<TestClient> Client;
H A DTestClient.cpp114 auto Client = std::unique_ptr<TestClient>(new TestClient(std::move(Conn))); in launchCustom() local
116 if (Error E = Client->initializeConnection()) in launchCustom()
120 if (Error E = Client->queryProcess()) in launchCustom()
124 return std::move(Client); in launchCustom()
/llvm-project-15.0.7/llvm/unittests/Debuginfod/
H A DHTTPServerTests.cpp99 HTTPClient Client; in TEST_F() local
102 EXPECT_EQ(Client.responseCode(), Response.Code); in TEST_F()
123 HTTPClient Client; in TEST_F() local
142 HTTPClient Client; in TEST_F() local
174 HTTPClient Client; in TEST_F() local
210 HTTPClient Client; in TEST_F() local
212 EXPECT_EQ(Client.responseCode(), 404u); in TEST_F()
225 HTTPClient Client; in TEST_F() local
264 HTTPClient Client; in TEST_F() local
267 EXPECT_EQ(Client.responseCode(), 200u); in TEST_F()
[all …]
/llvm-project-15.0.7/clang/lib/Frontend/Rewrite/
H A DFixItRewriter.cpp43 Client = Diags.getClient(); in FixItRewriter()
48 Diags.setClient(Client, Owner.release() != nullptr); in ~FixItRewriter()
125 return Client ? Client->IncludeInDiagnosticCounts() : true; in IncludeInDiagnosticCounts()
137 Client->HandleDiagnostic(DiagLevel, Info); in HandleDiagnostic()
203 Diags.setClient(Client, false); in Diag()
/llvm-project-15.0.7/clang/tools/clang-repl/
H A DClangRepl.cpp58 clang::DiagnosticConsumer *Client = CI->getDiagnostics().getClient(); in checkDiagErrors() local
59 Client->EndSourceFile(); in checkDiagErrors()
60 Errs = Client->getNumErrors(); in checkDiagErrors()
63 Client->BeginSourceFile(CI->getLangOpts(), &CI->getPreprocessor()); in checkDiagErrors()
/llvm-project-15.0.7/llvm/lib/Debuginfod/
H A DDebuginfod.cpp142 HTTPClient &Client; member in llvm::__anon429f947d0111::StreamedHTTPResponseHandler
146 StreamedHTTPResponseHandler(CreateStreamFn CreateStream, HTTPClient &Client) in StreamedHTTPResponseHandler() argument
147 : CreateStream(CreateStream), Client(Client) {} in StreamedHTTPResponseHandler()
157 if (Client.responseCode() != 200) in handleBodyChunk()
203 HTTPClient Client; in getCachedOrDownloadArtifact() local
204 Client.setTimeout(Timeout); in getCachedOrDownloadArtifact()
212 Client); in getCachedOrDownloadArtifact()
214 Error Err = Client.perform(Request, Handler); in getCachedOrDownloadArtifact()
218 if (Client.responseCode() != 200) in getCachedOrDownloadArtifact()
/llvm-project-15.0.7/openmp/libomptarget/plugins/remote/src/
H A DClient.cpp577 for (auto &Client : Clients) in shutdown() local
578 Ret &= Client.shutdown(); in shutdown()
584 for (auto &Client : Clients) in registerLib() local
585 Ret &= Client.registerLib(Desc); in registerLib()
591 for (auto &Client : Clients) in unregisterLib() local
592 Ret &= Client.unregisterLib(Desc); in unregisterLib()
598 for (auto &Client : Clients) { in isValidBinary() local
599 if (auto Ret = Client.isValidBinary(Image)) in isValidBinary()
608 for (auto &Client : Clients) { in getNumberOfDevices() local
634 for (auto &Client : Clients) in initRequires() local
[all …]
H A DCMakeLists.txt27 Client.cpp
/llvm-project-15.0.7/clang/unittests/Interpreter/ExceptionTests/
H A DInterpreterExceptionTest.cpp39 DiagnosticConsumer *Client = nullptr) { argument
43 if (Client)
44 CI->getDiagnostics().setClient(Client, /*ShouldOwnClient=*/false);
/llvm-project-15.0.7/clang/unittests/Sema/
H A DExternalSemaSourceTest.cpp200 DiagnosticConsumer *Client = Diagnostics.getClient(); in ExecuteAction() local
204 Client = Watchers[I]->Chain(Client); in ExecuteAction()
205 Diagnostics.setClient(Client, false); in ExecuteAction()
/llvm-project-15.0.7/llvm/test/LTO/Resolution/X86/
H A Dcommon2.ll6 ; Client marked the "large with little alignment" one as prevailing
22 ; Client marked the "small with large alignment" one as prevailing
39 ; Client didn't mark any as prevailing, we keep the first one we see as "external"
/llvm-project-15.0.7/llvm/utils/gn/secondary/clang-tools-extra/clangd/index/remote/
H A DBUILD.gn10 sources += [ "Client.cpp" ]
/llvm-project-15.0.7/clang/unittests/Interpreter/
H A DInterpreterTest.cpp34 DiagnosticConsumer *Client = nullptr) { argument
38 if (Client)
39 CI->getDiagnostics().setClient(Client, /*ShouldOwnClient=*/false);
/llvm-project-15.0.7/llvm/lib/TextAPI/
H A DInterfaceFile.cpp51 auto Client = addEntry(AllowableClients, InstallName); in addAllowableClient() local
52 Client->addTarget(Target); in addAllowableClient()
/llvm-project-15.0.7/clang-tools-extra/clangd/index/remote/
H A DCMakeLists.txt23 Client.cpp
/llvm-project-15.0.7/clang/include/clang/Rewrite/Frontend/
H A DFixItRewriter.h74 DiagnosticConsumer *Client; variable
/llvm-project-15.0.7/clang/lib/Basic/
H A DDiagnosticIDs.cpp788 Diag.Client->IncludeInDiagnosticCounts()) { in ProcessDiag()
811 if (Diag.Client->IncludeInDiagnosticCounts()) { in ProcessDiag()
837 Diag.Client->HandleDiagnostic((DiagnosticsEngine::Level)DiagLevel, Info); in EmitDiag()
838 if (Diag.Client->IncludeInDiagnosticCounts()) { in EmitDiag()
H A DDiagnostic.cpp115 Client = client; in setClient()
518 assert(Client && "DiagnosticConsumer not set!"); in Report()
521 Client->HandleDiagnostic(DiagLevel, Info); in Report()
522 if (Client->IncludeInDiagnosticCounts()) { in Report()
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dbyval_load_align.ll17 define void @Client() #0 {
/llvm-project-15.0.7/clang/include/clang/Frontend/
H A DCompilerInstance.h607 void createDiagnostics(DiagnosticConsumer *Client = nullptr,
630 DiagnosticConsumer *Client = nullptr,
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/
H A Dreplace-auto-ptr.rst40 * Client code that declares a reference to an ``std::auto_ptr`` coming from

12