| /trunk/main/basebmp/inc/basebmp/ |
| H A D | accessorfunctors.hxx | 11 * http://www.apache.org/licenses/LICENSE-2.0 36 // ------------------------------------------------------------ 45 //----------------------------------------------------------------------------- 48 template< typename T, typename M > struct MaskFunctorBase : 49 public TernaryFunctorBase<T,M,T,T> {}; 60 typename M, 61 bool polarity > struct GenericOutputMaskFunctor : public MaskFunctorBase<T,M> 63 /// Ternary mask operation - selects v1 for !m == polarity, v2 otherwise 64 T operator()( T v1, M m, T v2 ) const in operator ()() 66 return !m == polarity ? v1 : v2; in operator ()() [all …]
|
| /trunk/main/idlc/test/parser/ |
| H A D | constant.tests | 11 # http://www.apache.org/licenses/LICENSE-2.0 38 module m { 59 module m { 71 module m { 81 module m { 82 const byte C1 = -128; 83 const byte C2 = -0200; 84 const byte C3 = -0x80; 88 const short C7 = -32768; 89 const short C8 = -0100000; [all …]
|
| /trunk/main/ridljar/test/com/sun/star/lib/util/ |
| H A D | WeakMap_Test.java | 11 * http://www.apache.org/licenses/LICENSE-2.0 34 WeakMap m = new WeakMap(); in test() local 35 assertTrue("", m.size() == 0); in test() 36 assertTrue("", m.isEmpty()); in test() 37 assertTrue("", !m.containsKey("key1")); in test() 38 assertTrue("", !m.containsValue(null)); in test() 40 m.put("key1", u1.get()); in test() 42 m.put("key2", u2.get()); in test() 43 assertTrue("", m.size() == 2); in test() 44 assertTrue("", !m.isEmpty()); in test() [all …]
|
| /trunk/main/i18npool/source/localedata/data/ |
| H A D | ko_KR.xml | 1 <?xml version="1.0" encoding="UTF-8" ?> 3 <!--*********************************************************** 13 * http://www.apache.org/licenses/LICENSE-2.0 22 ***********************************************************--> 36 <DateSeparator>-</DateSeparator> 89 <FormatCode>[$₩-412]#,##0;-[$₩-412]#,##0</FormatCode> 92 <FormatCode>[$₩-412]#,##0.00;-[$₩-412]#,##0.00</FormatCode> 95 <FormatCode>[$₩-412]#,##0;[RED]-[$₩-412]#,##0</FormatCode> 98 <FormatCode>[$₩-412]#,##0.00;[RED]-[$₩-412]#,##0.00</FormatCode> 104 <FormatCode>[$₩-412]#,##0.--;[RED]-[$₩-412]#,##0.--</FormatCode> [all …]
|
| /trunk/main/extras/source/gallery/txtshapes/ |
| H A D | Square08-Striped-Red.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 <!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) --> 7 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 11 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" 19 enable-background="new 0 0 148.7 147.114" 22 sodipodi:docname="Square08-Stripe-Red.svg"><metadata 42 inkscape:pageshadow="2" 43 inkscape:window-width="1703" 49 inkscape:cy="35.383992" 50 inkscape:window-x="2058" [all …]
|
| /trunk/main/solenv/gbuild/ |
| H A D | Output.mk | 11 # http://www.apache.org/licenses/LICENSE-2.0 63 gb_Output_ESCAPE := $(shell echo|awk 'BEGIN { printf "%c", 27 }' -) 64 gb_Output_BELL := $(shell echo|awk 'BEGIN { printf "%c", 7 }' -) 69 # - gb_COLOR is set 70 # - we have a known term 72 ifneq ($(filter $(TERM),Eterm aterm gnome kterm linux rxvt rxvt-unicode screen xterm xterm-color xt… 74 gb_Output_COLOR_RESET := $(gb_Output_ESCAPE)[0m 77 gb_Output_COLOR_OUTBUILD_LEVEL1 := $(gb_Output_COLOR_RESETANDESCAPE)[37;40m 78 gb_Output_COLOR_OUTBUILD_LEVEL2 := $(gb_Output_COLOR_RESETANDESCAPE)[37;40m 79 gb_Output_COLOR_OUTBUILD_LEVEL3 := $(gb_Output_COLOR_RESETANDESCAPE)[37;40m [all …]
|
| /trunk/main/desktop/test/deployment/active/ |
| H A D | manifest.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!--*********************************************************** 12 * http://www.apache.org/licenses/LICENSE-2.0 21 ***********************************************************--> 25 <m:manifest xmlns:m="http://openoffice.org/2001/manifest"> 26 <m:file-entry m:media-type="application/vnd.sun.star.configuration-data" 27 m:full-path="Addons.xcu"/> 28 <m:file-entry m:media-type="application/vnd.sun.star.configuration-data" 29 m:full-path="ProtocolHandler.xcu"/> 30 <m:file-entry [all …]
|
| /trunk/main/tools/inc/tools/ |
| H A D | diagnose_ex.h | 11 * http://www.apache.org/licenses/LICENSE-2.0 85 #define ENSURE_ARG_OR_THROW(c, m) if( !(c) ) { \ argument 86 OSL_ENSURE(c, m); \ 89 ::rtl::OUString::createFromAscii( ",\n" m), \ 92 #define ENSURE_ARG_OR_THROW2(c, m, ifc, arg) if( !(c) ) { \ argument 93 OSL_ENSURE(c, m); \ 96 ::rtl::OUString::createFromAscii( ",\n" m), \ 103 #define ENSURE_OR_THROW(c, m) if( !(c) ) { \ argument 104 OSL_ENSURE(c, m); \ 107 ::rtl::OUString::createFromAscii( ",\n" m), \ [all …]
|
| /trunk/main/jvmfwk/plugins/sunmajor/pluginlib/ |
| H A D | diagnostics.h | 11 * http://www.apache.org/licenses/LICENSE-2.0 30 #define JFW_ENSURE(c, m) _JFW_ENSURE(c, OSL_THIS_FILE, __LINE__, m) argument 32 #define JFW_ENSURE(c, m) ((void) 0) argument 36 #define JFW_WARNING2(c, m) _JFW_WARNING2(c, OSL_THIS_FILE, __LINE__, m) argument 38 #define JFW_WARNING2(c, m) ((void) 0) argument 43 #define JFW_TRACE0(m) jfw_trace(m) argument 45 #define JFW_TRACE0(m) ((void) 0) argument 49 #define JFW_TRACE1(m) jfw_trace(m) argument 51 #define JFW_TRACE1(m) ((void) 0) argument 55 #define JFW_TRACE2(m) jfw_trace(m) argument [all …]
|
| /trunk/main/desktop/test/deployment/passive/ |
| H A D | manifest.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!--*********************************************************** 12 * http://www.apache.org/licenses/LICENSE-2.0 21 ***********************************************************--> 25 <m:manifest xmlns:m="http://openoffice.org/2001/manifest"> 26 <m:file-entry m:media-type="application/vnd.sun.star.configuration-data" 27 m:full-path="Addons.xcu"/> 28 <m:file-entry m:media-type="application/vnd.sun.star.configuration-data" 29 m:full-path="ProtocolHandler.xcu"/> 30 <m:file-entry [all …]
|
| /trunk/main/extras/source/truetype/symbol/OpenSymbol 2.4.3/ |
| H A D | OpenSymbol.sfd | 9 UnderlinePosition: -163 43 HheadDescent: -641 67 SVTCA[y-axis] 146 MDAP[no-rnd] 635 SVTCA[x-axis] 640 SVTCA[y-axis] 721 -412 722 -25 774 DisplaySize: -48 781 Encoding: 65536 -1 0 [all …]
|
| /trunk/main/slideshow/source/engine/ |
| H A D | sp_debug.cxx | 11 * http://www.apache.org/licenses/LICENSE-2.0 52 static map_type m; in get_map() local 53 return m; in get_map() 60 static mutex_type m; in get_mutex() local 61 return m; in get_mutex() 88 static void scan_and_count(void const * area, size_t size, map_type const & m, map2_type & m2) in scan_and_count() argument 96 if(q->pn.id == boost::detail::shared_count_id && q->pn.pi != 0 && m.count(q->pn.pi) != 0) in scan_and_count() 98 ++m2[q->pn.pi]; in scan_and_count() 113 if(q->pn.id == boost::detail::shared_count_id && q->pn.pi != 0 && m2.count(q->pn.pi) != 0) in scan_and_mark() 115 open.push_back(q->pn.pi); in scan_and_mark() [all …]
|
| /trunk/main/extras/source/truetype/symbol/OpenSymbol 2.1/ |
| H A D | OpenSymbol.sfd | 9 UnderlinePosition: -143 35 OS2WinAscent: -240 37 OS2WinDescent: -231 64 SVTCA[y-axis] 143 MDAP[no-rnd] 632 SVTCA[x-axis] 637 SVTCA[y-axis] 780 DisplaySize: -24 792 SVTCA[y-axis] 817 SVTCA[x-axis] [all …]
|
| /trunk/main/sot/source/sdstor/ |
| H A D | stg.cxx | 11 * http://www.apache.org/licenses/LICENSE-2.0 81 ((StorageBase*) this)->m_nError = SVSTREAM_OK; in GetError() 88 ((StorageBase*) this)->m_nError = n; in SetError() 93 ((StorageBase*) this)->m_nError = SVSTREAM_OK; in ResetError() 100 return pIo ? pIo->GetStrm() : NULL; in GetSvStream_Impl() 107 p->IncRef(); in OLEStorageBase() 109 pe->nRefCnt++; in OLEStorageBase() 116 DBG_ASSERT( pEntry->nRefCnt, "RefCount unter 0" ); in ~OLEStorageBase() 117 if( !--pEntry->nRefCnt ) in ~OLEStorageBase() 119 if( pEntry->bZombie ) in ~OLEStorageBase() [all …]
|
| /trunk/main/desktop/test/deployment/boxt/ |
| H A D | manifest.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!--*********************************************************** 12 * http://www.apache.org/licenses/LICENSE-2.0 21 ***********************************************************--> 25 <m:manifest xmlns:m="http://openoffice.org/2001/manifest"> 26 <m:file-entry m:media-type="application/vnd.sun.star.configuration-data" 27 m:full-path="Addons.xcu"/> 28 <m:file-entry m:media-type="application/vnd.sun.star.configuration-data" 29 m:full-path="ProtocolHandler.xcu"/> 30 <m:file-entry [all …]
|
| /trunk/main/i18npool/source/calendar/ |
| H A D | calendar_jewish.cxx | 11 * http://www.apache.org/licenses/LICENSE-2.0 48 // ``Calendrical Calculations'' by Nachum Dershowitz and Edward M. Reingold, 49 // Software---Practice & Experience, vol. 20, no. 9 (September, 1990), 50 // pp. 899--928. 58 const int HebrewEpoch = -1373429; // Absolute date of start of Hebrew calendar 74 (235 * ((year - 1) / 19)) // Months in complete cycles so far. in HebrewCalendarElapsedDays() 75 + (12 * ((year - 1) % 19)) // Regular months in this cycle. in HebrewCalendarElapsedDays() 76 + (7 * ((year - 1) % 19) + 1) / 19; // Leap months this cycle in HebrewCalendarElapsedDays() 91 && (HebrewLeapYear(year - 1))))// at the end of a leap year in HebrewCalendarElapsedDays() 108 return ((HebrewCalendarElapsedDays(year + 1)) - in DaysInHebrewYear() [all …]
|
| /trunk/main/ |
| H A D | set_soenv.in | 1 #!@PERL@ -w 13 # http://www.apache.org/licenses/LICENSE-2.0 24 #--------------------------------------------------------------------------- 32 # I. Checking the command-line arguments. 45 #--------------------------------------------------------------------------- 52 #-------------------------------------------------------- 54 #-------------------------------------------------------- 63 #------------------------------------------------- 65 #------------------------------------------------- 83 #------------------------------------------- [all …]
|
| /trunk/main/wizards/source/gimmicks/ |
| H A D | Userfields.xba | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd"> 3 <!--*********************************************************** 13 * http://www.apache.org/licenses/LICENSE-2.0 22 ***********************************************************--> 66 UserFieldDatatype(12,1) = "facsimiletelephonenumber" 87 Dim a as Integer 90 .GetControl("Label" & a).Model.Label = UserFieldDataType(a-1,0) 91 … .GetControl("TextField" & a).Model.Text = UserFieldFamily(CurFieldIndex, a-1) 102 ScrollTextFieldInfo(ScrollBarValue) [all …]
|
| /trunk/main/pyuno/inc/pyuno/ |
| H A D | pyuno.hxx | 11 * http://www.apache.org/licenses/LICENSE-2.0 102 PyObject *m; member in pyuno::PyRef 104 PyRef () : m(0) {} in PyRef() 105 PyRef( PyObject * p ) : m( p ) { Py_XINCREF( m ); } in PyRef() 107 PyRef( PyObject * p, __sal_NoAcquire ) : m( p ) {} in PyRef() 109 PyRef( const PyRef &r ) : m( r.get() ) { Py_XINCREF( m ); } in PyRef() 111 ~PyRef() { Py_XDECREF( m ); } in ~PyRef() 113 PyObject *get() const { return m; } in get() 117 Py_XINCREF( const_cast< PyObject*> (m) ); in getAcquired() 118 return m; in getAcquired() [all …]
|
| /trunk/main/sal/qa/rtl_strings/ |
| H A D | rtl_old_teststrbuf.cxx | 11 * http://www.apache.org/licenses/LICENSE-2.0 32 // ----------------------------------------------------------------------------- 53 #define TEST_ENSURE(c, m) CPPUNIT_ASSERT_MESSAGE((m), (c)) argument 56 // #define TEST_ENSHURE(c, m) OSL_ENSURE(c, m) 58 // #define TEST_ENSHURE(c, m) OSL_VERIFY(c) 61 // ----------------------------------------------------------------------------- 86 b1.insert(b1.getLength() - 1, "Buffer"); in test_OStringBuffer() 90 b1.insert(b1.getLength() - 1, " ist viel zu gross fuer den alten Buffer"); in test_OStringBuffer() 108 sal_Int64 m = -3223372036854775807LL; in test_OStringBuffer() local 110 sal_Int64 m; in test_OStringBuffer() local [all …]
|
| /trunk/main/qadevOOo/tests/basic/ifc/beans/XMultiPropertySet/ |
| H A D | beans_XMultiPropertySet.xba | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd"> 16 ' http://www.apache.org/licenses/LICENSE-2.0 52 Dim m As Integer 68 m = 0 79 'create sequences of Propertie-Names and Values 82 'look for readonly-properties 84 'look for MAYBEVOID-Properties 87 m = m + 1 92 Out.Log("Amount of testable properties (without readonly and MAYBEVOID) is " + m) [all …]
|
| /trunk/main/extras/source/autotext/lang/es/ |
| HD | standard.bau | ... ANo-M/settings.xml
N+ANo-M/atevent.xml
N+ANo-M ... |
| /trunk/main/wizards/source/tools/ |
| H A D | Listbox.xba | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd"> 3 <!--*********************************************************** 13 * http://www.apache.org/licenses/LICENSE-2.0 22 ***********************************************************--> 53 For i = 0 To MaxIndex 55 OriginalList(s) = CopyList(i) 108 Sub MoveSelectedListBox(SourceListbox as Object, TargetListbox as Object) 116 MaxCurTarget = Ubound(TargetListbox.StringItemList()) 118 Dim TargetList(MaxCurTarget+MaxSourceSelected+1) [all …]
|
| /trunk/main/canvas/source/directx/ |
| H A D | dx_impltools.cxx | 11 * http://www.apache.org/licenses/LICENSE-2.0 76 return pPolyImpl->getPolyPolygon(); in polyPolygonFromXPolyPolygon2D() 80 const sal_Int32 nPolys( xPoly->getNumberOfPolygons() ); in polyPolygonFromXPolyPolygon2D() 82 // not a known implementation object - try data source in polyPolygonFromXPolyPolygon2D() 91 xBezierPoly->getBezierSegments( 0, in polyPolygonFromXPolyPolygon2D() 94 -1 ) ); in polyPolygonFromXPolyPolygon2D() 103 // found - contract violation. in polyPolygonFromXPolyPolygon2D() 106 "poly-polygon, cannot retrieve vertex data" ); in polyPolygonFromXPolyPolygon2D() 109 xLinePoly->getPoints( 0, in polyPolygonFromXPolyPolygon2D() 112 -1 ) ); in polyPolygonFromXPolyPolygon2D() [all …]
|
| /trunk/main/wizards/com/sun/star/wizards/common/ |
| H A D | JavaTools.java | 11 * http://www.apache.org/licenses/LICENSE-2.0 54 …negotiate=0,forcesynchronous=1;StarOffice.NamingService"; //localhost ;Lo-1.Germany.sun.com; 10… 219 if (i < iLen - 1) in ArraytoString() 231 * @return the index of the field that contains the string 'SearchString' or '-1' if not it is 237 int retvalue = -1; in FieldInList() 252 int retvalue = -1; in FieldInList() 273 retvalue = -1; in FieldInTable() 288 retvalue = -1; in FieldInTable() 295 int retvalue = -1; in FieldInIntTable() 309 int retvalue = -1; in FieldInIntTable() [all …]
|