Home
last modified time | relevance | path

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

/thrift-3.4.0/lib/php/lib/Protocol/
DTSimpleJSONProtocol.php48 const NAME_LIST = "lst"; define in Thrift\\Protocol\\TSimpleJSONProtocol
209 $this->assertContextIsNotMapKey(self::NAME_LIST);
DTJSONProtocol.php74 const NAME_LIST = "lst"; define in Thrift\\Protocol\\TJSONProtocol
101 return self::NAME_LIST;
/thrift-3.4.0/lib/delphi/src/
DThrift.Protocol.JSON.pas291 NAME_LIST = 'lst';
322 TType.List: result := NAME_LIST;
341 else if name = NAME_LIST then result := TType.List
/thrift-3.4.0/lib/javame/src/org/apache/thrift/protocol/
DTJSONProtocol.java87 private static final byte[] NAME_LIST = new byte[] { 'l', 's', 't' }; field in TJSONProtocol
116 return NAME_LIST; in getTypeNameForTypeID()
/thrift-3.4.0/lib/dart/lib/src/protocol/
Dt_json_protocol.dart655 static const String NAME_LIST = 'lst';
669 TType.LIST: Uint8List.fromList(NAME_LIST.codeUnits)
692 NAME_LIST: TType.LIST
/thrift-3.4.0/lib/java/src/main/java/org/apache/thrift/protocol/
DTJSONProtocol.java95 private static final byte[] NAME_LIST = new byte[] {'l', 's', 't'}; field in TJSONProtocol
125 return NAME_LIST; in getTypeNameForTypeID()
/thrift-3.4.0/lib/haxe/src/org/apache/thrift/protocol/
DTJSONProtocol.hx905 public static var NAME_LIST = 'lst'; variable
922 case TType.LIST: return NAME_LIST;
939 NAME_LIST => TType.LIST,