Home
last modified time | relevance | path

Searched refs:getTypeIDForTypeName (Results 1 – 4 of 4) sorted by relevance

/thrift-3.4.0/lib/php/lib/Protocol/
DTJSONProtocol.php107 private function getTypeIDForTypeName($name) function in Thrift\\Protocol\\TJSONProtocol
711 $fieldType = $this->getTypeIDForTypeName($this->readJSONString(false));
723 $keyType = $this->getTypeIDForTypeName($this->readJSONString(false));
724 $valType = $this->getTypeIDForTypeName($this->readJSONString(false));
738 $elemType = $this->getTypeIDForTypeName($this->readJSONString(false));
752 $elemType = $this->getTypeIDForTypeName($this->readJSONString(false));
/thrift-3.4.0/lib/javame/src/org/apache/thrift/protocol/
DTJSONProtocol.java123 private static final byte getTypeIDForTypeName(byte[] name) in getTypeIDForTypeName() method in TJSONProtocol
892 type = getTypeIDForTypeName(readJSONString(false).get()); in readFieldBegin()
903 byte keyType = getTypeIDForTypeName(readJSONString(false).get()); in readMapBegin()
904 byte valueType = getTypeIDForTypeName(readJSONString(false).get()); in readMapBegin()
917 byte elemType = getTypeIDForTypeName(readJSONString(false).get()); in readListBegin()
928 byte elemType = getTypeIDForTypeName(readJSONString(false).get()); in readSetBegin()
/thrift-3.4.0/lib/java/src/main/java/org/apache/thrift/protocol/
DTJSONProtocol.java131 private static byte getTypeIDForTypeName(byte[] name) throws TException { in getTypeIDForTypeName() method in TJSONProtocol
864 type = getTypeIDForTypeName(readJSONString(false).get()); in readFieldBegin()
877 byte keyType = getTypeIDForTypeName(readJSONString(false).get()); in readMapBegin()
878 byte valueType = getTypeIDForTypeName(readJSONString(false).get()); in readMapBegin()
896 byte elemType = getTypeIDForTypeName(readJSONString(false).get()); in readListBegin()
912 byte elemType = getTypeIDForTypeName(readJSONString(false).get()); in readSetBegin()
/thrift-3.4.0/lib/cpp/src/thrift/protocol/
DTJSONProtocol.cpp101 static TType getTypeIDForTypeName(const std::string& name) { in getTypeIDForTypeName() function
994 fieldType = getTypeIDForTypeName(tmpStr); in readFieldBegin()
1008 keyType = getTypeIDForTypeName(tmpStr); in readMapBegin()
1010 valType = getTypeIDForTypeName(tmpStr); in readMapBegin()
1034 elemType = getTypeIDForTypeName(tmpStr); in readListBegin()
1055 elemType = getTypeIDForTypeName(tmpStr); in readSetBegin()