/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
FontLoader.java | 295 * @see org.xml.sax.helpers.DefaultHandler#characters(char[], int, int) 298 public void characters(char[] ch, int start, int length) throws SAXException { method in class:FontLoader.FontDefinitionParser
|
/libcore/luni/src/main/java/org/apache/xml/utils/ |
DOMBuilder.java | 450 * chunks; however, all of the characters in any single event 461 * @param ch The characters from the XML document. 463 * @param length The number of characters to read from the array. 467 public void characters(char ch[], int start, int length) throws org.xml.sax.SAXException method in class:DOMBuilder 498 * @param ch Array containing the characters 499 * @param start Index to start of characters in the array 500 * @param length Number of characters in the array 566 * the characters in any single event must come from the same 573 * @param ch The characters from the XML document. 575 * @param length The number of characters to read from the array [all...] |
/libcore/luni/src/main/java/org/apache/xpath/objects/ |
XString.java | 117 * characters as white space characters. 119 * trim() methods by default also takes care of these white space characters 191 * characters method on the passed ContentHandler for the 193 * ContentHandler's characters methods may well occur for a single call to 206 ch.characters(str.toCharArray(), 0, str.length()); 230 * @return the length of the sequence of characters represented by this 257 * Copies characters from this string into the destination character 326 * the same sequence of characters as this object. 342 * the same sequence of characters as this object [all...] |
/libcore/luni/src/main/native/ |
org_apache_harmony_xml_ExpatParser.cpp | 414 * Copies UTF-8 characters into the buffer. Returns the number of Java chars 417 * @param characters to copy into the buffer 418 * @param length of characters to copy (in bytes) 419 * @returns number of UTF-16 characters which were copied 421 static size_t fillBuffer(ParsingContext* parsingContext, const char* characters, int length) { 428 // Decode UTF-8 characters into our buffer. 435 strcpylen8to16(nativeBuffer.get(), characters, length, &utf16length); 442 * @param method to pass the characters and length to with signature 664 * @param characters buffer containing encountered text 665 * @param length number of characters in the buffe [all...] |
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
XMLReaderAdapterTest.java | 350 method = "characters", 357 adapter.characters(ch, 2, 5); 363 assertEquals("characters", logger.getMethod());
|
/libcore/xml/src/main/java/org/kxml2/io/ |
KXmlSerializer.java | 32 /** size (in characters) for the write buffer */ 125 // BEGIN android-changed: refuse to output invalid characters 560 // We also aren't allowed any invalid characters.
|
/cts/tests/tests/view/src/android/view/cts/ |
KeyEventTest.java | 132 String characters = "android_test"; local 133 mKeyEvent = new KeyEvent(mDownTime, characters, 0, KeyEvent.FLAG_SOFT_KEYBOARD); 136 assertEquals(characters, mKeyEvent.getCharacters());
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
Parser.java | 652 // restart CDATA mode and process the tag as characters. 664 theContentHandler.characters(etagchars, 0, 2); 665 theContentHandler.characters(buff, offset, length); 666 theContentHandler.characters(etagchars, 2, 1); [all...] |
/external/webkit/WebCore/accessibility/ |
AccessibilityObject.cpp | 432 resultVector.append(markerText.characters(), markerText.length()); 452 resultVector.append(listMarkerText.characters(), listMarkerText.length()); 454 resultVector.append(it.characters(), it.length()); 692 // complete range of characters (including surrogate pairs of multi-byte glyphs) at the given [all...] |
/external/webkit/WebCore/dom/ |
SelectElement.cpp | 425 Vector<char, 1024> characters(length); 429 characters[i] = selected ? 'X' : '.'; 432 value = String(characters.data(), length); [all...] |
/external/webkit/WebCore/platform/ |
ContextMenu.cpp | 250 const UChar* characters = it.characters(); local 252 if (!(category(characters[i]) & (Separator_Space | Separator_Line | Separator_Paragraph))) [all...] |
/external/webkit/WebKit/android/nav/ |
CacheBuilder.cpp | 118 uChar(name.characters(), name.length(), false); 120 wideString(value.characters(), value.length(), false); 407 uChar(properties.characters(), properties.length(), false); 419 wideString(node->textContent().characters(), 100, false); 425 wideString(node->textContent().characters(), node->textContent().length(), true); 560 wideString(node->textContent().characters() + textBox->start(), textBox->len(), true); 602 wideString(local.characters(), local.length(), false); 743 wideString(str.characters(), str.length(), false); [all...] |
WebView.cpp | 913 jstring jName = env->NewString((jchar*) url.characters(), url.length()); [all...] |
/external/webkit/WebKit/win/ |
DOMCoreClasses.cpp | 122 *result = SysAllocStringLen(nodeValueStr.characters(), nodeValueStr.length()); 857 *result = SysAllocStringLen(attrValueString.characters(), attrValueString.length()); 1081 webFontDescription->family = family.characters(); [all...] |
WebHistory.cpp | 993 const UChar* characters = reinterpret_cast<const UChar*>(CFStringGetCharactersPtr(url)); local [all...] |
/libcore/luni/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
DOM2DTM.java | 1686 ((CharacterNodeHandler)ch).characters(node); method 1737 public void characters(Node node) method in interface:DOM2DTM.CharacterNodeHandler [all...] |
/libcore/luni/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
SAX2DTM.java | 110 /** Type of next characters() event within text block in prgress. */ 114 * Type of coalesced text block. See logic in the characters() 484 * characters method on the passed ContentHandler for the 487 * ContentHandler's characters methods may well occur for a single call to 576 ch.characters(str.toCharArray(), 0, str.length()); 899 // is called, to handle successive characters() events. 2068 public void characters(char ch[], int start, int length) throws SAXException method in class:SAX2DTM 2109 characters(ch, start, length); method [all...] |
/libcore/luni/src/main/java/org/apache/xml/serializer/ |
ToStream.java | 74 * characters in the output encoding. 136 * Map that tells which characters should have special treatment, and it 661 // characters are written to the output writer. 682 * NL, while on Windows it is two characters, CR NL, where CR is the 1396 public void characters(final char chars[], final int start, final int length) method in class:ToStream 1753 public void characters(String s) throws org.xml.sax.SAXException method in class:ToStream 1763 characters(m_charsBuff, 0, length); method 2542 characters(ch, start, length); method [all...] |
/dalvik/docs/ |
prettify.js | 56 /** the number of characters between tab columns */ 246 // TODO: maybe style special characters inside a regexp as punctuation. 265 /** escapest html special characters to html. */ 421 // (1) /[^<]+/ : A run of characters other than '<' 518 * all characters in sourceCode[index_n-1:index_n]. 532 * Shortcut is an optional string of characters, any of which, if the first 733 // and then contains any number of raw characters, [all...] |
/external/webkit/WebCore/css/ |
CSSParser.cpp | 103 if (a.characters[i] != b[i]) 115 if (toASCIILower(a.characters[i]) != b[i]) 192 if (charactersAreAllASCII(characters, length)) { 195 characters[i] = toASCIILower(characters[i]); 198 characters[i] = Unicode::toLower(characters[i]); 211 memcpy(m_data + strlen(prefix), string.characters(), string.length() * sizeof(UChar)); [all...] |
/external/grub/docs/ |
texinfo.tex | 65 % and turn on active characters that we couldn't do earlier because 591 % Other special characters: @questiondown @exclamdown @ordf @ordm [all...] |
/external/webkit/WebCore/editing/ |
Editor.cpp | [all...] |
/external/v8/src/ |
d8.js | [all...] |
/cts/tests/tests/util/src/android/util/cts/ |
XmlEncodingTest.java | 74 private static final String STR_CHARACTERS_TAG = "characters:"; 225 public void characters(char[] ch, int start, int length) throws SAXException { method in class:XmlEncodingTest.DefaultContentHandler
|
/external/webkit/WebCore/bridge/ |
npapi.h | 516 NPNSString *characters; member in struct:_NPCocoaEvent::__anon8002::__anon8004
|