/reactos/base/applications/cmdutils/wscript/ |
H A D | host.c | 325 LONG ubound, lbound; in Host_Echo() local 327 int ubound, lbound; in Host_Echo() local 341 SafeArrayGetUBound(args, 1, &ubound); in Host_Echo() 347 argc = ubound-lbound+1; in Host_Echo()
|
/reactos/dll/win32/jscript/ |
H A D | vbarray.c | 149 int i, size = 1, ubound, lbound; in VBArray_toArray() local 160 SafeArrayGetUBound(vbarray->safearray, i, &ubound); in VBArray_toArray() 161 size *= ubound-lbound+1; in VBArray_toArray()
|
/reactos/dll/win32/msxml3/ |
H A D | element.c | 870 LONG lbound, ubound; in domelem_put_nodeTypedValue() local 878 SafeArrayGetUBound(V_ARRAY(&value), 1, &ubound); in domelem_put_nodeTypedValue() 881 len = (ubound - lbound + 1)*SafeArrayGetElemsize(V_ARRAY(&value)); in domelem_put_nodeTypedValue() 903 LONG lbound, ubound; in domelem_put_nodeTypedValue() local 911 SafeArrayGetUBound(V_ARRAY(&value), 1, &ubound); in domelem_put_nodeTypedValue() 914 len = (ubound - lbound + 1)*SafeArrayGetElemsize(V_ARRAY(&value)); in domelem_put_nodeTypedValue()
|
/reactos/modules/rostests/winetests/jscript/ |
H A D | api.js | 3019 ok(tmp.ubound() == 4, "tmp.ubound() = " + tmp.ubound()); 3020 ok(tmp.ubound("2") == 3, "tmp.ubound(\"2\") = " + tmp.ubound("2"));
|
/reactos/modules/rostests/winetests/oleaut32/ |
H A D | tmarshal.c | 922 LONG lbound, ubound, i; in Widget_VarArg() local 932 hr = SafeArrayGetUBound(values, 1, &ubound); in Widget_VarArg() 934 …ok(ubound == numexpect-1, "SafeArrayGetUBound returned %d, but expected %d\n", ubound, numexpect-1… in Widget_VarArg() 939 for (i=0; i<=ubound-lbound; i++) in Widget_VarArg()
|
/reactos/dll/win32/vbscript/ |
H A D | global.c | 1097 LONG ubound; in Global_UBound() local 1124 hres = SafeArrayGetUBound(sa, dim, &ubound); in Global_UBound() 1128 return return_int(res, ubound); in Global_UBound()
|
/reactos/modules/rostests/winetests/msxml3/ |
H A D | domdoc.c | 8542 LONG ubound, lbound; in test_put_nodeTypedValue() local 8602 ubound = 0; in test_put_nodeTypedValue() 8603 hr = SafeArrayGetUBound(V_ARRAY(&value), 1, &ubound); in test_put_nodeTypedValue() 8605 ok(ubound == 2, "got %d\n", ubound); in test_put_nodeTypedValue() 8643 ubound = 0; in test_put_nodeTypedValue() 8644 hr = SafeArrayGetUBound(V_ARRAY(&value), 1, &ubound); in test_put_nodeTypedValue() 8646 ok(ubound == 6, "got %d\n", ubound); in test_put_nodeTypedValue() 8692 ubound = 0; in test_put_nodeTypedValue() 8693 hr = SafeArrayGetUBound(V_ARRAY(&value), 1, &ubound); in test_put_nodeTypedValue() 8695 ok(ubound == 15, "got %d\n", ubound); in test_put_nodeTypedValue()
|
/reactos/dll/win32/oleaut32/ |
H A D | typelib.c | 7663 LONG j, ubound; in ITypeInfo_fnInvoke() local 7665 hres = SafeArrayGetUBound(a, 1, &ubound); in ITypeInfo_fnInvoke() 7677 for (j = 0; j <= ubound; j++) in ITypeInfo_fnInvoke()
|