HomeSort by relevance Sort by last modified time
    Searched refs:characters (Results 126 - 150 of 389) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/main/java/org/xml/sax/helpers/
DefaultHandler.java 316 * @param ch The characters.
318 * @param length The number of characters to use from the
322 * @see org.xml.sax.ContentHandler#characters
324 public void characters (char ch[], int start, int length)
339 * @param ch The whitespace characters.
341 * @param length The number of characters to use from the
321 public void characters (char ch[], int start, int length) method in class:DefaultHandler
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilContentHandler.java 90 public void characters(char[] ch, int start, int length) { method in class:SmilContentHandler
92 Log.v(TAG, "SmilContentHandler.characters. ch = " + new String(ch, start, length));
  /external/v8/src/
regexp-macro-assembler-tracer.cc 175 int characters) {
181 characters);
185 characters);
regexp-macro-assembler-irregexp.h 77 int characters = 1);
  /external/webkit/WebCore/platform/graphics/chromium/
FontCacheChromiumWin.cpp 61 return charactersAreAllASCII(s.characters(), s.length());
240 memcpy(winfont->lfFaceName, family.characters(), len * sizeof(WORD));
261 // characters. Because it's family names rather than font faces we use
269 // FIXME: For non-BMP characters, GetFontUnicodeRanges is of
325 // font that can be used to render the given range of characters.
326 const SimpleFontData* FontCache::getFontDataForCharacters(const Font& font, const UChar* characters, int length)
333 const wchar_t* family = getFallbackFamily(characters, length,
367 // once installed, cover a very wide range of characters.
388 // Font returned from GetFallbackFamily may not cover |characters|
507 memcpy(logFont.lfFaceName, familyName.characters(), familyLength * sizeof(UChar))
    [all...]
SimpleFontDataChromiumWin.cpp 122 bool SimpleFontData::containsCharacters(const UChar* characters, int length) const
  /external/webkit/WebCore/platform/graphics/wince/
FontWince.cpp 146 components->append(TextRunComponent(run.characters() + start, i - start,
161 components->append(TextRunComponent(run.characters() + start, i - start,
169 components->append(TextRunComponent(run.characters() + start, run.length() - start,
180 components->append(TextRunComponent(run.characters() + start, i - start,
199 components->append(TextRunComponent(run.characters() + start, run.length() - start,
FontCacheWince.cpp 228 const SimpleFontData* FontCache::getFontDataForCharacters(const Font& font, const UChar* characters, int length)
233 UChar character = characters[0];
342 memcpy(logFont.lfFaceName, familyName.characters(), familyLength * sizeof(UChar));
  /external/webkit/WebCore/platform/
KURL.cpp 242 // Copies the source to the destination, assuming all the source characters are
243 // ASCII. The destination buffer must be large enough. Null characters are allowed
254 copyASCII(base.characters(), base.length(), buffer.data());
260 // Returns the index of the first index in string |s| of any of the characters
261 // in |toFind|. |toFind| should be a null-terminated string, all characters up
354 bool allASCII = charactersAreAllASCII(rel.characters(), rel.length());
361 copyASCII(rel.characters(), len, strBuffer.data());
464 const UChar* baseCharacters = base.m_string.characters();
651 return !protocol[m_schemeEnd]; // We should have consumed all characters in the argument.
690 // FIXME: Non-ASCII characters must be encoded and escaped to match parse() expectations
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 116 // FIXME: Instead of dividing the glyph's advance equally between the characters, this
121 TextBreakIterator* cursorPositionIterator = cursorMovementIterator(complexTextRun.characters(), stringLength);
180 const UChar* cp = m_run.characters();
314 ComplexTextController::ComplexTextRun::ComplexTextRun(const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr)
316 , m_characters(characters)
394 // FIXME: Instead of dividing the glyph's advance equially between the characters, this
432 const UChar* cp = complexTextRun.characters();
456 nextCh = *(m_complexTextRuns[r + 1]->characters() + m_complexTextRuns[r + 1]->indexAt(0));
510 // Deal with the float/integer impedance mismatch between CG and WebCore. "Words" (characters
513 // Force characters that are used to determine word boundaries for the rounding hac
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
FontCacheWin.cpp 188 const SimpleFontData* FontCache::getFontDataForCharacters(const Font& font, const UChar* characters, int length)
190 UChar character = characters[0];
239 if (SUCCEEDED(ScriptStringAnalyse(metaFileDc, characters, length, 0, -1, SSA_METAFILE | SSA_FALLBACK | SSA_GLYPHS | SSA_LINK,
278 memcpy(logFont.lfFaceName, linkedFonts->at(linkedFontIndex).characters(), linkedFonts->at(linkedFontIndex).length() * sizeof(WCHAR));
409 memcpy(logFont.lfFaceName, family.characters(), familyLength * sizeof(UChar));
496 memcpy(logFont.lfFaceName, familyName.characters(), familyLength * sizeof(UChar));
  /libcore/luni/src/main/java/org/apache/xml/serializer/
ToUnknownStream.java 63 * A String with no characters
313 * characters(char[],int,int);
315 * @see ExtendedContentHandler#characters(String)
317 public void characters(String chars) throws SAXException method in class:ToUnknownStream
325 this.characters(m_charsBuff, 0, length);
775 * @see org.xml.sax.ContentHandler#characters(char[], int, int)
777 public void characters(char[] characters, int offset, int length) method in class:ToUnknownStream
785 m_handler.characters(characters, offset, length)
    [all...]
  /external/icu4c/data/mappings/
ucmfiles.mk 19 # * To add EBCDIC converters that uses different SI/SO characters:
21 # different SI/SO characters than the "standard" ones: 0xf/0xe.
  /external/webkit/JavaScriptCore/parser/
Lexer.h 82 const Identifier* makeIdentifier(const UChar* characters, size_t length);
104 // current and following unicode characters (int to allow for -1 for end-of-file marker)
  /external/webkit/WebCore/dom/
StyleElement.cpp 83 memcpy(p, nodeValue.characters(), nodeLength * sizeof(UChar));
  /external/webkit/WebCore/plugins/
PluginStream.cpp 150 stringBuilder.append(statusLine.characters(), statusLine.length());
154 stringBuilder.append(it->first.characters(), it->first.length());
155 stringBuilder.append(separator.characters(), separator.length());
156 stringBuilder.append(it->second.characters(), it->second.length());
  /external/webkit/WebKit/android/WebCoreSupport/
MediaPlayerPrivateAndroid.cpp 180 jstring jUrl = env->NewString((unsigned short *)m_url.characters(), m_url.length());
193 jstring jUrl = env->NewString((unsigned short *)m_posterUrl.characters(), m_posterUrl.length());
299 jUrl = env->NewString((unsigned short *)m_posterUrl.characters(), m_posterUrl.length());
330 jstring jUrl = env->NewString((unsigned short *)m_url.characters(), m_url.length());
  /external/webkit/WebKit/win/
DOMCSSClasses.cpp 107 *result = SysAllocStringLen(value.characters(), value.length());
  /frameworks/base/sax/java/android/sax/
RootElement.java 170 public void characters(char[] buffer, int start, int length) method in class:RootElement.Handler
  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorCharacters.java 101 * @param ch The characters.
103 * @param length The number of characters to use from the
107 * @see org.xml.sax.ContentHandler#characters
109 public void characters( method in class:ProcessorCharacters
157 * Accumulate characters, until a non-whitespace event has
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXWriter.java 143 public void characters(char[] buff, int offset, int length) throws SAXException { method in class:PYXWriter
160 characters(buff, offset, length); method
  /external/v8/test/mjsunit/regress/
regress-486.js 28 var st = "\u0422\u0435\u0441\u0442"; // Test in Cyrillic characters.
  /external/webkit/JavaScriptCore/tests/mozilla/Getopt/
Mixed.pm 49 $typeChars = 'sif'; # Match type characters
69 # If the first argument is entirely non-alphanumeric characters
70 # with no whitespace, it is the characters that start options.
80 # If the first argument is entirely non-alphanumeric characters
437 argument specifier. Option names may consist of any characters but
464 non-alphanumeric characters with no whitespace, it represents the
465 characters which can begin options.
533 characters in the name will be converted to underscores (C<_>).
552 names with non-alphanumeric characters without any translation. This
628 A string of characters that can start options. Default is "-"
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9/
string-validate-input.js 51 r = zip + " is longer than five characters.";
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
string-validate-input.js 51 r = zip + " is longer than five characters.";

Completed in 1051 milliseconds

1 2 3 4 56 7 8 91011>>