Home
last modified time | relevance | path

Searched refs:keyText (Results 1 – 2 of 2) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/
DJsonFormatter.cs697 string keyText; in WriteDictionary()
700 keyText = (string) pair.Key; in WriteDictionary()
704 keyText = (bool) pair.Key ? "true" : "false"; in WriteDictionary()
708 keyText = ((IFormattable) pair.Key).ToString("d", CultureInfo.InvariantCulture); in WriteDictionary()
718 WriteString(writer, keyText); in WriteDictionary()
/external/protobuf/csharp/src/Google.Protobuf.Test/
DJsonParserTest.cs66 public void IntegerMapKeysAreStrict(string keyText) in IntegerMapKeysAreStrict() argument
70 var json = "{ \"mapInt32Int32\": { \"" + keyText + "\" : \"1\" } }"; in IntegerMapKeysAreStrict()