Home
last modified time | relevance | path

Searched refs:s (Results 226 – 250 of 1909) sorted by relevance

12345678910>>...77

/aoo41x/main/sal/osl/unx/
H A Dpipe.c404 int s, flags; in osl_acceptPipe() local
419 s = accept(pPipe->m_Socket, NULL, NULL); in osl_acceptPipe()
425 if (s < 0) in osl_acceptPipe()
434 close(s); in osl_acceptPipe()
446 close(s); in osl_acceptPipe()
451 if (!((flags = fcntl(s, F_GETFD, 0)) < 0)) in osl_acceptPipe()
454 if (fcntl(s, F_SETFD, flags) < 0) in osl_acceptPipe()
461 pAcceptedPipe->m_Socket = s; in osl_acceptPipe()
/aoo41x/main/binaryurp/source/
H A Dbridgefactory.cxx110 css::uno::Sequence< rtl::OUString > s(getSupportedServiceNames()); in supportsService() local
111 for (sal_Int32 i = 0; i != s.getLength(); ++i) { in supportsService()
112 if (ServiceName == s[i]) { in supportsService()
191 css::uno::Sequence< css::uno::Reference< css::bridge::XBridge > > s(n); in getExistingBridges() local
194 s[i++] = *j; in getExistingBridges()
197 s[i++] = j->second; in getExistingBridges()
199 return s; in getExistingBridges()
/aoo41x/main/libtextcat/data/new_fingerprints/lm/
H A Dnepali.lm5 s 815
95 ]s 85
150 /s 61
301 ;/s 32
308 s' 31
317 _;/s 31
397 ;s 26
/aoo41x/main/qadevOOo/runner/complexlib/
H A DAssurance.java52 protected void assure(boolean s) { in assure() argument
53 assure("Assure failed.", s, false); in assure()
62 protected void assure(String msg, boolean s) { in assure() argument
63 assure(msg, s, false); in assure()
376 protected void assure(String msg, boolean s, boolean cont) { in assure() argument
377 state &= s; in assure()
378 if (!s) { in assure()
/aoo41x/main/offapi/com/sun/star/drawing/
H A DXShapeArranger.idl51 <type>Shape</type>s.
61 the specified collection of <type>Shape</type>s.
69 /** moves the specified <type>Shape</type>s by a specified number
78 /** moves the specified <type>Shape</type>s
87 /** moves the specified collection of <type>Shape</type>s
96 /** moves the specified collection of <type>Shape</type>s in
106 <type>Shape</type>s.
H A DLayerManager.idl42 /** This service is provided by documents to support <type>Layer</type>s.
51 /** gives you access to the existing <type>Layer</type>s by
52 index and makes it possible to add and remove <type>Layer</type>s and
53 to attach <type>Shape</type>s to <type>Layer</type>s.
62 /** gives access to the existing <type>Layer</type>s by name.
/aoo41x/main/qadevOOo/runner/util/compare/
H A DDocComparatorFactory.java35 …static public DocComparator createComparator(String s, TestParameters aParams) throws IllegalArgum… in createComparator() argument
37 if (s.toLowerCase().equals("gfx") || s.toLowerCase().equals("graphical")) in createComparator()
47 else if (s.toLowerCase().equals("pdf")) in createComparator()
54 throw new IllegalArgumentException("DocComparator for '" + s + "' not supported!"); in createComparator()
/aoo41x/main/slideshow/source/engine/transitions/
H A Dfigurewipe.cxx74 const double s = sin( basegfx::deg2rad(18.0) ); in createPentagonWipe() local
78 figure.append( ::basegfx::B2DPoint( 0.5 + s, 0.5 - c ) ); in createPentagonWipe()
80 figure.append( ::basegfx::B2DPoint( -0.5 - s, 0.5 - c ) ); in createPentagonWipe()
88 const double s = sin( basegfx::deg2rad(30.0) ); in createHexagonWipe() local
92 figure.append( ::basegfx::B2DPoint( 0.5 + s, 0.0 ) ); in createHexagonWipe()
95 figure.append( ::basegfx::B2DPoint( -0.5 - s, 0.0 ) ); in createHexagonWipe()
/aoo41x/main/javaunohelper/com/sun/star/lib/uno/helper/
H A DUnoUrl.java226 private static String decodeUTF8(String s) in decodeUTF8() argument
230 for (int i = 0; i < s.length(); i++) { in decodeUTF8()
231 int ch = s.charAt(i); in decodeUTF8()
234 int hb = hexToInt(s.charAt(++i)); in decodeUTF8()
235 int lb = hexToInt(s.charAt(++i)); in decodeUTF8()
326 private static boolean isAlphaNumeric(String s) { in isAlphaNumeric() argument
327 return isValidString(s, null); in isAlphaNumeric()
/aoo41x/main/qadevOOo/testdocs/qadevlibs/source/com/sun/star/cmp/
H A DMyPersistObject.java94 private short s; field in MyPersistObject
118 s = 1; in MyPersistObject()
143 s = inStream.readShort(); in read()
151 System.out.println("read called" + s + " " + i + " " + st); in read()
163 outStream.writeShort(s); in write()
201 s = ((Short)value).shortValue(); in setPropertyValue()
224 return new Short(s); in getPropertyValue()
/aoo41x/main/wizards/com/sun/star/wizards/common/
H A DJavaTools.java347 for (int s = 0; s < SortCount; s++) in bubblesortList()
349 for (int t = 0; t < SortCount - s - 1; t++) in bubblesortList()
684 for (int s = 0; s < ocurValue.length; s++) in getDuplicateFieldIndex()
686 if (s != m) in getDuplicateFieldIndex()
688 if (isEqual(odetValue, ocurValue[s])) in getDuplicateFieldIndex()
692 n, s in getDuplicateFieldIndex()
/aoo41x/main/xmerge/source/palmtests/qa/comparator/
H A DPDBUtil.java53 public static int intID(String s) { in intID() argument
60 temp = (int) s.charAt(0); in intID()
64 temp = ((int) s.charAt(1)) & 0x00ff; in intID()
68 temp = ((int) s.charAt(2)) & 0x00ff; in intID()
72 id += ((int) s.charAt(3)) & 0x00ff; in intID()
/aoo41x/main/desktop/win32/source/rebase/
H A Drebase.cxx44 #define MY_LENGTH(s) (sizeof (s) / sizeof *(s) - 1) argument
45 #define MY_STRING(s) (s), MY_LENGTH(s) argument
H A Drebasegui.cxx49 #define MY_LENGTH(s) (sizeof (s) / sizeof *(s) - 1) argument
50 #define MY_STRING(s) (s), MY_LENGTH(s) argument
/aoo41x/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/
H A DPdbUtil.java57 public static int intID(String s) { in intID() argument
64 temp = (int) s.charAt(0); in intID()
68 temp = ((int) s.charAt(1)) & 0x00ff; in intID()
72 temp = ((int) s.charAt(2)) & 0x00ff; in intID()
76 id += ((int) s.charAt(3)) & 0x00ff; in intID()
/aoo41x/extras/l10n/source/sq/
H A Dlocalize.sdf1279 …dlg.src 0 string RID_SANE_DEVICEINFO_TXT 0 sq Pajisja: %s\nShitës: %s\nModel: %s\nLloj: %s 2…
4199 …shared\optionen\01012000.xhp 0 help hd_id3149669 9 0 sq Emri i skemës së ngjyrës 2002-02-02 0…
7154 …ared\autopi\01110600.xhp 0 help hd_id3152924 21 0 sq Fshirja e skemës së ngjyrës 2002-02-02 0…
14100 …e\userdefined_function.xhp 0 help par_idN1081D 0 sq Master IDE%s, ndarja Nr. %s [%s] 2002-02…
14898 …rce\text\sbasic\shared\01050000.xhp 0 help tit 0 sq Master IDE%s, ndarja Nr. %s [%s] 2002-02…
16253 …\sbasic\shared\00000003.xhp 0 help par_id3154319 4 0 sq Emri i skemës së ngjyrës 2002-02-02 0…
18601 …\Strings.src 0 string STR_OBJECT_AVERAGE_LINE 0 sq Mesatarja e vlerës së linjës 2002-02-02 0…
18912 …lg.src 0 fixedline DLG_PUBLISHING PAGE6_TITEL 258 sq Fshirja e skemës së ngjyrës 2002-02-02 0…
27028 …SC_OPCODE_GET_HOUR 1 0 sq Përcakton numrin vijues të orës së ditës (0-23) për vlerën e kohës. …
27031 …C_OPCODE_GET_MIN 1 0 sq Përcakton numrin vijues të minutës së orës (0-59) për vlerën e kohës. …
[all …]
/aoo41x/main/filter/source/config/fragments/
H A Dmakefile.mk167 …$(@:b)_types.xcu xmlpackage=Types tcfg=$(mktmp items=$(TYPES_4$(@:b):b:t",":s/.xcu//)) && $(TOUCH)…
181 @echo Building language packages $(@:b:s/Filter_//) for filters
193 …)_filters.xcu xmlpackage=Filter fcfg=$(mktmp items=$(FILTERS_4$(@:b):b:t",":s/.xcu//)) && $(TOUCH)…
200 …$(mktmp items=$(FRAMELOADERS_4$(@:b):b:t",":s/.xcu//)) ccfg=$(mktmp items=$(CONTENTHANDLERS_4$(@:b…
207 …$(@:b)_types.xcu xmlpackage=Types tcfg=$(mktmp items=$(TYPES_4$(@:b):b:t",":s/.xcu//)) && $(TOUCH)…
214 …rs.xcu xmlpackage=GraphicFilter fcfg=$(mktmp items=$(FILTERS_4$(@:b):b:t",":s/.xcu//)) subdir_filt…
/aoo41x/main/offapi/com/sun/star/awt/grid/
H A DUnoControlGridModel.idl138 depending on the control's style settings.</p>
147 depending on the control's style settings.</p>
154 depending on the control's style settings.</p>
161 depending on the control's style settings.</p>
169 depending on the control's style settings.</p>
176 depending on the control's style settings.</p>
184 depending on the control's style settings.</p>
191 …ce has <code>n</code> elements, each row will use the background color as specified by its number's
197 …lternating background colors, every second row having a background color derived from the control's
213 depending on the control's style settings.</p>
[all …]
/aoo41x/main/testtools/source/bridgetest/pyuno/
H A Dcore.py342 s = uno.ByteSequence( "ab" )
343 self.failUnless( s == uno.ByteSequence( "ab" ) )
344 self.failUnless( uno.ByteSequence( "abc" ) == s + uno.ByteSequence( "c" ) )
345 self.failUnless( uno.ByteSequence( "abc" ) == s + "c" )
346 self.failUnless( s + "c" == "abc" )
347 self.failUnless( s == uno.ByteSequence( s ) )
348 self.failUnless( s[0] == 'a' )
349 self.failUnless( s[1] == 'b' )
/aoo41x/main/odk/source/com/sun/star/lib/loader/
H A DLoader.java262 InputStream s = p.getInputStream(); in callUnoinfo() local
263 code = s.read(); in callUnoinfo()
278 int k = s.read(buf, n, buf.length - n); in callUnoinfo()
306 String s; in callUnoinfo() local
308 s = new String(buf); in callUnoinfo()
311 s = new String(buf, "UTF-16LE"); in callUnoinfo()
324 addUrls(urls, s, "\0"); in callUnoinfo()
/aoo41x/main/
H A Dconfig.sub436 basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
478 basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
1249 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
1270 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1282 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1327 os=`echo $os | sed -e 's|nto|nto-qnx|'`
1334 os=`echo $os | sed -e 's|mac|macos|'`
1340 os=`echo $os | sed -e 's|linux|linux-gnu|'`
1343 os=`echo $os | sed -e 's|sunos5|solaris2|'`
1346 os=`echo $os | sed -e 's|sunos6|solaris3|'`
[all …]
H A Dset_soenv.in378 $JAVA_OS =~ s/.*\///;
727 $COMPATH =~ s/\/bin$//i;
882 $SRC_ROOT =~ s/\/config_office//;
902 $JAVA_HOME =~ s/[\s\/]+$//; # remove trailing \n or \/ if there is any.
963 $outfile_bat =~ s/set$/cmd/i;
1192 $tmppath =~ s/^\/\//\//;
2263 $retrn =~ s![\s/\\]+$!!;
2350 $envvar =~ s/\\/\\\\/g;
2389 $aliastmp =~ s/\$/\%/g;
2390 $aliastmp =~ s!/!\\!g;
[all …]
/aoo41x/main/wizards/com/sun/star/wizards/web/export/
H A DConfiguredExporter.java63 private Object cast(String s) in cast() argument
65 String s1 = s.substring(1); in cast()
66 char c = s.charAt(0); in cast()
78 if (s.equals("false")) in cast()
84 if (s.equals("true")) in cast()
/aoo41x/main/basic/source/sample/
H A Dcollelem.cxx63 String s( GetName() ); in SFX_NOTIFY() local
64 s.AppendAscii( " says: " ); in SFX_NOTIFY()
65 s += pPar_->Get( 1 )->GetString(); in SFX_NOTIFY()
67 pPar_->Get( 0 )->PutString( s ); in SFX_NOTIFY()
68 InfoBox( NULL, s ).Execute(); in SFX_NOTIFY()
/aoo41x/main/svx/inc/svx/
H A Dfmresids.hrc32 // ImageList-Id's -----------------------------------------------------------
36 // Image-Id's -----------------------------------------------------------
69 // Dialog-Id's -----------------------------------------------------------
94 // Menu-Id's -----------------------------------------------------------
107 // QueryBox-Id's -----------------------------------------------------------
117 // ErrorBox-Id's -----------------------------------------------------------
123 // String-Id's -----------------------------------------------------------
247 // Error-String-Id's -----------------------------------------------------------

Completed in 565 milliseconds

12345678910>>...77