Home
last modified time | relevance | path

Searched refs:QuoteChar (Results 1 – 25 of 339) sorted by relevance

12345678910>>...14

/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack.Text/src/ServiceStack.Text/Json/
H A DJsonUtils.cs9 public const char QuoteChar = '"'; field in ServiceStack.Text.Json.JsonUtils
16 QuoteChar, '\n', '\r', '\t', '"', '\\', '\f', '\b',
39 writer.Write(QuoteChar); in WriteString()
41 writer.Write(QuoteChar); in WriteString()
46 writer.Write(QuoteChar); in WriteString()
97 writer.Write(QuoteChar); in WriteString()
H A DJsonTypeSerializer.cs60 writer.Write(JsWriter.QuoteChar); in WriteRawString()
62 writer.Write(JsWriter.QuoteChar); in WriteRawString()
86 if (JsState.WritingKeyCount > 0 && !JsState.IsWritingValue) writer.Write(JsonUtils.QuoteChar); in WriteBuiltIn()
90 if (JsState.WritingKeyCount > 0 && !JsState.IsWritingValue) writer.Write(JsonUtils.QuoteChar); in WriteBuiltIn()
277 …return value[0] == JsonUtils.QuoteChar && value[value.Length - 1] == JsonUtils.QuoteChar && value.… in ParseRawString()
295 if (json[index] == JsonUtils.QuoteChar) in ParseJsonString()
302 if (json[strEndPos] == JsonUtils.QuoteChar) in ParseJsonString()
318 if (c == JsonUtils.QuoteChar) break; in ParseJsonString()
473 case JsWriter.QuoteChar: in EatValue()
482 if (valueChar == JsWriter.QuoteChar in EatValue()
[all …]
/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack.Text/src/ServiceStack.Text/Jsv/
H A DJsvTypeSerializer.cs253 case JsWriter.QuoteChar: in EatMapKey()
258 if (valueChar != JsWriter.QuoteChar) continue; in EatMapKey()
260 var isLiteralQuote = i + 1 < valueLength && value[i + 1] == JsWriter.QuoteChar; in EatMapKey()
276 if (valueChar == JsWriter.QuoteChar) in EatMapKey()
328 case JsWriter.QuoteChar: in EatValue()
333 if (valueChar != JsWriter.QuoteChar) continue; in EatValue()
335 var isLiteralQuote = i + 1 < valueLength && value[i + 1] == JsWriter.QuoteChar; in EatValue()
349 if (valueChar == JsWriter.QuoteChar) in EatValue()
369 if (valueChar == JsWriter.QuoteChar) in EatValue()
/dports/net-p2p/transmission-remote-gui/transgui-5.18.0/
H A Drestranslator.pas125 Result := (S[1] = QuoteChar) and (S[L] = QuoteChar)
139 Result := AnsiDequotedStr(CValues[sLanguageIDName], QuoteChar);
159 QuoteChar:= '"';
399 …if AnsiSameText(AnsiDequotedStr(Language, QuoteChar), AnsiDequotedStr(aName, QuoteChar)) then begin
400 Result:= AnsiDequotedStr(aValue, QuoteChar);
475 if P[i] = QuoteChar then
506 Result := AnsiDequotedStr(S, QuoteChar)
507 else if not IsQuoted(S, QuoteChar) then
508 Result := AnsiQuotedStr(S, QuoteChar)
658 …nslationLanguage := AnsiDequotedStr(CValues[AnsiQuotedStr(sLanguageIDName, QuoteChar)], QuoteChar);
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build/Microsoft.Build.Internal/
H A DExpressionConstructs.cs218 public char QuoteChar { get; set; } property in Microsoft.Build.Internal.Expressions.QuotedExpression
222 …t { return QuoteChar + string.Concat (Contents.Select (e => e.ExpressionString)).Replace (QuoteCha…
/dports/databases/fpc-sqlite/fpc-3.2.2/packages/sqlite/src/
H A Dsqlitedb.pas66 function QuoteStr(const s: string; QuoteChar: Char ): string; in QuoteStr()
67 function UnQuoteStr(const s: string; QuoteChar: Char ): string; in UnQuoteStr()
81 function QuoteStr(const s: string; QuoteChar: Char ): string; in QuoteStr()
83 Result := Concat(QuoteChar, s, QuoteChar);
86 function UnQuoteStr(const s: string; QuoteChar: Char ): string; in UnQuoteStr()
91 if Result[1] = QuoteChar then
93 if Result[Length(Result)] = QuoteChar then
H A Dsqlite3db.pas81 function QuoteStr(const s: string; QuoteChar: Char ): string; in QuoteStr()
82 function UnQuoteStr(const s: string; QuoteChar: Char ): string; in UnQuoteStr()
97 function QuoteStr(const s: string; QuoteChar: Char ): string; in QuoteStr()
103 Result := Concat(QuoteChar, s, QuoteChar);
106 function UnQuoteStr(const s: string; QuoteChar: Char ): string; in UnQuoteStr()
115 if Result[1] = QuoteChar then
117 if Result[Length(Result)] = QuoteChar then
/dports/lang/fpc-source/fpc-3.2.2/packages/sqlite/src/
H A Dsqlite3db.pas81 function QuoteStr(const s: string; QuoteChar: Char ): string; in QuoteStr()
82 function UnQuoteStr(const s: string; QuoteChar: Char ): string; in UnQuoteStr()
97 function QuoteStr(const s: string; QuoteChar: Char ): string; in QuoteStr()
103 Result := Concat(QuoteChar, s, QuoteChar);
106 function UnQuoteStr(const s: string; QuoteChar: Char ): string; in UnQuoteStr()
115 if Result[1] = QuoteChar then
117 if Result[Length(Result)] = QuoteChar then
H A Dsqlitedb.pas66 function QuoteStr(const s: string; QuoteChar: Char ): string; in QuoteStr()
67 function UnQuoteStr(const s: string; QuoteChar: Char ): string; in UnQuoteStr()
81 function QuoteStr(const s: string; QuoteChar: Char ): string; in QuoteStr()
83 Result := Concat(QuoteChar, s, QuoteChar);
86 function UnQuoteStr(const s: string; QuoteChar: Char ): string; in UnQuoteStr()
91 if Result[1] = QuoteChar then
93 if Result[Length(Result)] = QuoteChar then
/dports/devel/newtonsoft-json/Newtonsoft.Json-9.0.1/Src/Newtonsoft.Json/Serialization/
H A DTraceJsonReader.cs107 public override char QuoteChar property in Newtonsoft.Json.Serialization.TraceJsonReader
109 get { return _innerReader.QuoteChar; }
110 protected internal set { _innerReader.QuoteChar = value; }
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/lazreport/source/
H A Dlr_e_csv.pas47 property QuoteChar: TUTF8Char read FQuoteChar write FQuoteChar; property
101 s := UTF8Quotedstr(aStr, QuoteChar)
103 s := s + Separator + UTF8Quotedstr(aStr, QuoteChar);
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/lazreport/source/
H A Dlr_e_csv.pas47 property QuoteChar: TUTF8Char read FQuoteChar write FQuoteChar; property
101 s := UTF8Quotedstr(aStr, QuoteChar)
103 s := s + Separator + UTF8Quotedstr(aStr, QuoteChar);
/dports/editors/lazarus/lazarus/components/lazreport/source/
H A Dlr_e_csv.pas47 property QuoteChar: TUTF8Char read FQuoteChar write FQuoteChar; property
106 s := UTF8Quotedstr(aStr, QuoteChar)
108 s := s + Separator + UTF8Quotedstr(aStr, QuoteChar);
/dports/editors/lazarus-qt5/lazarus/components/lazreport/source/
H A Dlr_e_csv.pas47 property QuoteChar: TUTF8Char read FQuoteChar write FQuoteChar; property
106 s := UTF8Quotedstr(aStr, QuoteChar)
108 s := s + Separator + UTF8Quotedstr(aStr, QuoteChar);
/dports/devel/fpc-fcl-db/fpc-3.2.2/packages/fcl-db/src/export/
H A Dfpcsvexport.pp23 // Kept for compatibility with older versions; please replace with QuoteChar
24 …tringQuoteChar : Char Read FQuoteChar Write FQuoteChar; deprecated 'Please replace with QuoteChar';
36 Property QuoteChar : Char Read FQuoteChar Write FQuoteChar;
95 FCSVOut.QuoteChar:=FormatSettings.QuoteChar;
/dports/lang/fpc-source/fpc-3.2.2/packages/fcl-db/src/export/
H A Dfpcsvexport.pp23 // Kept for compatibility with older versions; please replace with QuoteChar
24 …tringQuoteChar : Char Read FQuoteChar Write FQuoteChar; deprecated 'Please replace with QuoteChar';
36 Property QuoteChar : Char Read FQuoteChar Write FQuoteChar;
95 FCSVOut.QuoteChar:=FormatSettings.QuoteChar;
/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack.Text/src/ServiceStack.Text/Common/
H A DWriteDictionary.cs130 writer.Write(JsWriter.QuoteChar); in WriteIDictionary()
132 writer.Write(JsWriter.QuoteChar); in WriteIDictionary()
203 writer.Write(JsWriter.QuoteChar); in WriteGenericIDictionary()
205 writer.Write(JsWriter.QuoteChar); in WriteGenericIDictionary()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.DataContractSerialization/src/System/Runtime/Serialization/Json/
H A DJsonGlobals.cs16 public const char QuoteChar = '"'; field in System.Runtime.Serialization.Json.JsonGlobals
53 public const byte QuoteByte = (byte)QuoteChar;
/dports/devel/newtonsoft-json/Newtonsoft.Json-9.0.1/Src/Newtonsoft.Json/
H A DJsonTextWriter.cs105 public char QuoteChar property in Newtonsoft.Json.JsonTextWriter
477 …WriteValueInternal(JsonConvert.ToString(value, FloatFormatHandling, QuoteChar, false), JsonToken.F… in WriteValue()
493 …al(JsonConvert.ToString(value.GetValueOrDefault(), FloatFormatHandling, QuoteChar, true), JsonToke… in WriteValue()
504 …WriteValueInternal(JsonConvert.ToString(value, FloatFormatHandling, QuoteChar, false), JsonToken.F… in WriteValue()
520 …al(JsonConvert.ToString(value.GetValueOrDefault(), FloatFormatHandling, QuoteChar, true), JsonToke… in WriteValue()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Runtime.Serialization/System/Runtime/Serialization/Json/
H A DJsonGlobals.cs71 public const byte QuoteByte = (byte)QuoteChar;
72 public const char QuoteChar = '"'; field in System.Runtime.Serialization.Json.JsonGlobals
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Core/
H A DXmlReaderAsync.cs209 ((XmlTextWriter)xtw).QuoteChar = this.QuoteChar; in ReadInnerXmlAsync()
235 ((XmlTextWriter)xtw).QuoteChar = this.QuoteChar; in WriteNodeAsync()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.SqlXml/System/Xml/Xsl/XsltOld/
H A DReaderOutput.cs139 public override char QuoteChar { property in System.Xml.Xsl.XsltOld.ReaderOutput
140 get { return encoder.QuoteChar; }
609 buffer .Append(QuoteChar); in AtributeOuterXml()
613 buffer .Append(QuoteChar); in AtributeOuterXml()
617 public char QuoteChar { property in System.Xml.Xsl.XsltOld.ReaderOutput.XmlEncoder
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Xsl/XsltOld/
H A DReaderOutput.cs162 public override char QuoteChar property in System.Xml.Xsl.XsltOld.ReaderOutput
164 get { return _encoder.QuoteChar; }
726 _buffer.Append(QuoteChar); in AtributeOuterXml()
730 _buffer.Append(QuoteChar); in AtributeOuterXml()
734 public char QuoteChar property in System.Xml.Xsl.XsltOld.ReaderOutput.XmlEncoder
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Core/
H A DXmlReaderAsync.cs192 ((XmlTextWriter)xtw).QuoteChar = this.QuoteChar; in ReadInnerXmlAsync()
217 ((XmlTextWriter)xtw).QuoteChar = this.QuoteChar; in WriteNodeAsync()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Commons.Xml.Relaxng/Commons.Xml/
H A DXmlDefaultReader.cs111 public override char QuoteChar { property in Commons.Xml.XmlDefaultReader
112 get { return reader.QuoteChar; }

12345678910>>...14