Home
last modified time | relevance | path

Searched refs:old_type (Results 1 – 25 of 1270) sorted by relevance

12345678910>>...51

/dports/devel/monotone/monotone-1.1/test/func/automate_inventory_restricted/
H A D__driver__.lua55 old_type = "file",
71 old_type = "file",
84 old_type = "file",
131 old_type = "file",
168 old_type = "file",
203 old_type = "file",
242 old_type = "file",
276 old_type = "file",
313 old_type = "file",
362 old_type = "file",
[all …]
/dports/devel/py-mypy/mypy-0.910/mypy/
H A Dsemanal_newtype.py63 old_type = get_proper_type(old_type)
66 if old_type is None:
73 if isinstance(old_type, TupleType):
76 newtype_class_info.tuple_type = old_type
77 elif isinstance(old_type, Instance):
78 if old_type.type.is_protocol:
80 newtype_class_info = self.build_newtype_typeinfo(name, old_type, old_type, s.line)
82 if old_type is not None:
86 old_type = AnyType(TypeOfAny.from_error)
173 if old_type is None or isinstance(old_type, PlaceholderType):
[all …]
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/utilities/
H A Dfind_breaking_changes.py189 if is_specified_scalar_type(old_type)
298 old_type: GraphQLEnumType, new_type: GraphQLEnumType
460 old_type: GraphQLType, new_type: GraphQLType
462 if is_list_type(old_type):
477 if is_non_null_type(old_type):
482 cast(GraphQLNonNull, old_type).of_type,
489 and cast(GraphQLNamedType, old_type).name
501 old_type: GraphQLType, new_type: GraphQLType
503 if is_list_type(old_type):
512 if is_non_null_type(old_type):
[all …]
/dports/finance/prestashop/prestashop/install/upgrade/php/
H A Dp15018_change_image_types.php51 foreach ($type_array as $old_type => $new_type) {
55 FROM `'._DB_PREFIX_.'image_type` WHERE name = "'.$old_type.'" LIMIT 1)');
65 foreach ($type_array as $old_type => $new_type) {
69 FROM `'._DB_PREFIX_.'image_type` WHERE name = "'.$old_type.'" LIMIT 1)');
74 foreach ($type_array as $old_type => $new_type) {
76 …e('UPDATE `'._DB_PREFIX_.'image_type` SET name = "'.$new_type[0].'" WHERE name = "'.$old_type.'"');
93 foreach ($replace_types['products'] as $old_type => $new_type) {
105 foreach ($replace_types['products'] as $old_type => $new_type) {
125 foreach ($type_array as $old_type => $new_type) {
126 …if (preg_match('/^([0-9]+|[a-z]{2}-default)\-'.$old_type.'\.jpg$/i', $file, $matches) && is_array(…
[all …]
/dports/devel/monotone/monotone-1.1/test/func/automate_inventory/
H A D__driver__.lua63 old_type = "file",
82 old_type = "file",
90 old_type = "file",
97 old_type = "file",
117 old_type = "file",
156 old_type = "file",
169 old_type = "file",
264 old_type = "file",
277 old_type = "file",
290 old_type = "file",
[all …]
/dports/net/mpich2/mpich2-1.5/src/mpi/datatype/
H A Dtype_vector.c30 int MPIR_Type_vector_impl(int count, int blocklength, int stride, MPI_Datatype old_type, MPI_Dataty… in MPIR_Type_vector_impl() argument
41 old_type, in MPIR_Type_vector_impl()
57 &old_type); in MPIR_Type_vector_impl()
99 MPI_Datatype old_type, in MPI_Type_vector() argument
119 MPIR_ERRTEST_DATATYPE(old_type, "datatype", mpi_errno); in MPI_Type_vector()
121 if (old_type != MPI_DATATYPE_NULL && HANDLE_GET_KIND(old_type) != HANDLE_KIND_BUILTIN) { in MPI_Type_vector()
122 MPID_Datatype_get_ptr(old_type, old_ptr); in MPI_Type_vector()
133 mpi_errno = MPIR_Type_vector_impl(count, blocklength, stride, old_type, newtype_p); in MPI_Type_vector()
149 "**mpi_type_vector %d %d %d %D %p", count, blocklength, stride, old_type, newtype_p); in MPI_Type_vector()
H A Dtype_contiguous.c31 MPI_Datatype old_type, in MPIR_Type_contiguous_impl() argument
39 old_type, in MPIR_Type_contiguous_impl()
52 &old_type); in MPIR_Type_contiguous_impl()
93 MPI_Datatype old_type, in MPI_Type_contiguous() argument
111 MPIR_ERRTEST_DATATYPE(old_type, "datatype", mpi_errno); in MPI_Type_contiguous()
113 if (HANDLE_GET_KIND(old_type) != HANDLE_KIND_BUILTIN) { in MPI_Type_contiguous()
114 MPID_Datatype_get_ptr(old_type, datatype_ptr); in MPI_Type_contiguous()
125 mpi_errno = MPIR_Type_contiguous_impl(count, old_type, new_type_p); in MPI_Type_contiguous()
141 "**mpi_type_contiguous %d %D %p", count, old_type, new_type_p); in MPI_Type_contiguous()
H A Dtype_hvector.c30 int MPIR_Type_hvector_impl(int count, int blocklen, MPI_Aint stride, MPI_Datatype old_type, MPI_Dat… in MPIR_Type_hvector_impl() argument
41 old_type, in MPIR_Type_hvector_impl()
55 &old_type); in MPIR_Type_hvector_impl()
96 MPI_Datatype old_type, in MPI_Type_hvector() argument
115 MPIR_ERRTEST_DATATYPE(old_type, "datatype", mpi_errno); in MPI_Type_hvector()
117 if (HANDLE_GET_KIND(old_type) != HANDLE_KIND_BUILTIN) { in MPI_Type_hvector()
118 MPID_Datatype_get_ptr(old_type, datatype_ptr); in MPI_Type_hvector()
131 mpi_errno = MPIR_Type_hvector_impl(count, blocklen, stride, old_type, newtype_p); in MPI_Type_hvector()
147 "**mpi_type_hvector %d %d %d %D %p", count, blocklen, stride, old_type, newtype_p); in MPI_Type_hvector()
H A Dtype_indexed.c31 MPI_Datatype old_type, MPI_Datatype *newtype) in MPIR_Type_indexed_impl() argument
43 old_type, in MPIR_Type_indexed_impl()
68 &old_type); in MPIR_Type_indexed_impl()
135 MPI_Datatype old_type, in MPI_Type_indexed() argument
159 MPIR_ERRTEST_DATATYPE(old_type, "datatype", mpi_errno); in MPI_Type_indexed()
161 if (HANDLE_GET_KIND(old_type) != HANDLE_KIND_BUILTIN) { in MPI_Type_indexed()
162 MPID_Datatype_get_ptr( old_type, datatype_ptr ); in MPI_Type_indexed()
178 mpi_errno = MPIR_Type_indexed_impl(count, blocklens, indices, old_type, newtype); in MPI_Type_indexed()
194 "**mpi_type_indexed %d %p %p %D %p", count,blocklens, indices, old_type, newtype); in MPI_Type_indexed()
H A Dtype_hindexed.c82 MPI_Datatype old_type, in MPI_Type_hindexed() argument
106 MPIR_ERRTEST_DATATYPE(old_type, "datatype", mpi_errno); in MPI_Type_hindexed()
112 if (HANDLE_GET_KIND(old_type) != HANDLE_KIND_BUILTIN) { in MPI_Type_hindexed()
113 MPID_Datatype_get_ptr( old_type, datatype_ptr ); in MPI_Type_hindexed()
134 old_type, in MPI_Type_hindexed()
155 &old_type); in MPI_Type_hindexed()
173 "**mpi_type_hindexed %d %p %p %D %p", count, blocklens, indices, old_type, newtype); in MPI_Type_hindexed()
/dports/devel/monotone/monotone-1.1/test/func/automate_inventory_options/
H A Dexpected-renames-source.stdout2 old_type "directory"
9 old_type "directory"
15 old_type "file"
20 old_type "file"
26 old_type "file"
32 old_type "file"
38 old_type "file"
H A Dexpected-no-ignored.stdout2 old_type "directory"
9 old_type "directory"
22 old_type "file"
27 old_type "file"
34 old_type "file"
47 old_type "file"
54 old_type "file"
H A Dexpected-no-unknown.stdout2 old_type "directory"
9 old_type "directory"
22 old_type "file"
31 old_type "file"
38 old_type "file"
51 old_type "file"
58 old_type "file"
H A Dexpected-none.stdout2 old_type "directory"
9 old_type "directory"
22 old_type "file"
31 old_type "file"
38 old_type "file"
51 old_type "file"
58 old_type "file"
H A Dexpected-renames-both.stdout2 old_type "directory"
9 old_type "directory"
15 old_type "file"
20 old_type "file"
26 old_type "file"
32 old_type "file"
38 old_type "file"
H A Dexpected-no-unchanged.stdout8 old_type "file"
17 old_type "file"
24 old_type "file"
37 old_type "file"
/dports/chinese/fcitx/fcitx-4.2.9.7/src/lib/fcitx-utils/
H A Dutils.h912 #define __FCITX_BYTE_CAST(new_val, old_type, old_val) do { \ argument
913 old_type __fx_byte_cast_old = (old_val); \
916 sizeof(old_type) < sizeof(new_val) ? \
917 sizeof(old_type) : sizeof(new_val)); \
946 #define _FCITX_CAST_TO_PTR(new_val, old_type, old_val) do { \ argument
949 old_type, old_val); \
955 _FCITX_CAST_TO_INT(new_type, new_val, old_type, old_val)
959 _FCITX_CAST_TO_PTR(new_val, old_type, old_val)
967 #define FCITX_RETURN_AS_PTR(old_type, old_val) do { \ argument
969 old_type, old_val); \
[all …]
/dports/net-mgmt/observium/observium/update/
H A D335.php20 $old_type = $mib . '-' . $entry['table']; variable
22 if ($old_type != $new_type)
24 …foreach (dbFetchRows("SELECT * FROM `sensors` WHERE `sensor_type` = ?", array($old_type)) as $sens…
29 …cr'], 'class' => $sensor['sensor_class'], 'index' => $sensor['sensor_index'], 'type' => $old_type);
/dports/textproc/p5-SGMLSpm/SGMLSpm/
H A DOutput.pm195 my ($old_type,$old_data) = ($current_output_type,$current_output_data);
199 $old_type eq 'handle' && do {
202 $old_type eq 'file' && do {
206 $old_type eq 'string' && do {
209 $old_type eq 'nul' && do {
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/c128/
H A Dc128model.c145 int old_type;
169 old_type = is_new_sid(old_sid_model);
172 if (old_type != new_type) {
183 int old_type; in c128model_set() local
207 old_type = is_new_sid(old_sid_model); in c128model_set()
210 if (old_type != new_type) { in c128model_set()
/dports/graphics/gimp-app/gimp-2.10.30/app/core/
H A Dgimpimage-convert-type.c51 GimpImageBaseType old_type; in gimp_image_convert_type() local
113 old_type = gimp_image_get_base_type (image); in gimp_image_convert_type()
120 if (old_type == GIMP_GRAY || in gimp_image_convert_type()
138 if (old_type == GIMP_INDEXED) in gimp_image_convert_type()
143 if (old_type == GIMP_GRAY || in gimp_image_convert_type()
/dports/emulators/vice/vice-3.5/src/c128/
H A Dc128model.c151 int old_type;
177 old_type = is_new_sid(old_sid_model);
180 if (old_type != new_type) {
191 int old_type; in c128model_set() local
216 old_type = is_new_sid(old_sid_model); in c128model_set()
219 if (old_type != new_type) { in c128model_set()
/dports/databases/recutils/recutils-1.8/lib/
H A Drandom_r.c266 int old_type = buf->rand_type; in weak_alias() local
268 (old_type == TYPE_0 in weak_alias()
270 : (MAX_TYPES * (buf->rptr - old_state)) + old_type)); in weak_alias()
325 int old_type; in weak_alias() local
333 old_type = buf->rand_type; in weak_alias()
336 (old_type == TYPE_0 in weak_alias()
338 : (MAX_TYPES * (buf->rptr - old_state)) + old_type)); in weak_alias()
/dports/devel/gnulib/gnulib-20140202-stable/lib/
H A Drandom_r.c262 int old_type = buf->rand_type; in weak_alias() local
263 if (old_type == TYPE_0) in weak_alias()
266 old_state[-1] = (MAX_TYPES * (buf->rptr - old_state)) + old_type; in weak_alias()
323 int old_type; in weak_alias() local
331 old_type = buf->rand_type; in weak_alias()
333 if (old_type == TYPE_0) in weak_alias()
336 old_state[-1] = (MAX_TYPES * (buf->rptr - old_state)) + old_type; in weak_alias()
/dports/sysutils/cmogstored/cmogstored-1.8.1/lib/
H A Drandom_r.c266 int old_type = buf->rand_type; in weak_alias() local
268 (old_type == TYPE_0 in weak_alias()
270 : (MAX_TYPES * (buf->rptr - old_state)) + old_type)); in weak_alias()
325 int old_type; in weak_alias() local
333 old_type = buf->rand_type; in weak_alias()
336 (old_type == TYPE_0 in weak_alias()
338 : (MAX_TYPES * (buf->rptr - old_state)) + old_type)); in weak_alias()

12345678910>>...51