/thrift-3.4.0/lib/java/src/main/java/org/apache/thrift/protocol/ |
D | TCompactProtocol.java | 147 private final byte[] temp = new byte[16]; field in TCompactProtocol 340 fixedLongToBytes(Double.doubleToLongBits(dub), temp, 0); in writeDouble() local 341 trans_.write(temp, 0, 8); in writeDouble() 346 fixedLongToBytes(uuid.getLeastSignificantBits(), temp, 0); in writeUuid() local 347 fixedLongToBytes(uuid.getMostSignificantBits(), temp, 8); in writeUuid() local 348 trans_.write(temp, 0, 16); in writeUuid() 412 temp[idx++] = (byte) n; in writeVarint32() 417 temp[idx++] = (byte) ((n & 0x7F) | 0x80); in writeVarint32() 422 trans_.write(temp, 0, idx); in writeVarint32() 430 temp[idx++] = (byte) n; in writeVarint64() [all …]
|
/thrift-3.4.0/compiler/cpp/src/thrift/generate/ |
D | validator_parser.cc | 334 std::string temp(pch); in add_enum_list_rule() local 335 if (is_validation_function(temp)) { in add_enum_list_rule() 336 validation_value::validation_function* function = get_validation_function(temp); in add_enum_list_rule() 338 } else if (is_reference_field(temp)) { in add_enum_list_rule() 339 t_field* field = get_referenced_field(temp); in add_enum_list_rule() 341 } else if (std::stringstream(temp) >> val) { in add_enum_list_rule() 350 throw "validator error: validation double list parse failed: " + temp; in add_enum_list_rule() 389 std::string temp(pch); in add_double_list_rule() local 390 if (is_validation_function(temp)) { in add_double_list_rule() 391 validation_value::validation_function* function = get_validation_function(temp); in add_double_list_rule() [all …]
|
D | t_go_generator.cc | 3604 t_list* temp = (t_list*)ttype; in generate_go_equals_container() local 3605 elem = temp->get_elem_type(); in generate_go_equals_container() 3607 t_set* temp = (t_set*)ttype; in generate_go_equals_container() local 3608 elem = temp->get_elem_type(); in generate_go_equals_container()
|
/thrift-3.4.0/lib/cpp/src/thrift/ |
D | Thrift.h | 109 E temp(e_); in throw_it() 111 throw temp; in throw_it() local
|
/thrift-3.4.0/lib/c_glib/test/ |
D | testthriftcompactreadcheck.c | 114 ThriftSocket *temp = NULL; in test_initialize() local 141 g_object_get (G_OBJECT (protocol), "transport", &temp, NULL); in test_initialize() 142 g_object_unref (temp); in test_initialize()
|
D | testthriftbinaryreadcheck.c | 104 ThriftSocket *temp = NULL; in test_initialize() local 132 g_object_get (G_OBJECT (bprotocol), "transport", &temp, NULL); in test_initialize() 133 g_object_unref (temp); in test_initialize()
|
D | testbinaryprotocol.c | 107 ThriftSocket *temp = NULL; in test_initialize() local 118 g_object_get (G_OBJECT(protocol), "transport", &temp, NULL); in test_initialize() 119 g_object_unref (temp); in test_initialize()
|
D | testcompactprotocol.c | 114 ThriftSocket *temp = NULL; in test_initialize() local 125 g_object_get (G_OBJECT (protocol), "transport", &temp, NULL); in test_initialize() 126 g_object_unref (temp); in test_initialize()
|
/thrift-3.4.0/lib/cpp/test/ |
D | TPipeInterruptTest.cpp | 55 std::shared_ptr<TTransport> temp = pipe->accept(); in acceptWorker() local
|
/thrift-3.4.0/lib/go/thrift/ |
D | serializer_types_test.go | 255 temp := int8(v) 256 p.B = temp 391 temp := MyTestEnum(v) 392 p.E = temp
|
/thrift-3.4.0/lib/cpp/src/thrift/transport/ |
D | TFileTransport.cpp | 290 TFileTransportBuffer* temp = enqueueBuffer_; in swapEventBuffers() local 292 dequeueBuffer_ = temp; in swapEventBuffers()
|
/thrift-3.4.0/lib/dart/lib/src/protocol/ |
D | t_compact_protocol.dart | 416 // TODO look at using temp for small strings?
|
/thrift-3.4.0/compiler/cpp/tests/catch/ |
D | catch.hpp | 582 Ptr temp( p ); in operator =() local 583 swap( temp ); in operator =() 587 Ptr temp( other ); in operator =() local 588 swap( temp ); in operator =() 8269 TestCase temp( other ); in operator =() local 8270 swap( temp ); in operator =()
|
/thrift-3.4.0/ |
D | CHANGES.md | 2101 …issues.apache.org/jira/browse/THRIFT-3306) - Java: TBinaryProtocol: Use 1 temp buffer instead of a… 2515 - [THRIFT-3114](https://issues.apache.org/jira/browse/THRIFT-3114) - Using local temp variables to …
|