Lines Matching refs:vt
140 VARTYPE vt; in com_write_dimension() local
143 if (FAILED(SafeArrayGetVartype(V_ARRAY(&obj->v), &vt)) || vt == VT_EMPTY) { in com_write_dimension()
144 vt = V_VT(&obj->v) & ~VT_ARRAY; in com_write_dimension()
153 if (V_VT(&v) != vt) { in com_write_dimension()
154 VariantChangeType(&v, &v, 0, vt); in com_write_dimension()
157 if (vt == VT_VARIANT) { in com_write_dimension()
469 VARTYPE vt = VT_EMPTY; in com_object_cast() local
487 vt = VT_INT; in com_object_cast()
490 vt = VT_R8; in com_object_cast()
495 vt = VT_BOOL; in com_object_cast()
498 vt = VT_BSTR; in com_object_cast()
504 if (vt != VT_EMPTY && vt != V_VT(&v)) { in com_object_cast()
505 res = VariantChangeType(&v, &v, 0, vt); in com_object_cast()