Home
last modified time | relevance | path

Searched refs:FileChangeType (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/
Denums.go178 func (e FileChangeType) Format(f fmt.State, c rune) {
182 func ParseFileChangeType(s string) FileChangeType {
183 return FileChangeType(parseEnum(s, namesFileChangeType[:]))
Dtsprotocol.go1584 Type FileChangeType `json:"type"`
3978 type FileChangeType float64 type
4142 Created FileChangeType = 1
4147 Changed FileChangeType = 2
4152 Deleted FileChangeType = 3
/external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/protocol/
Denums.go178 func (e FileChangeType) Format(f fmt.State, c rune) {
182 func ParseFileChangeType(s string) FileChangeType {
183 return FileChangeType(parseEnum(s, namesFileChangeType[:]))
Dtsprotocol.go1584 Type FileChangeType `json:"type"`
3978 type FileChangeType float64 type
4142 Created FileChangeType = 1
4147 Changed FileChangeType = 2
4152 Deleted FileChangeType = 3
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/vscode/src/lsp/protocol/
Denums.go178 func (e FileChangeType) Format(f fmt.State, c rune) {
182 func ParseFileChangeType(s string) FileChangeType {
183 return FileChangeType(parseEnum(s, namesFileChangeType[:]))
Dtsprotocol.go1584 Type FileChangeType `json:"type"`
3978 type FileChangeType float64 type
4142 Created FileChangeType = 1
4147 Changed FileChangeType = 2
4152 Deleted FileChangeType = 3
/external/llvm-project/clang-tools-extra/clangd/
DProtocol.h718 enum class FileChangeType { enum
726 bool fromJSON(const llvm::json::Value &E, FileChangeType &Out,
733 FileChangeType type = FileChangeType::Created;
DProtocol.cpp496 bool fromJSON(const llvm::json::Value &E, FileChangeType &Out, in fromJSON()
499 if (*T < static_cast<int>(FileChangeType::Created) || in fromJSON()
500 *T > static_cast<int>(FileChangeType::Deleted)) in fromJSON()
502 Out = static_cast<FileChangeType>(*T); in fromJSON()