Home
last modified time | relevance | path

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

/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/
Denums.go226 func (e InsertTextFormat) Format(f fmt.State, c rune) {
230 func ParseInsertTextFormat(s string) InsertTextFormat {
231 return InsertTextFormat(parseEnum(s, namesInsertTextFormat[:]))
Dtsprotocol.go3373 InsertTextFormat InsertTextFormat `json:"insertTextFormat,omitempty"` member
4002 type InsertTextFormat float64 type
4314 PlainTextTextFormat InsertTextFormat = 1
4326 SnippetTextFormat InsertTextFormat = 2
/external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/protocol/
Denums.go226 func (e InsertTextFormat) Format(f fmt.State, c rune) {
230 func ParseInsertTextFormat(s string) InsertTextFormat {
231 return InsertTextFormat(parseEnum(s, namesInsertTextFormat[:]))
Dtsprotocol.go3373 InsertTextFormat InsertTextFormat `json:"insertTextFormat,omitempty"` member
4002 type InsertTextFormat float64 type
4314 PlainTextTextFormat InsertTextFormat = 1
4326 SnippetTextFormat InsertTextFormat = 2
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/vscode/src/lsp/protocol/
Denums.go226 func (e InsertTextFormat) Format(f fmt.State, c rune) {
230 func ParseInsertTextFormat(s string) InsertTextFormat {
231 return InsertTextFormat(parseEnum(s, namesInsertTextFormat[:]))
Dtsprotocol.go3373 InsertTextFormat InsertTextFormat `json:"insertTextFormat,omitempty"` member
4002 type InsertTextFormat float64 type
4314 PlainTextTextFormat InsertTextFormat = 1
4326 SnippetTextFormat InsertTextFormat = 2
/external/llvm-project/clang-tools-extra/clangd/
DProtocol.h1135 enum class InsertTextFormat { enum
1181 InsertTextFormat insertTextFormat = InsertTextFormat::Missing;
DCodeComplete.cpp1936 LSP.insertTextFormat = Opts.EnableSnippets ? InsertTextFormat::Snippet in render()
1937 : InsertTextFormat::PlainText; in render()
DProtocol.cpp948 if (CI.insertTextFormat != InsertTextFormat::Missing) in toJSON()
/external/llvm-project/clang-tools-extra/clangd/unittests/
DCodeCompleteTests.cpp1802 EXPECT_EQ(R.insertTextFormat, InsertTextFormat::PlainText); in TEST()
1814 EXPECT_EQ(R.insertTextFormat, InsertTextFormat::Snippet); in TEST()