Home
last modified time | relevance | path

Searched refs:type_spec (Results 1 – 25 of 300) sorted by relevance

12345678910>>...12

/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/lib/py/util/
H A Drandomizer.py100 self.type_spec = type_spec
102 self.type_name = type_spec.get_type_name()
149 return ((self.type_spec == other.type_spec) and
618 return self.type_spec.construct_instance(
662 subtypes = self.type_spec.get_subtypes()
726 subtypes = self.type_spec.get_subtypes()
744 self._is_union = self.type_spec.is_union
927 def _get_randomizer_class(type_spec): argument
929 if type_spec.is_enum():
931 return _ttype_to_randomizer[type_spec.ttype]
[all …]
/dports/cad/verilator/verilator-4.216/test_regress/t/
H A Dt_dpi_accessors_macros_inc.vh13 `define R_ACCESS(type_spec, name, expr) \
15 function bit type_spec name``_read; \
19 `define W_ACCESS(type_spec, name, expr) \
22 input bit type_spec in; \
26 `define RW_ACCESS(type_spec, name, expr) \
27 `R_ACCESS (type_spec, name, expr); \
28 `W_ACCESS (type_spec, name, expr)
/dports/converters/p5-Cpanel-JSON-XS/Cpanel-JSON-XS-4.27/t/
H A D118_type.t378 my $json_string = encode_json($perl_struct, $type_spec);
386 my $json_string = encode_json($perl_struct, $type_spec);
392 my $type_spec = json_type_arrayof(JSON_TYPE_INT);
416 my $type_spec = json_type_hashof(JSON_TYPE_STRING);
458 $type_spec->{key3} = $type_spec;
459 weaken($type_spec->{key3});
463 $weakref = $type_spec;
476 ${$type_arrayof} = $type_spec;
480 $weakref = $type_spec;
499 $type_spec->{content} = $type_spec_content;
[all …]
/dports/net/yaz/yaz-5.31.1/src/
H A Drecord_render.c252 const char *type_spec, char *record_buf) in replace_node() argument
269 res = yaz_record_render(npr, 0, wrbuf, type_spec, &len); in replace_node()
294 const char *expr, const char *type_spec) in base64_render() argument
324 if (!replace_node(nmem, ptr, type_spec, output)) in base64_render()
357 const char *type_spec, int *len) in yaz_record_render() argument
366 const char *cp = type_spec; in yaz_record_render()
490 char *type_spec = nmem_malloc(nmem, in yaz_record_render() local
492 strcpy(type_spec, type); in yaz_record_render()
495 strcat(type_spec, "; charset="); in yaz_record_render()
496 strcat(type_spec, charset); in yaz_record_render()
[all …]
/dports/multimedia/sabbu/sabbu-0.3.0/Source/
H A DkrySubWriterSSA.cpp113 char *type_spec = NULL; in ComputeColumnFormats() local
119 type_spec = "s"; in ComputeColumnFormats()
123 type_spec = "d"; in ComputeColumnFormats()
127 type_spec = "f"; in ComputeColumnFormats()
136 if(!strcmp(type_spec, "s") || !strcmp(type_spec, "d")) in ComputeColumnFormats()
138 …nfo->format = kry_strdup_printf(KRY_LOC "%%%d%s", temp_info->width + (ptr != columns), type_spec); in ComputeColumnFormats()
140 else if(!strcmp(type_spec, "f")) in ComputeColumnFormats()
148 if(!strcmp(type_spec, "s") || !strcmp(type_spec, "d")) in ComputeColumnFormats()
150 temp_info->format = kry_strdup_printf(KRY_LOC "%%%s", type_spec); in ComputeColumnFormats()
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/third_party/thriftpy/_shaded_thriftpy/protocol/
H A Djson.py97 elem_type, type_spec = spec
99 elem_type, type_spec = spec, None
101 return [obj_value(elem_type, i, type_spec) for i in val]
106 elem_type, type_spec = spec
108 elem_type, type_spec = spec, None
110 return [json_value(elem_type, i, type_spec) for i in val]
/dports/misc/adios2/ADIOS2-2.7.1/thirdparty/ffs/ffs/cod/
H A Dcod.structs11 sm_list type_spec;
127 sm_list type_spec;
139 sm_list type_spec;
149 sm_list type_spec;
178 sm_list type_spec;
H A Dcod.y851 type_spec = $1;
856 decl->node.declaration.type_spec = type_spec;
867 decl->node.declaration.type_spec = type_spec;
871 decl->node.array_type_decl.type_spec = type_spec;
882 decl->node.array_type_decl.type_spec = type_spec;
892 type_spec = type_spec->next;
1082 decl->node.declaration.type_spec = type_spec;
1093 decl->node.declaration.type_spec = type_spec;
1097 decl->node.array_type_decl.type_spec = type_spec;
1108 decl->node.array_type_decl.type_spec = type_spec;
[all …]
/dports/devel/py-thriftpy2/thriftpy2-0.4.14/thriftpy2/protocol/
H A Djson.py103 elem_type, type_spec = spec
105 elem_type, type_spec = spec, None
107 return [obj_value(elem_type, i, type_spec) for i in val]
112 elem_type, type_spec = spec
114 elem_type, type_spec = spec, None
116 return [json_value(elem_type, i, type_spec) for i in val]
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/binjs_meta-0.5.2/src/
H A Dexport.rs200 type_spec: &TypeSpec, in import_typespec()
203 debug!(target: "export_utils", "import_typespec {:?} => {:?}", public_name, type_spec); in import_typespec()
204 match *type_spec { in import_typespec()
216 typedef.with_type(type_spec.clone().required()); in import_typespec()
223 let name = match *type_spec { in import_typespec()
226 _ => self.builder.node_name(&format!("@@{:?}", type_spec)), in import_typespec()
353 …g to create a sum containing {}, which isn't an interface or a sum of interfaces", type_spec, name) in import_typespec()
397 let spec_name = Self::type_spec(type_.spec()); in type_()
405 pub fn type_spec(spec: &TypeSpec) -> String { in type_spec() method
428 .map(Self::type_spec) in type_spec()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/binjs_meta/src/
H A Dexport.rs200 type_spec: &TypeSpec, in import_typespec()
203 debug!(target: "export_utils", "import_typespec {:?} => {:?}", public_name, type_spec); in import_typespec()
204 match *type_spec { in import_typespec()
216 typedef.with_type(type_spec.clone().required()); in import_typespec()
223 let name = match *type_spec { in import_typespec()
226 _ => self.builder.node_name(&format!("@@{:?}", type_spec)), in import_typespec()
353 …g to create a sum containing {}, which isn't an interface or a sum of interfaces", type_spec, name) in import_typespec()
397 let spec_name = Self::type_spec(type_.spec()); in type_()
405 pub fn type_spec(spec: &TypeSpec) -> String { in type_spec() method
428 .map(Self::type_spec) in type_spec()
/dports/textproc/R-cran-stringi/stringi/src/
H A Dstri_sprintf.cpp398 char type_spec; member in StriSprintfFormatSpec
435 type_spec = f[j1]; in StriSprintfFormatSpec()
437 if (strchr(STRI_SPRINTF_SPEC_INTEGER, type_spec) != nullptr) in StriSprintfFormatSpec()
439 else if (strchr(STRI_SPRINTF_SPEC_DOUBLE, type_spec) != nullptr) in StriSprintfFormatSpec()
551 f.push_back(type_spec); in getFormatString()
558 if (type_spec == 'i') in normalise()
559 type_spec = 'd'; // synonym in normalise()
597 if (type_spec != 'd') { // and not i, because i->d in normalise()
660 STRI_ASSERT(type_spec != 'i'); // normalised i->d in preformatDatum_doxX()
680 STRI_ASSERT(type_spec == 'd' || !sign_plus); in preformatDatum_doxX()
[all …]
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/utils/thrift/thrift/protocol/
H A DTDenseProtocol.h81 TypeSpec* type_spec = NULL) :
83 type_spec_(type_spec),
87 void setTypeSpec(TypeSpec* type_spec) in setTypeSpec() argument
89 type_spec_ = type_spec; in setTypeSpec()
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/columnstore/columnstore/utils/thrift/thrift/protocol/
H A DTDenseProtocol.h81 TypeSpec* type_spec = NULL) :
83 type_spec_(type_spec),
87 void setTypeSpec(TypeSpec* type_spec) in setTypeSpec() argument
89 type_spec_ = type_spec; in setTypeSpec()
/dports/graphics/gthumb/gthumb-3.10.1/gthumb/
H A Dgth-main.c750 GthTypeSpec *type_spec; in _gth_main_create_type_spec() local
767 if (type_spec->names == NULL) { in _gth_main_create_type_spec()
772 type_spec->names[i] = NULL; in _gth_main_create_type_spec()
775 if (type_spec->values == NULL) { in _gth_main_create_type_spec()
780 type_spec->values[i].g_type = 0; in _gth_main_create_type_spec()
792 type_spec->names[type_spec->n_params] = name; in _gth_main_create_type_spec()
793 g_value_init (&type_spec->values[type_spec->n_params], G_PARAM_SPEC_VALUE_TYPE (pspec)); in _gth_main_create_type_spec()
794 G_VALUE_COLLECT (&type_spec->values[type_spec->n_params], var_args, 0, &error); in _gth_main_create_type_spec()
798 g_value_unset (&type_spec->values[type_spec->n_params]); in _gth_main_create_type_spec()
801 type_spec->n_params++; in _gth_main_create_type_spec()
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A Dgrammar.idl103 (15) <value_box_dcl> "valuetype" <id> <type_spec>
142 (22) <state_member> "public" <type_spec> <declarators> ";"
143 "private" <type_spec> <declarators> ";"
234 (43) <type_declarator> <type_spec> <declarators>
236 (44) <type_spec> <simple_type_spec>
310 (71) <member> <type_spec> <declarators> ";"
333 (77) <element_spec> <type_spec> <declarator>
H A Dgrammar3.idl118 (15) <value_box_dcl> "valuetype" <id> <type_spec>
157 (22) <state_member> "public" <type_spec> <declarators> ";"
158 "private" <type_spec> <declarators> ";"
249 (43) <type_declarator> <type_spec> <declarators>
251 (44) <type_spec> <simple_type_spec>
325 (71) <member> <type_spec> <declarators> ";"
348 (77) <element_spec> <type_spec> <declarator>
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A Dgrammar.idl103 (15) <value_box_dcl> "valuetype" <id> <type_spec>
142 (22) <state_member> "public" <type_spec> <declarators> ";"
143 "private" <type_spec> <declarators> ";"
234 (43) <type_declarator> <type_spec> <declarators>
236 (44) <type_spec> <simple_type_spec>
310 (71) <member> <type_spec> <declarators> ";"
333 (77) <element_spec> <type_spec> <declarator>
/dports/sysutils/dua-cli/dua-cli-2.14.11/cargo-crates/windows_gen-0.9.1/src/tables/
H A Dmod.rs19 mod type_spec; module
37 pub use type_spec::*;
/dports/devel/ORBit2/ORBit2-2.14.19/src/services/imodule/
H A Dorbit-imodule-utils.c61 typecodes, IDL_MEMBER (IDL_LIST (l).data).type_spec); in ORBit_imodule_get_struct_members()
218 typecodes, IDL_MEMBER (member).type_spec); in ORBit_imodule_get_union_members()
381 IDL_TYPE_DCL (tree).type_spec); in ORBit_imodule_get_typespec()
389 IDL_MEMBER (tree).type_spec); in ORBit_imodule_get_typespec()
457 IDL_LIST (l).data).element_spec).type_spec; in ORBit_imodule_find_c_align()
468 IDL_tree member = IDL_MEMBER (IDL_LIST (l).data).type_spec; in ORBit_imodule_find_c_align()
487 node, IDLN_TYPE_DCL, NULL)).type_spec; in ORBit_imodule_find_c_align()
525 typecodes, IDL_MEMBER (tree).type_spec); in ORBit_imodule_get_typecode()
669 typecodes, IDL_TYPE_DCL (type_dcl).type_spec), in ORBit_imodule_get_typecode()
881 typespec, IDLN_TYPE_DCL, NULL)).type_spec); in ORBit_imodule_type_is_fixed_length()
[all …]
/dports/editors/helix/helix-0.5.0/runtime/queries/go/
H A Dtextobjects.scm12 …(type_spec (type_identifier) (struct_type (field_declaration_list (_)?) @class.inside))) @class.ar…
15 …(type_spec (type_identifier) (interface_type (method_spec_list (_)?) @class.inside))) @class.around
/dports/lang/python310/Python-3.10.1/Modules/_sqlite/
H A Dprepare_protocol.c56 static PyType_Spec type_spec = { variable
69 … pysqlite_PrepareProtocolType = (PyTypeObject *)PyType_FromModuleAndSpec(module, &type_spec, NULL); in pysqlite_prepare_protocol_setup_types()
/dports/lang/python311/Python-3.11.0a3/Modules/_sqlite/
H A Dprepare_protocol.c56 static PyType_Spec type_spec = { variable
67 PyObject *type = PyType_FromModuleAndSpec(module, &type_spec, NULL); in pysqlite_prepare_protocol_setup_types()
/dports/misc/adios2/ADIOS2-2.7.1/thirdparty/ffs/ffs/cod/pregen_source/Linux/
H A Dcod.y849 type_spec = $1;
854 decl->node.declaration.type_spec = type_spec;
865 decl->node.declaration.type_spec = type_spec;
869 decl->node.array_type_decl.type_spec = type_spec;
880 decl->node.array_type_decl.type_spec = type_spec;
890 type_spec = type_spec->next;
1080 decl->node.declaration.type_spec = type_spec;
1091 decl->node.declaration.type_spec = type_spec;
1095 decl->node.array_type_decl.type_spec = type_spec;
1106 decl->node.array_type_decl.type_spec = type_spec;
[all …]
/dports/misc/adios2/ADIOS2-2.7.1/thirdparty/ffs/ffs/cod/pregen_source/Windows/
H A Dcod.y849 type_spec = $1;
854 decl->node.declaration.type_spec = type_spec;
865 decl->node.declaration.type_spec = type_spec;
869 decl->node.array_type_decl.type_spec = type_spec;
880 decl->node.array_type_decl.type_spec = type_spec;
890 type_spec = type_spec->next;
1080 decl->node.declaration.type_spec = type_spec;
1091 decl->node.declaration.type_spec = type_spec;
1095 decl->node.array_type_decl.type_spec = type_spec;
1106 decl->node.array_type_decl.type_spec = type_spec;
[all …]

12345678910>>...12