Home
last modified time | relevance | path

Searched refs:types (Results 1 – 25 of 43) sorted by relevance

12

/thrift-3.4.0/lib/nodejs/lib/thrift/
Dthrift.js178 copyList = function(lst, types) { argument
184 if (types.shift === undefined) {
185 type = types;
188 type = types[0];
199 result.push(type(val, types.slice(1)));
208 copyMap = function(obj, types){ argument
214 if (types.shift === undefined) {
215 type = types;
218 type = types[0];
230 result[prop] = type(val, types.slice(1));
/thrift-3.4.0/lib/dart/lib/src/
Dt_base.dart30 /// Get a field's value by [fieldId]. Primitive types will be wrapped in the
31 /// appropriate "boxed" types.
34 /// Set a field's value by [fieldId]. Primitive types must be "boxed" in the
/thrift-3.4.0/lib/haxe/src/org/apache/thrift/
DTBase.hx59 * Get a field's value by id. Primitive types will be wrapped in the
60 * appropriate "boxed" types.
67 * Set a field's value by id. Primitive types must be "boxed" in the
/thrift-3.4.0/compiler/cpp/tests/ocaml/
Dt_ocaml_generator_tests.cc38 string types() { return f_types_.str(); } in types() function in t_test_ocaml_generator
71 REQUIRE( snapshot == gen.types() );
DREADME.md4 types
/thrift-3.4.0/doc/specs/
Dthrift-compact-protocol.md38 * Base types
47 ## Base types
152 Message types are encoded with the following values:
170 order. Thrift's type system is not extensible; you can only encode the primitive types and structs.…
213 The following field-types can be encoded:
229 Note that because there are 2 specific field types for the boolean values, the encoding of a boolea…
258 The following element-types are used (see note below):
273 *Note*: Although field-types and element-types lists are currently very similar, there is _no guara…
274 remain true after new types are added.
309 The element-types are the same as for lists. The full list is included in the 'List and set' sectio…
Dthrift-binary-protocol.md37 * Base types
46 ## Base types
137 Message types are encoded with the following values:
155 order. Thrift's type system is not extensible; you can only encode the primitive types and structs.…
191 The following field-types are used:
224 The element-type values are the same as field-types. The full list is included in the struct sectio…
252 The element-type values are the same as field-types. The full list is included in the struct sectio…
Dthrift.tex141 completely natively defined types, no matter what programming language they
143 types or wrapper objects. It also does not require that the developer write
152 The type system rests upon a few base types. In considering which types to
154 on the key types available in all programming languages, omitting any
155 niche types available only in specific languages.
157 The base types supported by Thrift are:
169 Of particular note is the absence of unsigned integer types. Because these
170 types have no direct translation to native primitive types in many languages,
195 the C++ template (or Java Generics) style. There are three types available:
209 code generator directives have been added to substitute custom types in
[all …]
/thrift-3.4.0/lib/js/src/
Dthrift.js1563 copyList = function(lst, types) { argument
1569 if (types.shift === undefined) {
1570 type = types;
1573 type = types[0];
1584 result.push(type(val, types.slice(1)));
1593 copyMap = function(obj, types) { argument
1599 if (types.shift === undefined) {
1600 type = types;
1603 type = types[0];
1615 result[prop] = type(val, types.slice(1));
/thrift-3.4.0/lib/ocaml/
DREADME.md32 module along with other relevant types and functions. The classes
44 Structs are turned into classes. The fields are all option types and
54 functions to_i and of_i which convert the ocaml types into ints. For
/thrift-3.4.0/tutorial/
Dtutorial.thrift32 * The first thing to know about are types. The available types in Thrift are:
77 * Thrift lets you do typedefs to get pretty names for your types. Standard
84 * types and structs are specified using JSON notation.
/thrift-3.4.0/contrib/thrift-maven-plugin/src/test/resources/idl/
Dtutorial.thrift32 * The first thing to know about are types. The available types in Thrift are:
72 * Thrift lets you do typedefs to get pretty names for your types. Standard
79 * types and structs are specified using JSON notation.
/thrift-3.4.0/tutorial/rs/
DREADME.md114 Thrift defines a number of types, each of which is translated into its Rust
129 traits and types in the generated code are namespaced appropriately.
196 Thrift has three container types: list, set and map. They are translated into
275 Thrift has 3 "optionality" types:
/thrift-3.4.0/lib/kotlin/cross-test-server/src/main/kotlin/org/apache/thrift/test/
DTestServer.kt26 import com.github.ajalt.clikt.parameters.types.enum
27 import com.github.ajalt.clikt.parameters.types.int
28 import com.github.ajalt.clikt.parameters.types.long
/thrift-3.4.0/lib/rs/
DREADME.md16 serialize and deserialize types and implement RPC. Users interact with these
17 types and services by writing their own code on top.
51 * **[THRIFT-5360]** - No longer define OR generate `description()` methods for `Error` types.
54 Library error types also do not implement `Error.description()`. Also, as a result of this change
/thrift-3.4.0/lib/php/lib/Protocol/
DTCompactProtocol.php501 $types = 0;
503 $result += $this->readUByte($types);
505 $val_type = $this->getTType($types);
506 $key_type = $this->getTType($types >> 4);
/thrift-3.4.0/
DLANGUAGES.md48 <th colspan=1 align=center>Field types</th>
58 <!-- Field types -----------><th>Uuid</th>
71 <!-- Field types -----------><td><img src="/doc/images/cred.png" alt=""/></td>
83 <!-- Field types -----------><td><img src="/doc/images/cred.png" alt=""/></td>
95 <!-- Field types -----------><td><img src="/doc/images/cred.png" alt=""/></td>
107 <!-- Field types -----------><td><img src="/doc/images/cred.png" alt=""/></td>
119 <!-- Field types -----------><td><img src="/doc/images/cred.png" alt=""/></td>
131 <!-- Field types -----------><td><img src="/doc/images/cgrn.png" alt="Yes"/></td>
143 <!-- Field types -----------><td><img src="/doc/images/cgrn.png" alt="Yes"/></td>
155 <!-- Field types -----------><td><img src="/doc/images/cred.png" alt=""/></td>
[all …]
/thrift-3.4.0/lib/py/src/protocol/
DTCompactProtocol.py384 types = 0
386 types = self.__readUByte()
387 vtype = self.__getTType(types)
388 ktype = self.__getTType(types >> 4)
/thrift-3.4.0/test/partial/
Dthrift_test_schema.thrift23 // It includes all field types and most combinations of complex types.
/thrift-3.4.0/contrib/transport-sample/client/
DReadMe.txt32 named client.pch and a precompiled types file named StdAfx.obj.
/thrift-3.4.0/contrib/transport-sample/server/
DReadMe.txt32 named server.pch and a precompiled types file named StdAfx.obj.
/thrift-3.4.0/lib/d/src/thrift/
Dindex.d12 …artifacts in these modules have options for specifying the exact protocol types used. In this case…
/thrift-3.4.0/lib/c_glib/
DREADME.md41 The compiler's handling of namespaces when generating the name of types,
/thrift-3.4.0/aclocal/
Dax_lib_event.m410 dnl This macro requires that #include <sys/types.h> works and defines u_char.
79 #include <sys/types.h>
/thrift-3.4.0/lib/nodejs/test/
DtestAll.sh99 TYPES_PACKAGE=${EPISODIC_DIR}/node_modules/types-package

12