/trunk/main/qadevOOo/java/OOoRunner/src/main/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() 179 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareSubstring() 188 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareSubstring() 196 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareSubstring() 204 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareSubstring() 231 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareString() 240 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareString() 249 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareString() 257 chars[0] = ch ; chars[1] = (char) (ch + 1) ; in _compareString() [all …]
|
/trunk/main/sc/workben/celltrans/ |
H A D | parse.py | 54 chars = "" 61 chars += self.locale 70 chars += " " 82 chars += ", " 83 chars += "0x0000" 85 chars += "};\n" 88 chars += "\n" 92 chars += " " 98 chars += "};\n\n" 104 return chars [all …]
|
/trunk/main/toolkit/src2xml/source/ |
H A D | srclexer.py | 57 chars = '' 79 chars += ";\n" 84 chars += line 85 chars += "\n" 87 sys.stderr.write(chars) 89 sys.stdout.write(chars) 114 self.chars = chars 156 c = self.chars[i] 169 c = self.chars[i] 191 c = self.chars[i] [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 += '>' 106 chars += "</%s>"%self.name [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
|
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/util/ |
H A D | XMLTools.java | 240 public void characters(String chars) { in characters() argument 242 _log.println(align + chars) ; in characters() 402 chars.put(ch, "") ; in addCharacters() 409 chars.put(ch, outerTag) ; in addCharactersEnclosed() 437 if (chars.containsKey(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 699 chars.remove(i--); in characters() 711 chars.remove(i--) ; in characters() [all …]
|
/trunk/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()
|
/trunk/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() 389 void TagLogger::chars(const string & rChars) in chars() function in writerfilter::TagLogger 391 currentTag()->chars(xmlify(rChars)); in chars() 394 void TagLogger::chars(const ::rtl::OUString & rChars) in chars() function in writerfilter::TagLogger 396 chars(OUStringToOString(rChars, RTL_TEXTENCODING_ASCII_US).getStr()); in chars() 536 pException->chars("getPropertyValue(\""); in unoPropertySetToTag() 537 pException->chars(sName); in unoPropertySetToTag() 538 pException->chars("\")"); in unoPropertySetToTag()
|
H A D | LoggedResources.cxx | 53 void LoggedResourcesHelper::chars(const ::rtl::OUString & rChars) in chars() function in writerfilter::LoggedResourcesHelper 55 mpLogger->chars(rChars); in chars() 58 void LoggedResourcesHelper::chars(const string & rChars) in chars() function in writerfilter::LoggedResourcesHelper 60 mpLogger->chars(rChars); in chars() 170 mHelper.chars(sText); in text() 192 mHelper.chars(sText); in utext() 286 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()
|
/trunk/main/writerfilter/inc/resourcemodel/ |
H A D | TagLogger.hxx | 78 void chars(const string & rChars); 79 void chars(const ::rtl::OUString & rChars); 115 void chars(const string & chars); 116 void chars(const ::rtl::OUString & chars);
|
/trunk/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()
|
/trunk/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()
|
/trunk/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ |
H A D | ReaderInputStream.java | 72 char[] chars = new char[charCount]; in read() local 73 int charsRead = reader.read(chars); in read() 79 b[off + i] = (byte)(chars[i/2] >>> (8*(i&1))); in read()
|
/trunk/main/writerfilter/source/dmapper/ |
H A D | DomainMapperTableHandler.cxx | 50 pTag->chars(rHandle->getString()); in handleToTag() 111 dmapper_logger->chars(aOUStr); in lcl_printProperties() 813 dmapper_logger->chars("failed to import table!"); in endTable() 821 … dmapper_logger->chars(rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_UTF8 ).getStr( )); in endTable() 881 dmapper_logger->chars(toString(start)); in startCell() 900 dmapper_logger->chars(toString(end)); in endCell()
|
/trunk/main/i18npool/source/breakiterator/data/ |
H A D | count_word.txt | 104 # Non-Control chars combine with $Extend (combining) chars. 111 # Reverse Rules. Back up over any of the chars that can group together.
|
H A D | count_word_fi.txt | 113 # Non-Control chars combine with $Extend (combining) chars. 120 # Reverse Rules. Back up over any of the chars that can group together.
|
H A D | edit_word.txt | 121 # Non-Control chars combine with $Extend (combining) chars. 128 # Reverse Rules. Back up over any of the chars that can group together.
|
H A D | dict_word_ca.txt | 118 # Non-Control chars combine with $Extend (combining) chars. 125 # Reverse Rules. Back up over any of the chars that can group together.
|
H A D | edit_word_he.txt | 121 # Non-Control chars combine with $Extend (combining) chars. 128 # Reverse Rules. Back up over any of the chars that can group together.
|
H A D | dict_word.txt | 127 # Non-Control chars combine with $Extend (combining) chars. 134 # Reverse Rules. Back up over any of the chars that can group together.
|
H A D | dict_word_he.txt | 118 # Non-Control chars combine with $Extend (combining) chars. 125 # Reverse Rules. Back up over any of the chars that can group together.
|
H A D | dict_word_nodash.txt | 126 # Non-Control chars combine with $Extend (combining) chars. 133 # Reverse Rules. Back up over any of the chars that can group together.
|
H A D | dict_word_fi.txt | 126 # Non-Control chars combine with $Extend (combining) chars. 133 # Reverse Rules. Back up over any of the chars that can group together.
|
H A D | edit_word_hu.txt | 138 # Non-Control chars combine with $Extend (combining) chars. 145 # Reverse Rules. Back up over any of the chars that can group together.
|