Searched refs:typeRegistry (Results 1 – 4 of 4) sorted by relevance
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Conformance/ |
D | Program.cs | 51 var typeRegistry = TypeRegistry.FromMessages(TestAllTypes.Descriptor); in Main() 54 while (RunTest(input, output, typeRegistry)) in Main() 61 … private static bool RunTest(BinaryReader input, BinaryWriter output, TypeRegistry typeRegistry) in RunTest() argument 74 ConformanceResponse response = PerformRequest(request, typeRegistry); in RunTest() 82 …te static ConformanceResponse PerformRequest(ConformanceRequest request, TypeRegistry typeRegistry) in PerformRequest() argument 90 var parser = new JsonParser(new JsonParser.Settings(20, typeRegistry)); in PerformRequest() 113 … var formatter = new JsonFormatter(new JsonFormatter.Settings(false, typeRegistry)); in PerformRequest()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/conformance/ |
D | ConformanceJava.java | 9 private TypeRegistry typeRegistry; field in ConformanceJava 65 JsonFormat.parser().usingTypeRegistry(typeRegistry) in doTest() 92 JsonFormat.printer().usingTypeRegistry(typeRegistry).print(testMessage)).build(); in doTest() 129 typeRegistry = TypeRegistry.newBuilder().add( in run()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/ |
D | JsonFormatter.cs | 852 public Settings(bool formatDefaultValues, TypeRegistry typeRegistry) in Settings() argument 855 TypeRegistry = ProtoPreconditions.CheckNotNull(typeRegistry, nameof(typeRegistry)); in Settings()
|
D | JsonParser.cs | 1012 public Settings(int recursionLimit, TypeRegistry typeRegistry) in Settings() argument 1015 TypeRegistry = ProtoPreconditions.CheckNotNull(typeRegistry, nameof(typeRegistry)); in Settings()
|