Lines Matching refs:StringValue

91             { StringValue.Descriptor.FullName, MergeWrapperField },
189 string name = token.StringValue;
304 object key = ParseMapKey(keyField, token.StringValue);
375 case JsonToken.TokenType.StringValue:
376 return ParseSingleStringValue(field, token.StringValue);
454 case JsonToken.TokenType.StringValue:
455 fields[Value.StringValueFieldNumber].Accessor.SetValue(message, firstToken.StringValue);
516 token.StringValue != JsonFormatter.AnyTypeUrlField ||
530 if (token.Type != JsonToken.TokenType.StringValue)
534 string typeUrl = token.StringValue;
570 if (token.Type != JsonToken.TokenType.Name || token.StringValue != JsonFormatter.AnyWellKnownTypeValueField)
803 if (token.Type != JsonToken.TokenType.StringValue)
807 var match = TimestampRegex.Match(token.StringValue);
810 throw new InvalidProtocolBufferException($"Invalid Timestamp value: {token.StringValue}");
842 throw new InvalidProtocolBufferException("Invalid Timestamp value: " + token.StringValue);
847 throw new InvalidProtocolBufferException("Invalid Timestamp value: " + token.StringValue);
865 throw new InvalidProtocolBufferException("Invalid Timestamp value: " + token.StringValue);
873 throw new InvalidProtocolBufferException("Invalid Timestamp value: " + token.StringValue);
879 if (token.Type != JsonToken.TokenType.StringValue)
883 var match = DurationRegex.Match(token.StringValue);
886 throw new InvalidProtocolBufferException("Invalid Duration value: " + token.StringValue);
893 throw new InvalidProtocolBufferException("Invalid Duration value: " + token.StringValue);
910 throw new InvalidProtocolBufferException($"Invalid Duration value: {token.StringValue}");
917 throw new InvalidProtocolBufferException($"Invalid Duration value: {token.StringValue}");
923 if (token.Type != JsonToken.TokenType.StringValue)
928 string[] jsonPaths = token.StringValue.Split(FieldMaskPathSeparators, StringSplitOptions.RemoveEmptyEntries);