Searched refs:marshallerWithRecursionLimit (Results 1 – 3 of 3) sorted by relevance
68 public static <T extends Message> Marshaller<T> marshallerWithRecursionLimit(T defaultInstance, in marshallerWithRecursionLimit() method in ProtoUtils70 return ProtoLiteUtils.marshallerWithRecursionLimit(defaultInstance, recursionLimit); in marshallerWithRecursionLimit()
244 () -> ProtoLiteUtils.marshallerWithRecursionLimit(null, 10) in testNullDefaultInstance()250 Marshaller<SimpleRecursiveMessage> marshaller = ProtoLiteUtils.marshallerWithRecursionLimit( in givenPositiveLimit_testRecursionLimitExceeded()259 Marshaller<SimpleRecursiveMessage> marshaller = ProtoLiteUtils.marshallerWithRecursionLimit( in givenZeroLimit_testRecursionLimitExceeded()268 Marshaller<SimpleRecursiveMessage> marshaller = ProtoLiteUtils.marshallerWithRecursionLimit( in givenPositiveLimit_testRecursionLimitNotExceeded()277 Marshaller<SimpleRecursiveMessage> marshaller = ProtoLiteUtils.marshallerWithRecursionLimit( in givenZeroLimit_testRecursionLimitNotExceeded()
95 public static <T extends MessageLite> Marshaller<T> marshallerWithRecursionLimit( in marshallerWithRecursionLimit() method in ProtoLiteUtils