getDefaultValue  1040 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               defaultValue = TextFormat.parseInt32(proto.getDefaultValue());
getDefaultValue  1044 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               defaultValue = TextFormat.parseUInt32(proto.getDefaultValue());
getDefaultValue  1049 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               defaultValue = TextFormat.parseInt64(proto.getDefaultValue());
getDefaultValue  1053 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               defaultValue = TextFormat.parseUInt64(proto.getDefaultValue());
getDefaultValue  1056 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               if (proto.getDefaultValue().equals("inf")) {
getDefaultValue  1058 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               } else if (proto.getDefaultValue().equals("-inf")) {
getDefaultValue  1060 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               } else if (proto.getDefaultValue().equals("nan")) {
getDefaultValue  1063 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java                 defaultValue = Float.valueOf(proto.getDefaultValue());
getDefaultValue  1067 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               if (proto.getDefaultValue().equals("inf")) {
getDefaultValue  1069 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               } else if (proto.getDefaultValue().equals("-inf")) {
getDefaultValue  1071 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               } else if (proto.getDefaultValue().equals("nan")) {
getDefaultValue  1074 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java                 defaultValue = Double.valueOf(proto.getDefaultValue());
getDefaultValue  1078 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               defaultValue = Boolean.valueOf(proto.getDefaultValue());
getDefaultValue  1081 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               defaultValue = proto.getDefaultValue();
getDefaultValue  1086 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java                   TextFormat.unescapeBytes(proto.getDefaultValue());
getDefaultValue  1093 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               defaultValue = enumType.findValueByName(proto.getDefaultValue());
getDefaultValue  1097 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java                   proto.getDefaultValue() + '\"');
getDefaultValue  1108 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java               proto.getDefaultValue() + '\"', e);
getDefaultValue   169 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java         result = field.getDefaultValue();
getDefaultValue   398 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java           result = field.getDefaultValue();
getDefaultValue   626 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java               descriptor.getDefaultValue());
getDefaultValue   779 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java             return field.getDefaultValue();
getDefaultValue   937 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java               descriptor.getDefaultValue());
getDefaultValue  1059 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java             return field.getDefaultValue();
getDefaultValue   278 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java     assertEquals(0, d.findFieldByName("optional_int32").getDefaultValue());
getDefaultValue   280 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java     assertEquals(41, d.findFieldByName("default_int32").getDefaultValue());
getDefaultValue   286 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java       d.findFieldByName("escaped_bytes").getDefaultValue());
getDefaultValue   287 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java     assertEquals(-1, d.findFieldByName("large_uint32").getDefaultValue());
getDefaultValue   288 third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java     assertEquals(-1L, d.findFieldByName("large_uint64").getDefaultValue());