HomeSort by relevance Sort by last modified time
    Searched refs:characters (Results 451 - 475 of 673) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/graphics/android/
ImageSourceAndroid.cpp 165 m_decoder.m_url.setUTF16(url.characters(), url.length());
  /external/webkit/Source/WebCore/platform/qt/
ClipboardQt.cpp 181 QByteArray array(reinterpret_cast<const char*>(data.characters()), data.length() * 2);
  /external/webkit/Source/WebCore/rendering/
RenderFileUploadControl.cpp 231 const UChar* string = displayedFilename.characters();
286 // Figure out how big the filename space needs to be for a given number of characters
  /external/webkit/Source/WebKit/chromium/src/
ContextMenuClientImpl.cpp 95 TextBreakIterator* it = wordBreakIterator(text.characters(), text.length());
102 // the selection only when there were no selected characters on OS X.
  /frameworks/base/core/java/android/net/
UrlQuerySanitizer.java 46 * unregistered parameter sanitizer does not allow any special characters,
113 * Sanitize values based on which characters they contain. Illegal
114 * characters are replaced with either space or '_', depending upon
122 * Allow space (' ') characters.
126 * Allow whitespace characters other than space. The
127 * other whitespace characters are
132 * Allow characters with character codes 128 to 255.
136 * Allow double quote characters. ('"')
140 * Allow single quote characters. ('\'')
144 * Allow less-than characters. ('<'
    [all...]
  /frameworks/base/core/java/android/view/
KeyEvent.java 52 * to characters. Be aware that there may be multiple key input devices active
70 * that single repeated key code or a sequence of characters to insert.
237 * Deletes characters before the insertion point, unlike {@link #KEYCODE_FORWARD_DEL}. */
363 * Deletes characters ahead of the insertion point, unlike {@link #KEYCODE_DEL}. */
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
AccessPointParserHelper.java 191 public void characters(char ch[], int start, int length) throws SAXException {
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
FontLoader.java 222 * @see org.xml.sax.helpers.DefaultHandler#characters(char[], int, int)
225 public void characters(char[] ch, int start, int length) throws SAXException { method in class:FontLoader.FontHandler
  /libcore/luni/src/test/java/libcore/xml/
SaxTest.java 252 @Override public void characters(char[] ch, int start, int length) { method in class:SaxTest.ThrowingHandler
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
ParserAdapterTest.java 299 adapter.characters(ch, 2, 5);
305 assertEquals("characters", logger.getMethod());
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 33 /** size (in characters) for the write buffer */
121 // BEGIN android-changed: refuse to output invalid characters
552 // We also aren't allowed any invalid characters.
  /sdk/device_validator/dvlib/tests/src/com/android/dvlib/
DeviceSchemaTest.java 256 public void characters(char[] ch, int start, int length) { method in class:DeviceSchemaTest.ReplacementHandler
  /cts/tests/tests/view/src/android/view/cts/
KeyEventTest.java 70 String characters = "android_test"; local
71 mKeyEvent = new KeyEvent(mDownTime, characters, 0, KeyEvent.FLAG_SOFT_KEYBOARD);
74 assertEquals(characters, mKeyEvent.getCharacters());
  /external/apache-xml/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...]
  /external/apache-xml/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...]
  /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/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp     [all...]
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.cpp 121 *result = SysAllocStringLen(nodeValueStr.characters(), nodeValueStr.length());
897 *result = SysAllocStringLen(attrValueString.characters(), attrValueString.length());
1121 webFontDescription->family = family.characters();
    [all...]
WebHistory.cpp 991 const UChar* characters = reinterpret_cast<const UChar*>(CFStringGetCharactersPtr(url)); local
992 if (characters
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 260 /** Text to output when pressed. This can be multiple characters, like ".com" */
262 /** Popup characters */
561 * characters in left-to-right, top-to-bottom fashion, using the specified number of columns.
567 * @param characters the list of characters to display on the keyboard. One key will be created
574 CharSequence characters, int columns, int horizontalPadding) {
588 for (int i = 0; i < characters.length(); i++) {
589 char c = characters.charAt(i);
    [all...]
  /external/apache-xml/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/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jar 
  /external/v8/test/mjsunit/
regexp.js 110 re = /^[\c1]$/; // Digit control characters are masked in character classes.
122 re = /^[\c$]$/; // Other characters are interpreted literally.
130 // Test that we handle \s and \S correctly on special Unicode characters.

Completed in 2176 milliseconds

<<11121314151617181920>>