Lines Matching defs:fromProtobuf
79 Marshaller::fromProtobuf(const LookupRequest *Message) {
89 Marshaller::fromProtobuf(const FuzzyFindRequest *Message) {
113 Marshaller::fromProtobuf(const RefsRequest *Message) {
130 Marshaller::fromProtobuf(const ContainedRefsRequest *Message) {
144 Marshaller::fromProtobuf(const RelationsRequest *Message) {
158 llvm::Expected<clangd::Symbol> Marshaller::fromProtobuf(const Symbol &Message) {
166 Result.SymInfo = fromProtobuf(Message.info());
170 auto Definition = fromProtobuf(Message.definition());
174 auto Declaration = fromProtobuf(Message.canonical_declaration());
188 auto SerializedHeader = fromProtobuf(Header);
197 llvm::Expected<clangd::Ref> Marshaller::fromProtobuf(const Ref &Message) {
201 auto Location = fromProtobuf(Message.location());
210 Marshaller::fromProtobuf(const ContainedRef &Message) {
218 auto Location = fromProtobuf(Message.location());
231 Marshaller::fromProtobuf(const Relation &Message) {
237 auto Object = fromProtobuf(Message.object());
403 Marshaller::fromProtobuf(const Position &Message) {
418 clang::index::SymbolInfo Marshaller::fromProtobuf(const SymbolInfo &Message) {
438 Marshaller::fromProtobuf(const SymbolLocation &Message) {
444 Location.Start = fromProtobuf(Message.start());
445 Location.End = fromProtobuf(Message.end());
479 Marshaller::fromProtobuf(const HeaderWithReferences &Message) {