Home
last modified time | relevance | path

Searched refs:translate_type (Results 1 – 25 of 56) sorted by relevance

123

/dports/devel/tla/tla-1.3.5/src/hackerlab/oblists/
H A Doblist.c33 static t_obqueue_type * translate_type (struct oblist_type * type);
84 if (0 > init_obqueue (LEFT(ol), limits, elt_size, translate_type (type), (void *)&olc)) in init_oblist()
86 if (0 > init_obqueue (RIGHT(ol), limits, elt_size, translate_type (type), (void *)&olc)) in init_oblist()
106 uninit_obqueue (LEFT(ol), limits, elt_size, translate_type (type), (void *)&olc); in uninit_oblist()
107 uninit_obqueue (RIGHT(ol), limits, elt_size, translate_type (type), (void *)&olc); in uninit_oblist()
143 return ( obqueue_size (LEFT(ol), limits, elt_size, translate_type (type), (void *)&olc) in oblist_size()
162 return ( obqueue__room (LEFT(ol), limits, elt_size, translate_type (type), (void *)&olc) in oblist_room()
201 n = (n - obqueue_size (LEFT (ol), limits, elt_size, translate_type (type), (void *)&olc)); in oblist_burst()
227 gap = obqueue_size (LEFT(ol), limits, elt_size, translate_type (type), (void *)&olc); in oblist_range()
447 gap = obqueue_size (LEFT (ol), limits, elt_size, translate_type (type), (void *)&olc); in oblist_delete_n()
[all …]
/dports/lang/polyml/polyml-5.8.2/Tests/Succeed/
H A DTest015.ML9 fun translate_type args = #thy args
11 fun parse_usertype pos = translate_type
15 fun parse_expr inner pos args = translate_type args
/dports/net/liblinphone/linphone-3.12.0/wrappers/csharp/
H A Dgenwrapper.py133 def translate_type(self, _type, isArg, dllImport=True): member in CsharpTranslator
161 …return '{0} {1}'.format(self.translate_type(arg.type, True, dllImport), self.translate_argument_na…
174 methodElems['return'] = self.translate_type(method.returnType, False)
192 methodDict['impl']['type'] = self.translate_type(method.returnType, False, False)
225 elif self.translate_type(arg.type, False, False) == "bool":
227 elif self.get_class_array_type(self.translate_type(arg.type, False, False)) is not None:
228 listtype = self.get_class_array_type(self.translate_type(arg.type, False, False))
245 methodDict['property_return'] = self.translate_type(prop.returnType, False, False)
276 methodDict['property_return'] = self.translate_type(prop.args[0].type, True, False)
358 dllImportType = self.translate_type(arg.type, True, True)
[all …]
/dports/sysutils/bfs/bfs-2.3.1/
H A Ddir.c163 static enum bfs_type translate_type(int d_type) { in translate_type() function
214 return translate_type(de->d_type); in dirent_type()
253 de->type = translate_type(lde->d_type); in bfs_readdir()
/dports/www/flexget/Flexget-3.2.18/flexget/plugins/input/
H A Dfilmweb_watchlist.py20 def translate_type(type): function
58 type = translate_type(config['type'])
/dports/sysutils/boxbackup-devel/boxbackup-0.11_trunk_2979/lib/server/
H A Dmakeprotocol.pl475 my ($basic,$typename) = translate_type($ty);
1034 sub translate_type subroutine
1041 my (undef,$v_ty) = translate_type($v_type);
1056 my ($basic,$typename) = translate_type(@_);
1062 my ($basic,$typename) = translate_type(@_);
H A Dmakeprotocol.pl.in415 my ($basic,$typename) = translate_type($ty);
974 sub translate_type subroutine
981 my (undef,$v_ty) = translate_type($v_type);
996 my ($basic,$typename) = translate_type(@_);
1002 my ($basic,$typename) = translate_type(@_);
/dports/mail/sympa/sympa-6.2.62/src/lib/Sympa/
H A DDatabaseDriver.pm41 sub translate_type { subroutine
/dports/mail/sympa/sympa-6.2.62/src/lib/Sympa/DatabaseDriver/
H A DODBC.pm47 sub translate_type { subroutine
/dports/graphics/gimp-app/gimp-2.10.30/app/tools/
H A Dgimpeditselectiontool.c992 GimpTransformType translate_type; in gimp_edit_selection_tool_key_press() local
996 translate_type = GIMP_TRANSFORM_TYPE_SELECTION; in gimp_edit_selection_tool_key_press()
1000 translate_type = GIMP_TRANSFORM_TYPE_PATH; in gimp_edit_selection_tool_key_press()
1004 translate_type = GIMP_TRANSFORM_TYPE_LAYER; in gimp_edit_selection_tool_key_press()
1007 return gimp_edit_selection_tool_translate (tool, kevent, translate_type, in gimp_edit_selection_tool_key_press()
1014 GimpTransformType translate_type, in gimp_edit_selection_tool_translate() argument
1087 switch (translate_type) in gimp_edit_selection_tool_translate()
H A Dgimpeditselectiontool.h45 GimpTransformType translate_type,
/dports/devel/xsd/xsd-4.1.0.a11+dep/libxsd-frontend/xsd-frontend/transformations/
H A Dschema-per-type.hxx29 translate_type (String const& ns, String const& name) = 0;
/dports/security/nitrokey-app/nitrokey-app-1.4.2/src/ui/
H A Dpindialog.cpp114 PasswordKind translate_type(PinType type){ in translate_type() function
152 auto dialog = new DialogChangePassword(this, translate_type(_pinType)); in onOkButtonClicked()
/dports/sysutils/munin-contrib/contrib-c31cb28/plugins/varnish/
H A Dvarnish4_780 sub translate_type
929 $data = translate_type($data);
H A Dvarnish5_814 sub translate_type
977 $data = translate_type($data);
/dports/net/liblinphone/linphone-3.12.0/wrappers/cpp/
H A Dgenwrapper.py205 methodElems['return'] = self.translate_type(method.returnType)
234 methodElems['implReturn'] = self.translate_type(method.returnType, namespace=namespace)
236 methodElems['implReturn'] = self.translate_type(method.returnType, namespace=None)
374 …return '{0} {1}'.format(self.translate_type(arg.type, **params), CppTranslator.translate_argument_…
376 def translate_type(self, aType, **params): member in CppTranslator
489 res = self.translate_type(_type.containedTypeDesc)
491 res = self.translate_type(_type.containedTypeDesc, **params)
/dports/sysutils/munin-common/munin-2.0.67/plugins/node.d/
H A Dvarnish_.in742 sub translate_type
896 $data = translate_type($data);
/dports/sysutils/munin-node/munin-2.0.67/plugins/node.d/
H A Dvarnish_.in742 sub translate_type
896 $data = translate_type($data);
/dports/sysutils/munin-master/munin-2.0.67/plugins/node.d/
H A Dvarnish_.in742 sub translate_type
896 $data = translate_type($data);
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/snmp/src/compile/
H A Dsnmpc_lib.erl725 {SrcTableEntry, translate_type(ME#me.asn1_type)}}
846 translate_type(get_asn1_type(ColumnName, MEs, Line))
1025 asn1_types = lists:map(fun(T) -> translate_type(T) end,
1072 ME#me{asn1_type = translate_type(ME#me.asn1_type)}.
1081 lists:map(fun({Oid,ASN1type}) ->{Oid,translate_type(ASN1type)} end,
1088 {Oid, translate_type(ASN1type)}
1095 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Integer32' -> function
1097 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Counter' -> function
1099 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Gauge' -> function
1101 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Gauge32' -> function
[all …]
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/snmp/src/compile/
H A Dsnmpc_lib.erl727 {SrcTableEntry, translate_type(ME#me.asn1_type)}}
848 translate_type(get_asn1_type(ColumnName, MEs, Line))
1027 asn1_types = lists:map(fun(T) -> translate_type(T) end,
1074 ME#me{asn1_type = translate_type(ME#me.asn1_type)}.
1083 lists:map(fun({Oid,ASN1type}) ->{Oid,translate_type(ASN1type)} end,
1090 {Oid, translate_type(ASN1type)}
1097 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Integer32' -> function
1099 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Counter' -> function
1101 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Gauge' -> function
1103 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Gauge32' -> function
[all …]
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/snmp/src/compile/
H A Dsnmpc_lib.erl725 {SrcTableEntry, translate_type(ME#me.asn1_type)}}
846 translate_type(get_asn1_type(ColumnName, MEs, Line))
1025 asn1_types = lists:map(fun(T) -> translate_type(T) end,
1072 ME#me{asn1_type = translate_type(ME#me.asn1_type)}.
1081 lists:map(fun({Oid,ASN1type}) ->{Oid,translate_type(ASN1type)} end,
1088 {Oid, translate_type(ASN1type)}
1095 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Integer32' -> function
1097 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Counter' -> function
1099 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Gauge' -> function
1101 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Gauge32' -> function
[all …]
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/snmp/src/compile/
H A Dsnmpc_lib.erl725 {SrcTableEntry, translate_type(ME#me.asn1_type)}}
846 translate_type(get_asn1_type(ColumnName, MEs, Line))
1025 asn1_types = lists:map(fun(T) -> translate_type(T) end,
1072 ME#me{asn1_type = translate_type(ME#me.asn1_type)}.
1081 lists:map(fun({Oid,ASN1type}) ->{Oid,translate_type(ASN1type)} end,
1088 {Oid, translate_type(ASN1type)}
1095 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Integer32' -> function
1097 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Counter' -> function
1099 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Gauge' -> function
1101 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Gauge32' -> function
[all …]
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/snmp/src/compile/
H A Dsnmpc_lib.erl727 {SrcTableEntry, translate_type(ME#me.asn1_type)}}
848 translate_type(get_asn1_type(ColumnName, MEs, Line))
1027 asn1_types = lists:map(fun(T) -> translate_type(T) end,
1074 ME#me{asn1_type = translate_type(ME#me.asn1_type)}.
1083 lists:map(fun({Oid,ASN1type}) ->{Oid,translate_type(ASN1type)} end,
1090 {Oid, translate_type(ASN1type)}
1097 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Integer32' -> function
1099 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Counter' -> function
1101 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Gauge' -> function
1103 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Gauge32' -> function
[all …]
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/snmp/src/compile/
H A Dsnmpc_lib.erl727 {SrcTableEntry, translate_type(ME#me.asn1_type)}}
848 translate_type(get_asn1_type(ColumnName, MEs, Line))
1027 asn1_types = lists:map(fun(T) -> translate_type(T) end,
1074 ME#me{asn1_type = translate_type(ME#me.asn1_type)}.
1083 lists:map(fun({Oid,ASN1type}) ->{Oid,translate_type(ASN1type)} end,
1090 {Oid, translate_type(ASN1type)}
1097 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Integer32' -> function
1099 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Counter' -> function
1101 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Gauge' -> function
1103 translate_type(ASN1type) when ASN1type#asn1_type.bertype =:= 'Gauge32' -> function
[all …]

123