/aoo4110/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() 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 …]
|
/aoo4110/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 …]
|
/aoo4110/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
|
/aoo4110/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() 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 …]
|
/aoo4110/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()
|
/aoo4110/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()
|
/aoo4110/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);
|
/aoo4110/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()
|
/aoo4110/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()
|
/aoo4110/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 | 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 | 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_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_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 | 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_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 | 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 | 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.
|
H A D | dict_word_hu.txt | 141 # Non-Control chars combine with $Extend (combining) chars. 148 # Reverse Rules. Back up over any of the chars that can group together.
|
H A D | dict_word_prepostdash.txt | 136 # Non-Control chars combine with $Extend (combining) chars. 143 # Reverse Rules. Back up over any of the chars that can group together.
|