Home
last modified time | relevance | path

Searched refs:str (Results 1 – 25 of 447) sorted by relevance

12345678910>>...18

/AOO42X/main/setup_native/source/win32/customactions/reg4msdoc/
H A Dregistrationcontextinformation.cxx55 std::wstring str; in GetWordDocumentDisplayName() local
56 GetMsiProp(msihandle_, TEXT("STR_MS_WORD_DOCUMENT"), str); in GetWordDocumentDisplayName()
57 if (m_IsWin9x && !IsConvertableToAnsi(str)) in GetWordDocumentDisplayName()
58 str = TEXT("Microsoft Word Document"); in GetWordDocumentDisplayName()
59 return str; in GetWordDocumentDisplayName()
79 std::wstring str; in GetWordTemplateDisplayName() local
80 GetMsiProp(msihandle_, TEXT("STR_MS_WORD_TEMPLATE"), str); in GetWordTemplateDisplayName()
81 if (m_IsWin9x && !IsConvertableToAnsi(str)) in GetWordTemplateDisplayName()
82 str = TEXT("Microsoft Word Template"); in GetWordTemplateDisplayName()
83 return str; in GetWordTemplateDisplayName()
[all …]
/AOO42X/main/sal/inc/rtl/
H A Dstring.h49 sal_Int32 SAL_CALL rtl_str_getLength( const sal_Char * str ) SAL_THROW_EXTERN_C();
252 sal_Int32 SAL_CALL rtl_str_hashCode( const sal_Char * str ) SAL_THROW_EXTERN_C();
269 sal_Int32 SAL_CALL rtl_str_hashCode_WithLength( const sal_Char * str, sal_Int32 len ) SAL_THROW_EXT…
285 sal_Int32 SAL_CALL rtl_str_indexOfChar( const sal_Char * str, sal_Char ch ) SAL_THROW_EXTERN_C();
303 sal_Int32 SAL_CALL rtl_str_indexOfChar_WithLength( const sal_Char * str, sal_Int32 len, sal_Char ch…
320 sal_Int32 SAL_CALL rtl_str_lastIndexOfChar( const sal_Char * str, sal_Char ch ) SAL_THROW_EXTERN_C(…
339 sal_Int32 SAL_CALL rtl_str_lastIndexOfChar_WithLength( const sal_Char * str, sal_Int32 len, sal_Cha…
356 sal_Int32 SAL_CALL rtl_str_indexOfStr( const sal_Char * str, const sal_Char * subStr ) SAL_THROW_EX…
380 sal_Int32 SAL_CALL rtl_str_indexOfStr_WithLength( const sal_Char * str, sal_Int32 len, const sal_Ch…
397 sal_Int32 SAL_CALL rtl_str_lastIndexOfStr( const sal_Char * str, const sal_Char * subStr ) SAL_THRO…
[all …]
H A Dustring.h50 sal_Int32 SAL_CALL rtl_ustr_getLength( const sal_Unicode * str ) SAL_THROW_EXTERN_C();
518 sal_Int32 SAL_CALL rtl_ustr_hashCode( const sal_Unicode * str ) SAL_THROW_EXTERN_C();
535 sal_Int32 SAL_CALL rtl_ustr_hashCode_WithLength( const sal_Unicode * str, sal_Int32 len ) SAL_THROW…
551 sal_Int32 SAL_CALL rtl_ustr_indexOfChar( const sal_Unicode * str, sal_Unicode ch ) SAL_THROW_EXTERN…
569 sal_Int32 SAL_CALL rtl_ustr_indexOfChar_WithLength( const sal_Unicode * str, sal_Int32 len, sal_Uni…
586 sal_Int32 SAL_CALL rtl_ustr_lastIndexOfChar( const sal_Unicode * str, sal_Unicode ch ) SAL_THROW_EX…
605 sal_Int32 SAL_CALL rtl_ustr_lastIndexOfChar_WithLength( const sal_Unicode * str, sal_Int32 len, sal…
622 sal_Int32 SAL_CALL rtl_ustr_indexOfStr( const sal_Unicode * str, const sal_Unicode * subStr ) SAL_T…
646 sal_Int32 SAL_CALL rtl_ustr_indexOfStr_WithLength( const sal_Unicode * str, sal_Int32 len, const sa…
673 sal_Unicode const * str, sal_Int32 len,
[all …]
H A Dustring.hxx101 OUString( const OUString & str ) SAL_THROW(())
103 pData = str.pData;
112 OUString( rtl_uString * str ) SAL_THROW(())
114 pData = str;
124 inline OUString( rtl_uString * str, __sal_NoAcquire ) SAL_THROW( () ) in OUString() argument
125 { pData = str; } in OUString()
250 OUString & operator=( const OUString & str ) SAL_THROW(()) in operator =() argument
252 rtl_uString_assign( &pData, str.pData ); in operator =()
261 OUString & operator+=( const OUString & str ) SAL_THROW(()) in operator +=() argument
263 rtl_uString_newConcat( &pData, pData, str.pData ); in operator +=()
[all …]
H A Dstring.hxx103 OString( const OString & str ) SAL_THROW(())
105 pData = str.pData;
114 OString( rtl_String * str ) SAL_THROW(())
116 pData = str;
198 OString & operator=( const OString & str ) SAL_THROW(()) in operator =() argument
200 rtl_string_assign( &pData, str.pData ); in operator =()
209 OString & operator+=( const OString & str ) SAL_THROW(()) in operator +=() argument
211 rtl_string_newConcat( &pData, pData, str.pData ); in operator +=()
275 sal_Int32 compareTo( const OString & str ) const SAL_THROW(()) in compareTo()
278 str.pData->buffer, str.pData->length ); in compareTo()
[all …]
H A Dustrbuf.hxx302 OUStringBuffer & append(const OUString &str) in append() argument
304 return append( str.getStr(), str.getLength() ); in append()
318 OUStringBuffer & append( const sal_Unicode * str ) in append() argument
320 return append( str, rtl_ustr_getLength( str ) ); in append()
336 OUStringBuffer & append( const sal_Unicode * str, sal_Int32 len) in append() argument
339 rtl_uStringbuffer_insert( &pData, &nCapacity, getLength(), str, len ); in append()
359 OUStringBuffer & appendAscii( const sal_Char * str ) in appendAscii() argument
361 return appendAscii( str, rtl_str_getLength( str ) ); in appendAscii()
382 OUStringBuffer & appendAscii( const sal_Char * str, sal_Int32 len) in appendAscii() argument
384 rtl_uStringbuffer_insert_ascii( &pData, &nCapacity, getLength(), str, len ); in appendAscii()
[all …]
/AOO42X/main/qadevOOo/tests/java/ifc/text/
H A D_XAutoTextGroup.java64 protected String str = null ; field in _XAutoTextGroup
83 str = pref + uniq++ ; in before()
129 oObj.insertNewByName(str, "For " + str,oRange); in _insertNewByName()
140 oObj.insertNewByName(str, "For " + str, oRange); in _insertNewByName()
143 oObj.removeByName(str); in _insertNewByName()
173 oObj.removeByName(str); in _removeByName()
205 oObj.insertNewByName(str,"For " + str,oRange); in _renameByName()
206 oObj.insertNewByName(str + "dup","For " + str,oRange); in _renameByName()
216 oObj.removeByName(str); in _renameByName()
219 oObj.removeByName(str + "dup"); in _renameByName()
[all …]
/AOO42X/main/sdext/source/pdfimport/xpdfwrapper/
H A Dpdfioutdev_gpl.cxx140 void writeJpeg_( OutputBuffer& o_rOutputBuf, Stream* str, bool bWithLinefeed ) in writeJpeg_() argument
143 str->reset(); in writeJpeg_()
147 while((c=str->getChar()) != EOF) in writeJpeg_()
154 str->close(); in writeJpeg_()
157 void writePbm_(OutputBuffer& o_rOutputBuf, Stream* str, int width, int height, bool bWithLinefeed, … in writePbm_() argument
182 str->reset(); in writePbm_()
188 o_rOutputBuf.push_back(static_cast<char>(str->getChar() ^ 0xff)); in writePbm_()
193 o_rOutputBuf.push_back(static_cast<char>(str->getChar())); in writePbm_()
196 str->close(); in writePbm_()
200 Stream* str, in writePpm_() argument
[all …]
/AOO42X/main/xml2cmp/source/support/
H A Dsistr.cxx291 operator+(const char * str, const Simstr & S) in operator +() argument
294 ret.push_front(str); in operator +()
299 operator+(const Simstr & S, const char * str) in operator +() argument
302 ret.push_back(str); in operator +()
325 operator==(const Simstr & S, const char * str) in operator ==() argument
327 return strcmp(S,str) == 0; in operator ==()
331 operator!=(const Simstr & S, const char * str) in operator !=() argument
333 return strcmp(S,str) != 0; in operator !=()
337 operator<(const Simstr & S, const char * str) in operator <() argument
339 return strcmp(S,str) < 0; in operator <()
[all …]
/AOO42X/main/sax/test/sax/
H A Dfactory.hxx36 OStringBuffer str(128); \
37 str.append( __FILE__ );\
38 str.append( " " ); \
39 str.append( "(" ); \
40 str.append( OString::valueOf( (sal_Int32)__LINE__) );\
41 str.append(")\n" );\
42 str.append( "[ " ); \
43 str.append( #expr ); \
44 str.append( " ] : " ); \
45 str.append( Message ); \
[all …]
/AOO42X/main/i18npool/source/localedata/
H A DLocaleNode.cxx66 ::rtl::OUString str (aName); in print()
67 for(sal_Int32 i = 0; i < str.getLength(); i++) in print()
68 printf( "%c", str[i]); in print()
383 ::rtl::OUString str = getAttr() -> getValueByName("unoid"); in generateCode()
385 of.writeParameter("LC_CTYPE_Unoid", str); in generateCode()
594 OUString str; in generateCode() local
598 str = getAttr() -> getValueByName("replaceTo"); in generateCode()
600 if (str.endsWithIgnoreAsciiCaseAsciiL( "-FFFF]", 6)) in generateCode()
601 incErrorStr("replaceTo=\"%s\" needs FFFF to be adapted to the real LangID value.", str); in generateCode()
602 of.writeParameter("replaceTo", str, mnSection); in generateCode()
[all …]
/AOO42X/main/extensions/test/stm/
H A Dtestfactreg.hxx60 String str; \
61 str += __FILE__;\
62 str += " "; \
63 str += "(" ; \
64 str += __LINE__ ;\
65 str += ")\n";\
66 str += "[ " ; \
67 str += #expr; \
68 str += " ] : " ; \
69 str += Message; \
[all …]
/AOO42X/main/io/test/stm/
H A Dtestfactreg.hxx67 OStringBuffer str(128); \
68 str.append( __FILE__ );\
69 str.append( " " ); \
70 str.append( "(" ); \
71 str.append( OString::valueOf( (sal_Int32)__LINE__) );\
72 str.append(")\n" );\
73 str.append( "[ " ); \
74 str.append( #expr ); \
75 str.append( " ] : " ); \
76 str.append( Message ); \
[all …]
H A Dtestfactreg.cxx62 OUString str = OUString( RTL_CONSTASCII_USTRINGPARAM("/") ) + in component_writeInfo() local
65 Reference< XRegistryKey > xNewKey = xKey->createKey( str ); in component_writeInfo()
68 str = OUString( RTL_CONSTASCII_USTRINGPARAM("/") ) + in component_writeInfo()
71 xNewKey = xKey->createKey( str ); in component_writeInfo()
74 str = OUString( RTL_CONSTASCII_USTRINGPARAM("/") ) + in component_writeInfo()
77 xNewKey = xKey->createKey( str ); in component_writeInfo()
80 str = OUString( RTL_CONSTASCII_USTRINGPARAM("/") ) + in component_writeInfo()
83 xNewKey = xKey->createKey( str ); in component_writeInfo()
86 str = OUString( RTL_CONSTASCII_USTRINGPARAM("/") ) + in component_writeInfo()
89 xNewKey = xKey->createKey( str ); in component_writeInfo()
[all …]
/AOO42X/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/DirtyTags/
H A DTag.java76 String str = string; in xmlString()
78 for(int i=0;i<str.length();i++){ in xmlString()
79 if(str.charAt(i)=='&'){ in xmlString()
80 str=str.substring(0, i)+"&amp;"+str.substring(i+1); in xmlString()
84 if(str.charAt(i)=='<'){ in xmlString()
85 str=str.substring(0, i)+"&lt;"+str.substring(i+1); in xmlString()
89 if(str.charAt(i)=='>'){ in xmlString()
90 str=str.substring(0, i)+"&gt;"+str.substring(i+1); in xmlString()
94 if(str.charAt(i)=='"'){ in xmlString()
95 str=str.substring(0, i)+"&quot;"+str.substring(i+1); in xmlString()
[all …]
H A DTagPair.java262 String str = string; in xmlString()
264 for(int i=0;i<str.length();i++){ in xmlString()
265 if(str.charAt(i)=='&'){ in xmlString()
266 str=str.substring(0, i)+"&amp;"+str.substring(i+1); in xmlString()
270 if(str.charAt(i)=='<'){ in xmlString()
271 str=str.substring(0, i)+"&lt;"+str.substring(i+1); in xmlString()
275 if(str.charAt(i)=='>'){ in xmlString()
276 str=str.substring(0, i)+"&gt;"+str.substring(i+1); in xmlString()
280 if(str.charAt(i)=='"'){ in xmlString()
281 str=str.substring(0, i)+"&quot;"+str.substring(i+1); in xmlString()
[all …]
/AOO42X/main/migrationanalysis/src/wizard/
H A DWizard.frm1625 Dim str As String
1633 str = ReplaceTopic2Tokens(GetResString(RID_STR_ENG_OTHER_PREPARE_COMPLETED_PREP_ID), _
1635 MsgBox str, vbInformation
1694 Dim str As String
1697 str = ReplaceTopicTokens(GetResString(RID_STR_ENG_ANALYSE_NOT_RUN), CR_STR, Chr(13))
1698 response = MsgBox(str, vbOKCancel + vbInformation)
1724 Dim str As String
1747 str = ReplaceTopicTokens(GetResString(RID_STR_ENG_ANALYZE_COMPLETED_ID), CR_STR, Chr(13))
1748 response = MsgBox(str, vbOKCancel + vbInformation)
1783 Dim str As String
[all …]
/AOO42X/main/sfx2/qa/complex/sfx2/
H A DDocumentProperties.java242 String str; in check() local
247 str = "me"; in check()
248 xDP.setAuthor(str); in check()
249 assertTrue("setAuthor", str.equals(xDP.getAuthor())); in check()
250 str = "the computa"; in check()
251 xDP.setGenerator(str); in check()
252 assertTrue("setGenerator", str.equals(xDP.getGenerator())); in check()
258 str = "El t'itulo"; in check()
259 xDP.setTitle(str); in check()
260 assertTrue("setTitle", str.equals(xDP.getTitle())); in check()
[all …]
/AOO42X/main/i18npool/source/nativenumber/
H A Dnativenumbersupplier.cxx99 sal_Bool SAL_CALL AsciiToNative_numberMaker(const sal_Unicode *str, sal_Int32 begin, sal_Int32 len, in AsciiToNative_numberMaker() argument
109 if (notZero || str[begin] != NUMBER_ZERO) { in AsciiToNative_numberMaker()
110 dst[count] = numberChar[str[begin] - NUMBER_ZERO]; in AsciiToNative_numberMaker()
124 } else if (str[begin] != NUMBER_ZERO) { in AsciiToNative_numberMaker()
125 …g & (multiChar_index < 0 ? 0 : NUMBER_OMIT_ONE_CHECK(multiChar_index))) || str[begin] != NUMBER_ON… in AsciiToNative_numberMaker()
126 dst[count] = numberChar[str[begin] - NUMBER_ZERO]; in AsciiToNative_numberMaker()
143 return str[begin] != NUMBER_ZERO; in AsciiToNative_numberMaker()
150 printPower |= AsciiToNative_numberMaker(str, begin, tmp, dst, count, in AsciiToNative_numberMaker()
181 const sal_Unicode *str = inStr.getStr() + startPos; in AsciiToNative() local
191 if (i < nCount && isNumber(str[i])) { in AsciiToNative()
[all …]
/AOO42X/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/
H A DXLIFFWriter.java127 String str = string; in xmlString()
133 for(int i=0;i<str.length();i++){ in xmlString()
134 if(str.charAt(i)=='&'){ in xmlString()
135 str=str.substring(0, i)+"&amp;"+str.substring(i+1); in xmlString()
139 if(str.charAt(i)=='<'){ in xmlString()
140 str=str.substring(0, i)+"&lt;"+str.substring(i+1); in xmlString()
144 if(str.charAt(i)=='>'){ in xmlString()
145 str=str.substring(0, i)+"&gt;"+str.substring(i+1); in xmlString()
149 if(str.charAt(i)=='"'){ in xmlString()
150 str=str.substring(0, i)+"&quot;"+str.substring(i+1); in xmlString()
[all …]
/AOO42X/main/scripting/source/pyprov/
H A Dpythonscript.py34 unicode = str
66 ret = str(excType) + ": "+str(excInstance) + "\n" + \
166 return str( code.value, 'utf-8' )
170 def toIniName( str ): argument
173 return str + ".ini"
174 return str + "rc"
228 log.error( "error during converting scriptURI="+scriptURI + ": " + str(e))
229 raise RuntimeException( "pythonscript:scriptURI2StorageUri: " + str(e), None )
457 log.debug( "mapped " + url + " to " + str( entry.module ) )
496 … log.debug( "ScriptBrowseNode.getPropertyValue called for " + name + ", returning " + str(ret) )
[all …]
/AOO42X/main/qadevOOo/tests/java/mod/_stm/
H A DPump.java120 String str = "Pump tesing string" ; field in Pump.MyInput
125 if (str == null) in readBytes()
129 if (len <= str.length()) { in readBytes()
130 String resStr = str.substring(0, len-1) ; in readBytes()
133 str = str.substring(len) ; in readBytes()
135 bytes[0] = str.getBytes() ; in readBytes()
136 actual = str.length() ; in readBytes()
148 if (str == null) in skipBytes()
151 if (len >= str.length()) in skipBytes()
152 str = "" ; in skipBytes()
[all …]
/AOO42X/main/soltools/inc/
H A Dsimstr.hxx34 const char * str = 0);
82 const char * str() const;
186 Simstr operator+(const char * str, const Simstr & S);
187 Simstr operator+(const Simstr & S, const char * str);
192 bool operator==(const Simstr & S, const char * str);
193 bool operator!=(const Simstr & S, const char * str);
194 bool operator<(const Simstr & S, const char * str);
195 bool operator>(const Simstr & S, const char * str);
196 bool operator<=(const Simstr & S, const char * str);
197 bool operator>=(const Simstr & S, const char * str);
[all …]
/AOO42X/main/qadevOOo/tests/java/mod/_streams.uno/
H A DPump.java117 String str = "Pump tesing string" ; field in Pump.MyInput
122 if (str == null) in readBytes()
126 if (len <= str.length()) { in readBytes()
127 String resStr = str.substring(0, len-1) ; in readBytes()
130 str = str.substring(len) ; in readBytes()
132 bytes[0] = str.getBytes() ; in readBytes()
133 actual = str.length() ; in readBytes()
145 if (str == null) in skipBytes()
148 if (len >= str.length()) in skipBytes()
149 str = "" ; in skipBytes()
[all …]
/AOO42X/main/soltools/support/
H A Dsimstr.cxx724 operator+(const char * str, const Simstr & S) in operator +() argument
727 ret.push_front(str); in operator +()
732 operator+(const Simstr & S, const char * str) in operator +() argument
735 ret.push_back(str); in operator +()
758 operator==(const Simstr & S, const char * str) in operator ==() argument
760 return strcmp(S,str) == 0; in operator ==()
764 operator!=(const Simstr & S, const char * str) in operator !=() argument
766 return strcmp(S,str) != 0; in operator !=()
770 operator<(const Simstr & S, const char * str) in operator <() argument
772 return strcmp(S,str) < 0; in operator <()
[all …]

12345678910>>...18