/external/v8/test/mjsunit/ |
unicode-string-to-number.js | 28 // Make sure not to treat 16-bit unicode characters as ASCII 29 // characters when converting to numbers. 40 // Check that long strings with non-ASCII characters cannot convert.
|
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/ |
LatinKeyboard.java | 36 CharSequence characters, int columns, int horizontalPadding) { 37 super(context, layoutTemplateResId, characters, columns, horizontalPadding);
|
/external/webkit/WebCore/platform/graphics/chromium/ |
FontCacheLinux.cpp | 58 const UChar* characters, 61 String family = ChromiumBridge::getFontFamilyForCharacters(characters, length);
|
FontUtilsChromiumWin.cpp | 123 // There are a lot of characters in USCRIPT_COMMON that can be covered 242 // - All the characters (or characters up to the point a single 244 const UChar* getFallbackFamily(const UChar* characters, 250 ASSERT(characters && characters[0] && length > 0); 253 // Sometimes characters common to script (e.g. space) is at 259 U16_NEXT(characters, i, length, ucs4); 263 // For the full-width ASCII characters (U+FF00 - U+FF5E), use the font for 265 // characters are rather widely used in Japanese and Chinese documents an [all...] |
HarfbuzzSkia.cpp | 57 static HB_Bool stringToGlyphs(HB_Font hbFont, const HB_UChar16* characters, hb_uint32 length, HB_Glyph* glyphs, hb_uint32* glyphsSize, HB_Bool isRTL) 64 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t), reinterpret_cast<uint16_t*>(glyphs)); 105 static HB_Bool canRender(HB_Font hbFont, const HB_UChar16* characters, hb_uint32 length) 116 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t), glyphs16.get());
|
/external/webkit/WebCore/platform/graphics/mac/ |
ComplexTextControllerATSUI.cpp | 128 // u_shapeArabic quirk: if the last two characters in the source string are a Lam and an Alef, 143 ComplexTextController::ComplexTextRun::ComplexTextRun(ATSUTextLayout atsuTextLayout, const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr, bool directionalOverride) 145 , m_characters(characters) 167 UChar mirroredChar = u_charMirror(characters[i]); 168 if (mirroredChar != characters[i]) { 172 memcpy(substituteCharacters.data(), characters, stringLength * sizeof(UChar)); 178 if (shouldCheckForArabic && isArabicChar(characters[i])) { 186 shapeArabic(substituteCharacters.isEmpty() ? characters : substituteCharacters.data(), shapedArabic.data(), stringLength); 196 memcpy(substituteCharacters.data() + 1, characters, stringLength * sizeof(UChar)); 263 // in characters that always go through ATSUI, and therefore allow them. Geeza Pro is an example [all...] |
FontCacheMac.mm | 94 const SimpleFontData* FontCache::getFontDataForCharacters(const Font& font, const UChar* characters, int length) 96 const FontPlatformData& platformData = font.fontDataAt(0)->fontDataForCharacter(characters[0])->platformData(); 99 NSString *string = [[NSString alloc] initWithCharactersNoCopy:const_cast<UChar*>(characters) length:length freeWhenDone:NO]; 104 substituteFont = wkGetFontInLanguageForCharacter(nsFont, characters[0]); 112 // doesn't actually cover the characters we need.
|
/external/webkit/WebCore/platform/graphics/wx/ |
SimpleFontDataWx.cpp | 101 bool SimpleFontData::containsCharacters(const UChar* characters, int length) const 104 return wxFontContainsCharacters(*m_platformData.font(), characters, length);
|
/external/webkit/WebCore/platform/text/ |
RegularExpression.cpp | 53 JSRegExp* regexp = jsRegExpCompile(pattern.characters(), pattern.length(), 108 int result = jsRegExpExecute(d->regexp(), str.characters(), str.length(), startFrom, offsets, maxOffsets);
|
SegmentedString.h | 35 , m_current(str.isEmpty() ? 0 : str.characters()) 52 if (m_string.characters() == m_current) {
|
StringBuilder.cpp | 89 memcpy(p, string->characters(), length * 2);
|
/external/webkit/WebCore/platform/text/qt/ |
TextCodecQt.cpp | 128 CString TextCodecQt::encode(const UChar* characters, size_t length, UnencodableHandling) 135 QByteArray ba = m_codec->fromUnicode(reinterpret_cast<const QChar*>(characters), length, 0);
|
/external/webkit/WebKit/chromium/tests/ |
UniscribeHelperTest.cpp | 79 properties.wgInvalid = '#'; // Used for invalid characters. 117 input.characters(), static_cast<int>(input.length()), 150 input.characters(), static_cast<int>(input.length()),
|
/external/webkit/WebCore/platform/graphics/ |
FontCache.h | 62 const SimpleFontData* getFontDataForCharacters(const Font&, const UChar* characters, int length);
|
/external/webkit/WebCore/platform/graphics/android/ |
FontAndroid.cpp | 187 width = paint.measureText(run.characters(), run.length() << 1); 209 canvas->drawText(run.characters(), run.length() << 1, 222 SkScalar width = paint.measureText(run.characters(), run.length() << 1); 236 count = paint.getTextWidths(run.characters(), count << 1, widths);
|
/external/webkit/WebCore/platform/graphics/haiku/ |
SimpleFontDataHaiku.cpp | 85 bool SimpleFontData::containsCharacters(const UChar* characters, int length) const
|
/external/webkit/WebCore/platform/qt/ |
KURLQt.cpp | 89 QString str = QString::fromRawData(reinterpret_cast<const QChar*>(m_string.characters()), m_string.length());
|
/external/webkit/WebCore/platform/wince/ |
FileSystemWince.cpp | 117 buffer.append(path.characters(), path.length()); 123 buffer.append(component.characters(), component.length()); 187 wchar_t tempFile[] = L"XXXXXXXX.tmp"; // Use 8.3 style name (more characters aren't helpful due to 8.3 short file names) 192 // Limit to valid filesystem characters, also excluding others that could be problematic, like punctuation. 259 pattern.append(path.characters(), path.length()); 264 pattern.append(filter.characters(), filter.length());
|
/external/webkit/WebCore/platform/wx/wxcode/mac/carbon/ |
fontprops.mm | 95 bool wxFontContainsCharacters(const wxFont& font, const UChar* characters, int length) 98 NSString* string = [[NSString alloc] initWithCharactersNoCopy:const_cast<unichar*>(characters) length:length freeWhenDone:NO];
|
/external/webkit/WebCore/svg/ |
SVGPreserveAspectRatio.h | 76 const UChar* begin = value.characters();
|
/external/webkit/WebCore/websockets/ |
WebSocket.cpp | 59 const UChar* characters = protocol.characters(); local 61 if (characters[i] < 0x20 || characters[i] > 0x7E)
|
/external/webkit/WebCore/wml/ |
WMLPostfieldElement.cpp | 72 return encoding.encode(data.characters(), data.length(), EntitiesForUnencodables);
|
/external/webkit/WebCore/xml/ |
XPathUtil.cpp | 60 result.append(nodeValue.characters(), nodeValue.length());
|
/external/webkit/WebKit/android/nav/ |
CachedInput.cpp | 45 const UChar* ch = string.characters();
|
/libcore/luni/src/main/java/org/apache/xalan/templates/ |
ElemTextLiteral.java | 79 * Set the characters that will be output to the result tree.. 81 * @param v Array of characters that will be output to the result tree 89 * Get the characters that will be output to the result tree.. 91 * @return Array of characters that will be output to the result tree 124 * possibly other characters) when outputting text nodes. 149 * possibly other characters) when outputting text nodes. 213 rth.characters(m_ch, 0, m_ch.length);
|