| /AOO41X/main/qadevOOo/tests/java/ifc/i18n/ |
| H A D | _XCollator.java | 163 char[] chars = new char[2] ; in _compareSubstring() local 170 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareSubstring() 171 result &= testCompareSubstring(chars, col) ; in _compareSubstring() 179 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareSubstring() 180 result &= testCompareSubstring(chars, col) ; in _compareSubstring() 188 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareSubstring() 189 result &= testCompareSubstring(chars, col) ; in _compareSubstring() 196 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareSubstring() 197 result &= testCompareSubstring(chars, col) ; in _compareSubstring() 204 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareSubstring() [all …]
|
| /AOO41X/main/sc/workben/celltrans/ |
| H A D | parse.py | 54 chars = "" 57 chars += "// " + "-"*75 + "\n" 58 chars += "// %s language locale (automatically generated)\n"%getLocaleName(self.locale) 59 chars += "// " + "-"*75 + "\n" 60 … chars += "static const Locale a" + self.locale.capitalize() + "(OUString::createFromAscii(\"" 61 chars += self.locale 62 chars += "\"), OUString(), OUString());\n\n" 66 chars += "// pre instantiations of localized function names\n" 69 … chars += "static const sal_Unicode " + self.getLocaleFuncVarName(func, item) + "[] = {\n" 70 chars += " " [all …]
|
| /AOO41X/main/toolkit/src2xml/source/ |
| H A D | srclexer.py | 57 chars = '' 62 chars += indent*scope + line + "\n" 64 chars += indent*scope + token + "\n" 69 chars += indent*scope + line + "\n" 72 chars += indent*scope + token 76 chars += indent*scope + line + ";\n" 79 chars += ";\n" 84 chars += line 85 chars += "\n" 87 sys.stderr.write(chars) [all …]
|
| H A D | globals.py | 68 chars = '' 70 chars += child.dump() 71 return chars 89 chars = '' 90 chars += "\n" + Element.INDENT*level 91 chars += '<%s'%self.name 96 chars += self.__dumpAttrs() 99 chars += '/>' 101 chars += '>' 103 chars += child.dump(level+1) [all …]
|
| H A D | expression.py | 31 chars = '(' 34 chars += "%d"%node.left 36 chars += toString(node.left) 38 chars += node.op 41 chars += "%d"%node.right 43 chars += toString(node.right) 45 chars += ")" 47 return chars
|
| /AOO41X/main/qadevOOo/runner/util/ |
| H A D | XMLTools.java | 240 public void characters(String chars) { in characters() argument 242 _log.println(align + chars) ; in characters() 378 protected Hashtable chars = new Hashtable() ; field in XMLTools.XMLTagsChecker 402 chars.put(ch, "") ; in addCharacters() 409 chars.put(ch, outerTag) ; in addCharactersEnclosed() 437 if (chars.containsKey(ch)) { in characters() 438 String outerTag = (String) chars.get(ch); in characters() 453 chars.remove(ch) ; in characters() 465 Enumeration badChars = chars.keys() ; in checkTags() 632 protected Vector chars = new Vector() ; field in XMLTools.XMLChecker [all …]
|
| /AOO41X/main/xmlsecurity/source/xmlsec/ |
| H A D | saxhelper.cxx | 363 const xmlChar* chars = NULL ; in characters() local 366 chars = ous_to_nxmlstr( aChars, length ) ; in characters() 367 m_pSaxHandler->characters( m_pParserCtxt , chars , length ) ; in characters() 369 if( chars != NULL ) in characters() 371 xmlFree( ( xmlChar* )chars ) ; in characters() 381 const xmlChar* chars = NULL ; in ignorableWhitespace() local 384 chars = ous_to_nxmlstr( aWhitespaces, length ) ; in ignorableWhitespace() 385 m_pSaxHandler->ignorableWhitespace( m_pParserCtxt , chars , length ) ; in ignorableWhitespace() 387 if( chars != NULL ) in ignorableWhitespace() 389 xmlFree( ( xmlChar* )chars ) ; in ignorableWhitespace()
|
| /AOO41X/main/writerfilter/source/resourcemodel/ |
| H A D | TagLogger.cxx | 115 void XMLTag::chars(const string & rChars) in chars() function in writerfilter::XMLTag 120 void XMLTag::chars(const ::rtl::OUString & rChars) in chars() function in writerfilter::XMLTag 122 chars(OUStringToOString(rChars, RTL_TEXTENCODING_ASCII_US).getStr()); in chars() 318 void TagLogger::chars(const string & rChars) in chars() function in writerfilter::TagLogger 320 currentTag()->chars(xmlify(rChars)); in chars() 323 void TagLogger::chars(const ::rtl::OUString & rChars) in chars() function in writerfilter::TagLogger 325 chars(OUStringToOString(rChars, RTL_TEXTENCODING_ASCII_US).getStr()); in chars() 465 pException->chars("getPropertyValue(\""); in unoPropertySetToTag() 466 pException->chars(sName); in unoPropertySetToTag() 467 pException->chars("\")"); in unoPropertySetToTag()
|
| H A D | LoggedResources.cxx | 52 void LoggedResourcesHelper::chars(const ::rtl::OUString & rChars) in chars() function in writerfilter::LoggedResourcesHelper 54 mpLogger->chars(rChars); in chars() 57 void LoggedResourcesHelper::chars(const string & rChars) in chars() function in writerfilter::LoggedResourcesHelper 59 mpLogger->chars(rChars); in chars() 169 mHelper.chars(sText); in text() 191 mHelper.chars(sText); in utext() 285 mHelper.chars(sprm.toString()); in sprm()
|
| H A D | Protocol.cxx | 88 m_pTagLogger->chars(sText); in text() 102 m_pTagLogger->chars(sText); in utext() 183 m_pTagLogger->chars(_sprm.toString()); in sprm()
|
| /AOO41X/main/writerfilter/inc/resourcemodel/ |
| H A D | TagLogger.hxx | 78 void chars(const string & rChars); 79 void chars(const ::rtl::OUString & rChars); 114 void chars(const string & chars); 115 void chars(const ::rtl::OUString & chars);
|
| H A D | LoggedResources.hxx | 41 void chars(const ::rtl::OUString & rChars); 42 void chars(const string & rChars);
|
| H A D | TableManager.hxx | 689 mpTableLogger->chars(toString(rHandle)); in handle() 1033 mpTableLogger->chars(toString(rHandle)); in openCell() 1052 mpTableLogger->chars(toString(rHandle)); in closeCell()
|
| /AOO41X/test/testcommon/source/org/openoffice/test/vcl/ |
| H A D | Tester.java | 304 String chars = "`1234567890-=qwertyuiop[]\\asdfghjkl;'zxcvbnm,./"; 306 for(int i = 0; i < chars.length(); i++) { 307 keyMap.put(chars.charAt(i), new String[]{chars.substring(i, i + 1)}); in chars.charAt() 308 keyMap.put(shiftChars.charAt(i), new String[]{"shift", chars.substring(i, i + 1)}); in shiftChars.charAt()
|
| /AOO41X/test/testcommon/source/org/openoffice/test/vcl/client/ |
| H A D | CommandCaller.java | 192 char[] chars = str.toCharArray(); in writeString() local 194 writeChar(chars[i]); in writeString() 205 char[] chars = new char[len]; in readString() local 207 chars[i] = (char) readChar(); in readString() 209 return new String(chars); in readString()
|
| /AOO41X/main/x11_extensions/inc/ |
| H A D | Xrender.h | 101 _Xconst char *chars; member 109 _Xconst unsigned short *chars; member 117 _Xconst unsigned int *chars; member
|
| /AOO41X/main/scripting/source/storage/ |
| H A D | XMLElement.hxx | 48 inline XMLElement( ::rtl::OUString const & name, ::rtl::OUString const & chars ) in XMLElement() argument 50 : _name( name ), _chars( chars ) in XMLElement()
|
| /AOO41X/main/writerfilter/source/ooxml/ |
| H A D | OOXMLFastContextHandler.cxx | 835 debug_logger->chars(sText); in text() 1020 debug_logger->chars("true"); in setForwardEvents() 1022 debug_logger->chars("false"); in setForwardEvents() 1195 debug_logger->chars(xmlify(getPropertySetAttrs()->toString())); in sendProperty() 1217 debug_logger->chars(mpPropertySetAttrs->toString()); in resolvePropertySetAttrs() 1391 debug_logger->chars("OOXMLFastContextHandlerProperties"); in setParent() 1874 debug_logger->chars("failed to get shape handler"); in OOXMLFastContextHandlerShape()
|
| /AOO41X/main/cli_ure/source/native/ |
| H A D | native_share.h | 50 wchar_t const __pin * chars = PtrToStringChars( str ); in String_to_ustring() local 51 return ::rtl::OUString( chars, str->get_Length() ); in String_to_ustring()
|
| /AOO41X/main/writerfilter/source/dmapper/ |
| H A D | DomainMapperTableHandler.cxx | 752 dmapper_logger->chars("failed to import table!"); in endTable() 759 … dmapper_logger->chars(rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_UTF8 ).getStr( )); in endTable() 819 dmapper_logger->chars(toString(start)); in startCell() 838 dmapper_logger->chars(toString(end)); in endCell()
|
| /AOO41X/main/xmlsecurity/tools/standalone/mscsfit/ |
| H A D | certmngr.cxx | 152 sal_Int32 chars = pSecEnv->getCertificateCharacters( xPersonalCerts[i] ) ; in main() local 153 fprintf( stdout, "The certificate characters are %d\n", chars ) ; in main()
|
| /AOO41X/main/jvmfwk/plugins/sunmajor/javaenvsetup/ |
| H A D | javaldx.cxx | 147 const sal_Unicode* chars = (sal_Unicode*) vendorData.getConstArray(); in getLD_LIBRARY_PATH() local 149 rtl::OUString sData(chars, len / 2); in getLD_LIBRARY_PATH()
|
| /AOO41X/main/xmlsecurity/tools/standalone/csfit/ |
| H A D | certmngr.cxx | 162 sal_Int32 chars = pSecEnv->getCertificateCharacters( xPersonalCerts[i] ) ; in main() local 163 fprintf( stdout, "The certificate characters are %d\n", chars ) ; in main()
|
| /AOO41X/main/offapi/com/sun/star/xml/input/ |
| H A D | XElement.idl | 83 @param chars 86 void characters( [in] string chars )
|
| /AOO41X/main/scripting/examples/beanshell/Capitalise/ |
| H A D | capitalise.bsh | 39 …length()>=2 && Character.isUpperCase(theString.charAt(1))) { // first two chars are UC => first UC… 74 // move the cursor to the next word, selecting all chars
|