/external/webkit/Source/WebCore/platform/graphics/qt/ |
FontQt.cpp | 58 return QString::fromRawData(reinterpret_cast<const QChar*>(string.characters() + start), len); 110 String sanitized = Font::normalizeSpaces(run.characters(), run.length()); 284 String sanitized = Font::normalizeSpaces(run.characters(), run.length()); 307 String sanitized = Font::normalizeSpaces(run.characters(), run.length()); 320 String sanitized = Font::normalizeSpaces(run.characters(), run.length()); 343 String sanitized = Font::normalizeSpaces(run.characters(), run.length()); 353 String sanitized = Font::normalizeSpaces(run.characters(), run.length()); 365 String sanitized = Font::normalizeSpaces(run.characters(), run.length());
|
/external/webkit/Source/WebCore/platform/iphone/ |
KeyEventIPhone.mm | 43 LOG(Events, "received an unexpected number of characters in key event: %u", [s length]); 53 , m_text(event.characters) 103 // According to NSEvents.h, OpenStep reserves the range 0xF700-0xF8FF for function keys. However, some actual private use characters
|
/external/webkit/Source/WebCore/platform/text/brew/ |
TextCodecBrew.cpp | 153 CString TextCodecBrew::encode(const UChar* characters, size_t length, UnencodableHandling handling) 167 unsigned char* srcBegin = const_cast<unsigned char*>(reinterpret_cast<const unsigned char*>(characters));
|
/external/webkit/Source/WebCore/platform/wx/wxcode/win/ |
fontprops.cpp | 69 bool wxFontContainsCharacters(void* font, const UChar* characters, int length) 71 // FIXME: Microsoft documentation seems to imply that characters can be output using a given font and DC 98 langFontLink->GetStrCodePages(characters, length, acpCodePages, &actualCodePages, &numCharactersProcessed);
|
/external/webkit/Source/WebCore/rendering/ |
RenderText.h | 70 const UChar* characters() const { return m_text.characters(); } function in class:WebCore::RenderText
|
/external/webkit/Source/WebCore/svg/ |
SVGViewSpec.cpp | 50 const UChar* c = viewBoxStr.characters(); 81 const UChar* currViewSpec = viewSpec.characters();
|
/external/webkit/Source/WebKit/win/ |
WebKitGraphics.cpp | 151 memcpy(buffer, result.characters(), result.length() * sizeof(UChar)); 161 memcpy(buffer, result.characters(), result.length() * sizeof(UChar));
|
/external/webkit/Source/WebKit2/UIProcess/Plugins/mac/ |
PluginInfoStoreMac.mm | 53 return CFStringCreateWithCharacters(0, reinterpret_cast<const UniChar*>(string.characters()), string.length());
|
/external/webkit/Source/WebKit2/WebProcess/mac/ |
WebProcessMainMac.mm | 76 RetainPtr<CFStringRef> cfLocalization(AdoptCF, CFStringCreateWithCharacters(0, reinterpret_cast<const UniChar*>(localization.characters()), localization.length()));
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
XMLReaderAdapter.java | 360 * Adapt a SAX2 characters event. 362 * @param ch An array of characters. 364 * @param length The number of characters to use. 367 * @see org.xml.sax.ContentHandler#characters method in class:XMLReaderAdapter 369 public void characters (char ch[], int start, int length) 373 documentHandler.characters(ch, start, length); 380 * @param ch An array of characters. 382 * @param length The number of characters to use.
|
/external/webkit/Source/WebCore/platform/ |
KURL.cpp | 243 // Copies the source to the destination, assuming all the source characters are 244 // ASCII. The destination buffer must be large enough. Null characters are allowed 255 copyASCII(base.characters(), base.length(), buffer.data()); 261 // Returns the index of the first index in string |s| of any of the characters 262 // in |toFind|. |toFind| should be a null-terminated string, all characters up 346 // characters from URLs. Note that c is an *unsigned* char here 347 // so this comparison should only catch control characters. 369 bool allASCII = charactersAreAllASCII(rel.characters(), rel.length()); 376 copyASCII(rel.characters(), len, strBuffer.data()); 386 // Get rid of leading whitespace and control characters [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToXMLSAXHandler.java | 422 * this.characters(chars1, off1, len1); 425 * this.characters(chars2, off2, len2); 431 * m_saxHandler.characters(chars1, off1, len1); 432 * m_saxHandler.characters(chars1, off2, len2); 458 * @see ExtendedContentHandler#characters(String) 460 public void characters(String chars) throws SAXException method in class:ToXMLSAXHandler 468 this.characters(m_charsBuff, 0, length); 512 public void characters(char[] ch, int off, int len) throws SAXException method in class:ToXMLSAXHandler 542 m_saxHandler.characters(ch, off, len); 544 // time to generate characters even [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
XStringForChars.java | 47 * @param length The number of characters to read from the array. 131 * characters method on the passed ContentHandler for the 133 * ContentHandler's characters methods may well occur for a single call to 143 ch.characters((char[])m_obj, m_start, m_length); 164 * @return the length of the sequence of characters represented by this 191 * Copies characters from this string into the destination character
|
/external/v8/src/ |
regexp-macro-assembler-tracer.h | 83 int characters = 1);
|
/external/v8/test/mjsunit/ |
search-string-multiple.js | 58 "A long string with no non-ASCII characters", 61 "A long string with no non-ASCII characters");
|
/external/webkit/Source/WebCore/bindings/cpp/ |
WebDOMString.cpp | 58 return m_private ? const_cast<WebDOMStringPrivate*>(m_private)->characters() : 0;
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
FontUtilsChromiumWin.cpp | 83 // did, the results of tests with CJK characters would have to be 192 // There are a lot of characters in USCRIPT_COMMON that can be covered 325 // - All the characters (or characters up to the point a single 327 const UChar* getFallbackFamily(const UChar* characters, 333 ASSERT(characters && characters[0] && length > 0); 336 // Sometimes characters common to script (e.g. space) is at 342 U16_NEXT(characters, i, length, ucs4); 346 // For the full-width ASCII characters (U+FF00 - U+FF5E), use the font fo [all...] |
UniscribeHelperTextRun.cpp | 43 : UniscribeHelper(run.characters(), run.length(), run.rtl(),
|
/external/webkit/Source/WebCore/platform/graphics/haiku/ |
SimpleFontDataHaiku.cpp | 97 bool SimpleFontData::containsCharacters(const UChar* characters, int length) const
|
/external/webkit/Source/WebCore/platform/mac/ |
KeyEventMac.mm | 116 return [event characters]; 157 LOG(Events, "received an unexpected number of characters in key event: %u", [s length]); 166 // There are several kinds of characters for which we produce key code from char code: 173 // Cmd switches Roman letters for Dvorak-QWERTY layout, so try modified characters first. 174 NSString* s = [event characters]; 241 // According to NSEvents.h, OpenStep reserves the range 0xF700-0xF8FF for function keys. However, some actual private use characters
|
/external/webkit/Source/WebCore/platform/network/ |
DataURL.cpp | 83 CString encodedData = TextEncoding().encode(data.characters(), data.length(), URLEncodedEntitiesForUnencodables);
|
/external/webkit/Source/WebCore/platform/text/wince/ |
TextCodecWinCE.cpp | 278 CString TextCodecWinCE::encode(const UChar* characters, size_t length, UnencodableHandling) 280 if (!characters || !length) 283 int resultLength = WideCharToMultiByte(m_codePage, WC_COMPOSITECHECK, characters, length, 0, 0, 0, 0); 293 WideCharToMultiByte(m_codePage, WC_COMPOSITECHECK, characters, length, characterBuffer, resultLength, 0, 0);
|
/external/webkit/Source/WebCore/xml/ |
XSLTUnicodeSort.cpp | 201 tst = collator.collate(str1.characters(), str1.length(), str2.characters(), str2.length()); 256 tst = collator.collate(str1.characters(), str1.length(), str2.characters(), str2.length());
|
/external/webkit/Source/WebKit/android/jni/ |
WebCoreJni.cpp | 77 return length || validOnZeroLength ? env->NewString(str.characters(), length) : 0;
|
/external/webkit/Source/WebKit/android/nav/ |
CachedInput.cpp | 70 const UChar* ch = string.characters();
|