Home
last modified time | relevance | path

Searched refs:codeComplete (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/clang/bindings/python/tests/cindex/
H A Dtest_code_completion.py39 cr = tu.codeComplete('fake.c', 9, 1, unsaved_files=files, include_brief_comments=True)
65 …cr = tu.codeComplete(str_to_path('fake.c'), 9, 1, unsaved_files=files, include_brief_comments=True)
94 cr = tu.codeComplete('fake.cpp', 12, 5, unsaved_files=files)
105 cr = tu.codeComplete('fake.cpp', 13, 5, unsaved_files=files)
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DCodeComplete.h278 CodeCompleteResult codeComplete(PathRef FileName, Position Pos,
H A DClangdServer.h227 void codeComplete(PathRef File, Position Pos,
H A DClangdServer.cpp370 void ClangdServer::codeComplete(PathRef File, Position Pos, in codeComplete() function in clang::clangd::ClangdServer
408 CodeCompleteResult Result = clangd::codeComplete( in codeComplete()
H A DClangdLSPServer.cpp1051 Server->codeComplete(Params.textDocument.uri.file(), Params.position, Opts, in onCompletion()
H A DCodeComplete.cpp2029 CodeCompleteResult codeComplete(PathRef FileName, Position Pos, in codeComplete() function
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DSyncAPI.cpp74 Server.codeComplete(File, Pos, Opts, capture(Result)); in runCodeComplete()
H A DCodeCompleteTests.cpp127 return codeComplete(testPath(TU.Filename), Point, Preamble.get(), Inputs,
159 return codeComplete(FilePath, Test.point(), /*Preamble=*/nullptr, ParseInput,
3644 auto Result = codeComplete(testPath(ModifiedTU.Filename), Test.point(), in TEST()
/llvm-project-15.0.7/clang-tools-extra/clangd/tool/
H A DCheck.cpp265 auto CC = codeComplete(File, EndPos, Preamble.get(), Inputs, CCOpts); in testLocationFeatures()
/llvm-project-15.0.7/clang/bindings/python/clang/
H A Dcindex.py3036 def codeComplete(self, path, line, column, unsaved_files=None, member in TranslationUnit