Home
last modified time | relevance | path

Searched refs:x (Results 251 – 275 of 1170) sorted by relevance

1...<<11121314151617181920>>...47

/trunk/main/sc/inc/
H A Dmiscuno.hxx80 #define SC_QUERYINTERFACE(x) \ argument
81 if (rType == getCppuType((const uno::Reference<x>*)0)) \
82 { return uno::makeAny(uno::Reference<x>(this)); }
87 #define SC_QUERY_MULTIPLE(x,y) \ argument
88 if (rType == getCppuType((const uno::Reference<x>*)0)) \
89 { uno::Any aR; aR <<= uno::Reference<x>(static_cast<y*>(this)); return aR; }
/trunk/main/connectivity/source/drivers/jdbc/
H A Dtools.cxx218 …m(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& x,sal_Int32 length) in createByteInputStream() argument
221 if( !t.pEnv || !x.is() ) in createByteInputStream()
237 x->readBytes(aData,length); in createByteInputStream()
245 …r(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& x,sal_Int32 length) in createCharArrayReader() argument
248 if( !t.pEnv || !x.is() ) in createCharArrayReader()
264 x->readBytes(aData,length); in createCharArrayReader()
/trunk/main/vcl/source/window/
H A Dtoolbox.cxx523 long x = 0; in ImplDrawGradientBackground() local
2974 pBox->DrawRect( Rectangle( x, y, x+1, y ) ); in ImplDrawMoreIndicator()
2975 x+=4; in ImplDrawMoreIndicator()
2976 pBox->DrawRect( Rectangle( x, y, x+1, y ) ); in ImplDrawMoreIndicator()
2977 x-=4; in ImplDrawMoreIndicator()
2992 pBox->DrawRect( Rectangle( x, y, x, y+1 ) ); in ImplDrawMoreIndicator()
2994 pBox->DrawRect( Rectangle( x, y, x, y+1 ) ); in ImplDrawMoreIndicator()
2996 x++; in ImplDrawMoreIndicator()
3031 pBox->DrawRect( Rectangle( x, y, x+width-1, y ) ); in ImplDrawDropdownArrow()
3032 y++; x++; in ImplDrawDropdownArrow()
[all …]
/trunk/main/salhelper/qa/
H A Dtest_api.cxx127 salhelper::ConditionWaiter::timedout x; in TEST_F() local
128 ASSERT_TRUE(typeid (x) == typeid (salhelper::ConditionWaiter::timedout)); in TEST_F()
130 typeid (&x) == typeid (salhelper::ConditionWaiter::timedout *)); in TEST_F()
132 typeid (const_cast< salhelper::ConditionWaiter::timedout const * >(&x)) in TEST_F()
136 (const_cast< salhelper::ConditionWaiter::timedout volatile * >(&x))) in TEST_F()
/trunk/main/sal/osl/os2/
H A Dsocket.c127 #define FAMILY_TO_NATIVE(x) (short)FamilyMap[x] argument
161 #define PROTOCOL_TO_NATIVE(x) ProtocolMap[x] argument
194 #define TYPE_TO_NATIVE(x) TypeMap[x] argument
242 #define OPTION_TO_NATIVE(x) OptionMap[x] argument
273 #define OPTION_LEVEL_TO_NATIVE(x) OptionLevelMap[x] argument
307 #define MSG_FLAG_TO_NATIVE(x) SocketMsgFlagMap[x] argument
340 #define DIRECTION_TO_NATIVE(x) SocketDirection[x] argument
413 #define ERROR_TO_NATIVE(x) osl_NativeFromSocketError(x) argument
/trunk/main/xml2cmp/source/inc/
H A Dprecomp.h42 #define REF( x ) (&(x)) argument
43 #define MREF( x ) (&(pThis->x)) argument
/trunk/main/chart2/source/view/charttypes/
H A DSplines.cxx85 double GetInterpolatedValue( double x );
374 double lcl_SplineCalculation::GetInterpolatedValue( double x ) in GetInterpolatedValue() argument
376 OSL_PRECOND( ( m_aPoints[ 0 ].first <= x ) && in GetInterpolatedValue()
377 ( x <= m_aPoints[ m_aPoints.size() - 1 ].first ), in GetInterpolatedValue()
381 if( x < m_fLastInterpolatedValue ) in GetInterpolatedValue()
391 if( m_aPoints[ k ].first > x ) in GetInterpolatedValue()
399 while( ( m_aPoints[ m_nKHigh ].first < x ) && in GetInterpolatedValue()
407 m_fLastInterpolatedValue = x; in GetInterpolatedValue()
412 double a = ( m_aPoints[ m_nKHigh ].first - x ) / h; in GetInterpolatedValue()
413 double b = ( x - m_aPoints[ m_nKLow ].first ) / h; in GetInterpolatedValue()
/trunk/main/bridges/source/cpp_uno/cc50_solaris_intel/
H A Dhash.cxx46 sal_uInt32 f1( sal_uInt32 x, sal_uInt32 y, sal_uInt32 z ) in f1() argument
48 return z ^ ( x & ( y ^ z ) ); in f1()
51 sal_uInt32 f2( sal_uInt32 x, sal_uInt32 y, sal_uInt32 z ) in f2() argument
53 return x ^ y ^ z; in f2()
56 sal_uInt32 f3( sal_uInt32 x, sal_uInt32 y, sal_uInt32 z ) in f3() argument
58 return ( x & y ) + ( z & ( x ^ y ) ); in f3()
/trunk/main/bridges/source/cpp_uno/cc50_solaris_sparc/
H A Dhash.cxx47 sal_uInt32 f1( sal_uInt32 x, sal_uInt32 y, sal_uInt32 z ) in f1() argument
49 return z ^ ( x & ( y ^ z ) ); in f1()
52 sal_uInt32 f2( sal_uInt32 x, sal_uInt32 y, sal_uInt32 z ) in f2() argument
54 return x ^ y ^ z; in f2()
57 sal_uInt32 f3( sal_uInt32 x, sal_uInt32 y, sal_uInt32 z ) in f3() argument
59 return ( x & y ) + ( z & ( x ^ y ) ); in f3()
/trunk/main/cppcanvas/source/mtfrenderer/
H A Dmtftools.cxx340 const double x( rStartPos.getX() ); in appendRect() local
345 ::basegfx::B2DRectangle( x + nX1, y + nY1, x + nX2, y + nY2 ) ) ); in appendRect()
372 double x = nX; in appendDashes() local
376 x, nY, in appendDashes()
377 x + nDashWidth, nY + nLineHeight ); in appendDashes()
379 x += nDashSkip; in appendDashes()
/trunk/main/cppu/inc/uno/
H A Dlbnames.h30 #define CPPU_STRINGIFY_EX( x ) #x argument
31 #define CPPU_STRINGIFY( x ) CPPU_STRINGIFY_EX( x ) argument
/trunk/main/sax/source/expatwrap/
H A Dsax_expat.cxx96 #define XML_CHAR_TO_OUSTRING(x) XmlChar2OUString(x) argument
97 #define XML_CHAR_N_TO_USTRING(x,n) XmlNChar2OUString(x,n) argument
99 #define XML_CHAR_TO_OUSTRING(x) OUString(x , strlen( x ), RTL_TEXTENCODING_UTF8)
100 #define XML_CHAR_N_TO_USTRING(x,n) OUString(x,n, RTL_TEXTENCODING_UTF8 )
/trunk/main/l10ntools/java/jpropex/
H A Djpropex22 if [ x${SOLARENV}x = xx ]; then
27 if [ x${JAVA_HOME}x = xx ]; then
/trunk/main/offapi/com/sun/star/sheet/
H A DSpreadsheetDrawPage.idl51 for x% = 0 to 200
55 xShape.Position = Point( x%, 2*x% )
56 xShape.Size = Size( 300-x%, 20 )
58 next x%
/trunk/main/basebmp/test/
H A Dtools.cxx40 for( sal_Int32 x=0; x<rSize.getX(); ++x ) in countPixel() local
41 if( rDevice->getPixel( basegfx::B2IPoint(x,y) ) == checkColor ) in countPixel()
/trunk/main/offapi/com/sun/star/rendering/
H A DTexture.idl46 scaled in such a way that it will cover the same [0,1]x[0,1] box
58 transformation from the [0,1]x[0,1] texture space to the
132 /** Repeat mode of the texture, x direction.<p>
134 The repeat mode is separated into x and y direction, this is
135 the x direction part. Permissible values are from the
142 The repeat mode is separated into x and y direction, this is
/trunk/main/sysui/desktop/freedesktop/
H A Dfreedesktop-menus.spec241 application/x-starwriter; %unixfilename -view %s
245 application/x-starmath; %unixfilename -view %s
252 application/x-starcalc; %unixfilename -view %s
254 application/x-starchart; %unixfilename -view %s
258 application/x-msexcel; %unixfilename -view %s
264 application/x-starimpress; %unixfilename -view %s
268 application/x-mspowerpoint; %unixfilename -view %s
274 application/x-stardraw; %unixfilename -view %s
/trunk/main/sal/inc/sal/
H A Dmacros.h39 # define SAL_BOUND(x,l,h) ((x) <= (l) ? (l) : ((x) >= (h) ? (h) : (x))) argument
/trunk/main/ucb/source/ucp/expand/
H A Ducpexpand.cxx42 #define OUSTR(x) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(x) ) argument
43 #define ARLEN(x) sizeof (x) / sizeof *(x) argument
/trunk/main/scaddins/source/analysis/
H A Dbessel.hxx39 double BesselJ( double x, sal_Int32 n ) throw( ::com::sun::star::lang::IllegalArgumentException, ::…
42 double BesselI( double x, sal_Int32 n ) throw( ::com::sun::star::lang::IllegalArgumentException, ::…
45 double BesselY( double x, sal_Int32 n ) throw( ::com::sun::star::lang::IllegalArgumentException, ::…
48 double BesselK( double x, sal_Int32 n ) throw( ::com::sun::star::lang::IllegalArgumentException, ::…
/trunk/main/solenv/bin/
H A Dgetcompver.awk29 x = match( $0, /C\+\+ .*/ )
32 x = match( btwn, / .*\..*[ $\t]/)
39 x = match( $0, /..\...\...../ )
46 x = match( $0, /[0-9]*\.[0-9]*\.[0-9]*/ )
/trunk/main/i18npool/source/localedata/data/
H A Dlist-locales.awk62 split( $0, x, /<|>/ )
63 language = x[3]
71 split( $0, x, /<|>/ )
72 country = x[3]
/trunk/main/vcl/unx/generic/gdi/
H A Dsalgdi2.cxx270 if( int(nX + nDX) <= int(aRect.x) || nX >= int(aRect.x + aRect.width) ) in Clip()
275 if( nX < aRect.x ) in Clip()
277 nSrcX += aRect.x - nX; in Clip()
278 nDX -= aRect.x - nX; in Clip()
279 nX = aRect.x; in Clip()
281 else if( int(nX + nDX) > int(aRect.x + aRect.width) ) in Clip()
282 nDX = aRect.x + aRect.width - nX; in Clip()
439 …SalPaintEvent aPEvt( aEvent.xexpose.x, aEvent.xexpose.y, aEvent.xexpose.width+1, aEvent.xexpose.he… in YieldGraphicsExpose()
454 …SalPaintEvent aPEvt( aEvent.xgraphicsexpose.x, aEvent.xgraphicsexpose.y, aEvent.xgraphicsexpose.wi… in YieldGraphicsExpose()
/trunk/main/autodoc/source/udm/unittest/
H A Dtest.cxx78 Integer & x = *px; in fx() local
100 intt a = x; in fx()
101 x = 15; in fx()
103 Cout() << a << " " << x << Endl(); // Must be: 5 15 in fx()
/trunk/main/vcl/aqua/source/window/
H A Dsalnsmenu.mm146 aImgRect.origin.x += aFromRect.size.width + 2;
167 … if( aMousePt.x >= aImgRect.origin.x && aMousePt.x <= (aImgRect.origin.x+aImgRect.size.width) &&
178 aImgRect.origin.x += aFromRect.size.width + 2;

Completed in 117 milliseconds

1...<<11121314151617181920>>...47