Lines Matching refs:vt
149 VARTYPE vt; in com_write_dimension() local
152 if (FAILED(SafeArrayGetVartype(V_ARRAY(&obj->v), &vt)) || vt == VT_EMPTY) { in com_write_dimension()
153 vt = V_VT(&obj->v) & ~VT_ARRAY; in com_write_dimension()
162 if (V_VT(&v) != vt) { in com_write_dimension()
163 VariantChangeType(&v, &v, 0, vt); in com_write_dimension()
166 if (vt == VT_VARIANT) { in com_write_dimension()
492 VARTYPE vt = VT_EMPTY; in com_object_cast() local
511 vt = VT_INT; in com_object_cast()
514 vt = VT_R8; in com_object_cast()
519 vt = VT_BOOL; in com_object_cast()
522 vt = VT_BSTR; in com_object_cast()
528 if (vt != VT_EMPTY && vt != V_VT(&v)) { in com_object_cast()
529 res = VariantChangeType(&v, &v, 0, vt); in com_object_cast()