Home
last modified time | relevance | path

Searched refs:r (Results 376 – 400 of 762) sorted by relevance

1...<<11121314151617181920>>...31

/trunk/main/sc/source/core/data/
H A Dattrib.cxx770 const ScPageHFItem& r = (const ScPageHFItem&)rItem; in operator ==() local
772 return ScGlobal::EETextObjEqual(pLeftArea, r.pLeftArea) in operator ==()
773 && ScGlobal::EETextObjEqual(pCenterArea, r.pCenterArea) in operator ==()
774 && ScGlobal::EETextObjEqual(pRightArea, r.pRightArea); in operator ==()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sc/
H A DScUniqueCellFormatsEnumeration.java122 protected void changeColor(String RangeName, int r, int g, int b) { in changeColor() argument
126 Color c = new Color(r, g, b); in changeColor()
/trunk/main/oox/source/drawingml/
H A Dtextbodycontext.cxx80 case A_TOKEN( r ): // "CT_RegularTextRun" Regular Text Run. in createFastChildContext()
132 case A_TOKEN( r ): in endFastElement()
/trunk/main/odk/examples/OLE/activex/
H A Dso_activex.rc88 "#include ""winres.h""\r\n"
94 "1 TYPELIB ""so_activex.tlb""\r\n"
/trunk/main/sc/source/filter/inc/
H A Dlotrange.hxx148 … void LotusRangeList::Append( SCCOL nColS, SCROW nRowS, SCCOL nColE, SCROW nRowE, const String& r ) in Append() argument
150 Append( new LotusRange( nColS, nRowS, nColE, nRowE ), r ); in Append()
/trunk/main/extensions/test/pgp/
H A DTestPGP.java68 static void doSomething(Object r) throws com.sun.star.uno.Exception, IOException, Exception { in doSomething() argument
69 XNamingService rName = (XNamingService)UnoRuntime.queryInterface(XNamingService.class, r); in doSomething()
/trunk/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/
H A DWSEncoder.java166 Record r = new Record(currRec); in getRecords() local
167 allRecs.addElement(r); in getRecords()
/trunk/main/extensions/source/activex/main/
H A Dso_activex.rc95 "#include ""winres.h""\r\n"
101 "1 TYPELIB ""so_activex.tlb""\r\n"
/trunk/main/vcl/source/glyphs/
H A Dgcach_ftyp.hxx251 …static bool CheckFontData( const ImplFontData& r ) { return r.CheckMagic( IFTSFONT_MAG… in CheckFontData() argument
/trunk/main/extensions/test/ole/AxTestComponents/
H A DAxTestComponents.rc80 "#include ""winres.h""\r\n"
86 "1 TYPELIB ""AxTestComponents.tlb""\r\n"
/trunk/main/extensions/test/ole/unoTocomCalls/XCallback_Impl/
H A DXCallback_Impl.rc78 "#include ""winres.h""\r\n"
84 "1 TYPELIB ""XCallback_Impl.tlb""\r\n"
/trunk/main/idl/inc/
H A Ddatabase.hxx121 void SetError( const SvIdlError & r ) in SetError() argument
122 { aError = r; } in SetError()
/trunk/main/extensions/test/ole/EventListenerSample/EventListener/
H A DEventListener.rc58 "#include ""winres.h""\r\n"
64 "1 TYPELIB ""EventListener.tlb""\r\n"
/trunk/main/bridges/test/
H A Dtestoffice.cxx186 void doSomething( const Reference < XInterface > &r ) in doSomething() argument
188 Reference < XNamingService > rName( r, UNO_QUERY ); in doSomething()
/trunk/main/sw/source/filter/ww8/
H A Drtfexport.hxx49 inline SvStream& operator<<( SvStream& s, const rtl::OString r) { return (s << r.getStr()); } in operator <<() argument
/trunk/main/scaddins/source/analysis/
H A Danalysishelper.hxx727 inline void StringList::Append( const STRING& r ) in Append() argument
729 MyList::Append( new STRING( r ) ); in Append()
759 inline sal_Bool FuncData::Is( const ::rtl::OUString& r ) const in Is()
761 return aIntName == r; in Is()
/trunk/main/extensions/test/ole/MfcControl/
H A DMfcControl.rc49 "#include ""afxres.h""\r\n"
55 "1 TYPELIB ""MfcControl.tlb""\r\n"
/trunk/main/framework/source/fwi/helper/
H A Dmischelper.cxx66 catch (uno::Exception &r) in GetGuesser() local
68 (void) r; in GetGuesser()
/trunk/main/xmlhelp/source/cxxhelp/provider/
H A Ddatabases.cxx721 const rtl::OUString& r = ra.key; in operator ()() local
730 sal_Int32 r1 = r.indexOf( sal_Unicode( ';' ) ); in operator ()()
731 sal_Int32 r3 = ( r1 == -1 ? r.getLength() : r1 ); in operator ()()
733 sal_Int32 c1 = m_xCollator->compareSubstring( l,0,l3,r,0,r3 ); in operator ()()
740 sal_Int32 r2 = r.getLength() - r1 - 1; in operator ()()
741 ret = ( m_xCollator->compareSubstring( l,1+l1,l2,r,1+r1,r2 ) < 0 ); in operator ()()
747 ret = bool( l < r ); in operator ()()
/trunk/main/cpputools/source/registercomponent/
H A Dregistercomponent.cxx724 Reference< XInterface > r = loadSharedLibComponentFactory( in bootstrap() local
737 if( r.is() && r2.is() && xSet.is() ) in bootstrap()
739 xSet->insert( makeAny( r ) ); in bootstrap()
/trunk/main/vigra/
H A Dvigra1.6.0.patch544 + Rect2D(int l, int t, int r, int b)
545 + : upperLeft_(l,t), lowerRight_(r,b)
600 bool contains(Rect2D const &r) const
602 return r.isEmpty() ||
603 - contains(r.upperLeft()) && contains(r.lowerRight()-Diff2D(1,1));
604 + (contains(r.upperLeft()) && contains(r.lowerRight()-Diff2D(1,1)));
/trunk/main/sc/source/core/tool/
H A Dinterpr2.cxx1910 const ScSingleRefData& r = pt[i]->GetSingleRef(); in ScIntersect() local
1911 nC1[i] = r.nCol; in ScIntersect()
1912 nR1[i] = r.nRow; in ScIntersect()
1913 nT1[i] = r.nTab; in ScIntersect()
1917 const ScSingleRefData& r = pt[i]->GetSingleRef2(); in ScIntersect() local
1918 nC2[i] = r.nCol; in ScIntersect()
1919 nR2[i] = r.nRow; in ScIntersect()
1920 nT2[i] = r.nTab; in ScIntersect()
/trunk/main/solenv/inc/
H A Dtg_lib.mk125 @echo $(LIBMGR) r $@ $(LIB$(TNR)OBJFILES)
127 $(COMMAND_ECHO)$(LIBMGR) r $@ $(LIB$(TNR)OBJFILES) $(LIB$(TNR)FILES) bla.lib
/trunk/main/winaccessibility/source/UAccCOM/
H A DUAccCOM.rc93 "#include ""winres.h""\r\n"
99 "1 TYPELIB ""UAccCOM.tlb""\r\n"
/trunk/main/jurt/demo/com/sun/star/demo/
H A DTestOffice.java143 static void doSomething(Object r) throws com.sun.star.uno.Exception, IOException { in doSomething() argument
144 XNamingService rName = UnoRuntime.queryInterface(XNamingService.class, r); in doSomething()

Completed in 111 milliseconds

1...<<11121314151617181920>>...31