Home
last modified time | relevance | path

Searched refs:ESCAPE_CHARS (Results 1 – 7 of 7) sorted by relevance

/thrift-3.4.0/lib/py/src/protocol/
DTJSONProtocol.py58 ESCAPE_CHARS = { variable
312 if character not in ESCAPE_CHARS:
316 character = ESCAPE_CHARS[character]
/thrift-3.4.0/lib/javame/src/org/apache/thrift/protocol/
DTJSONProtocol.java70 private static final String ESCAPE_CHARS = "\"\\/bfnrt"; field in TJSONProtocol
692 int off = ESCAPE_CHARS.indexOf(ch); in readJSONString()
/thrift-3.4.0/lib/java/src/main/java/org/apache/thrift/protocol/
DTJSONProtocol.java77 private static final String ESCAPE_CHARS = "\"\\/bfnrt"; field in TJSONProtocol
676 int off = ESCAPE_CHARS.indexOf(ch); in readJSONString()
/thrift-3.4.0/lib/delphi/src/
DThrift.Protocol.JSON.pas277 ESCAPE_CHARS = '"\/btnfr';
878 off := Pos( Char(ch), ESCAPE_CHARS);
/thrift-3.4.0/lib/dart/lib/src/protocol/
Dt_json_protocol.dart341 int offset = _Constants.ESCAPE_CHARS.indexOf(char);
643 static const String ESCAPE_CHARS = r'"\/bfnrt';
/thrift-3.4.0/lib/php/lib/Protocol/
DTJSONProtocol.php59 public static $ESCAPE_CHARS = array('"', '\\', '/', "b", "f", "n", "r", "t"); variable in Thrift\\Protocol\\TJSONProtocol
/thrift-3.4.0/lib/haxe/src/org/apache/thrift/protocol/
DTJSONProtocol.hx843 public static var ESCAPE_CHARS = ['"','\\','/','b','f','n','r','t']; variable