HomeSort by relevance Sort by last modified time
    Searched refs:characters (Results 151 - 175 of 655) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
HarfbuzzSkia.cpp 54 static HB_Bool stringToGlyphs(HB_Font hbFont, const HB_UChar16* characters, hb_uint32 length, HB_Glyph* glyphs, hb_uint32* glyphsSize, HB_Bool isRTL)
61 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t), reinterpret_cast<uint16_t*>(glyphs));
102 static HB_Bool canRender(HB_Font hbFont, const HB_UChar16* characters, hb_uint32 length)
112 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t), glyphs16.get());
  /external/webkit/Source/WebCore/platform/text/
LocalizedNumberICU.cpp 67 UnicodeString numberUnicodeString(numberString.characters(), numberString.length());
SegmentedString.h 42 , m_current(str.isEmpty() ? 0 : str.characters())
59 if (m_string.characters() == m_current) {
204 // Writes the consumed characters into consumedCharacters, which must
205 // have space for at least |count| characters.
231 // which is a value of column that we should get after a prolog (first prologLength characters) has been consumed.
250 if (equals(string.characters(), m_currentString.m_current, string.length()))
267 if (equals(string.characters(), consumedCharacters, count))
TextCodecUTF8.cpp 226 UChar* destination = buffer.characters();
291 buffer.shrink(destination - buffer.characters());
296 CString TextCodecUTF8::encode(const UChar* characters, size_t length, UnencodableHandling)
299 // BMP characters take only one UTF-16 code unit and can take up to 3 bytes (3x).
300 // Non-BMP characters take two UTF-16 code units and can take up to 4 bytes (2x).
309 U16_NEXT(characters, i, length, character);
  /external/webkit/Source/WebCore/platform/wince/
FileSystemWinCE.cpp 131 buffer.append(path.characters(), path.length());
137 buffer.append(component.characters(), component.length());
206 wchar_t tempFile[] = L"XXXXXXXX.tmp"; // Use 8.3 style name (more characters aren't helpful due to 8.3 short file names)
211 // Limit to valid filesystem characters, also excluding others that could be problematic, like punctuation.
297 pattern.append(path.characters(), path.length());
302 pattern.append(filter.characters(), filter.length());
  /external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
fontprops.mm 92 bool wxFontContainsCharacters(void* font, const UChar* characters, int length)
94 NSString* string = [[NSString alloc] initWithCharactersNoCopy:const_cast<unichar*>(characters) length:length freeWhenDone:NO];
  /external/webkit/Source/WebCore/svg/
SVGPreserveAspectRatio.h 73 const UChar* begin = value.characters();
SVGStringList.cpp 53 const UChar* ptr = data.characters();
  /external/webkit/Source/WebCore/websockets/
WebSocket.cpp 61 const UChar* characters = protocol.characters(); local
63 if (characters[i] < 0x20 || characters[i] > 0x7E)
  /external/webkit/Source/WebCore/wml/
WMLPostfieldElement.cpp 77 return encoding.encode(data.characters(), data.length(), EntitiesForUnencodables);
  /external/webkit/Source/WebCore/xml/
XPathUtil.cpp 60 result.append(nodeValue.characters(), nodeValue.length());
  /external/webkit/Source/WebKit/chromium/src/
WebEntities.cpp 66 const UChar* startPos = value.characters();
  /external/webkit/Tools/TestWebKitAPI/mac/
PlatformWebViewMac.mm 76 characters:@" "
89 characters:@" "
  /frameworks/base/core/jni/android/graphics/
HarfbuzzSkia.cpp 50 static HB_Bool stringToGlyphs(HB_Font hbFont, const HB_UChar16* characters, hb_uint32 length,
57 int numGlyphs = paint->textToGlyphs(characters, length * sizeof(uint16_t), skiaGlyphs);
95 static HB_Bool canRender(HB_Font hbFont, const HB_UChar16* characters, hb_uint32 length)
101 int numGlyphs = paint->textToGlyphs(characters, length * sizeof(uint16_t), glyphs16);
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JNIUtilityPrivate.cpp 68 env->functions->NewString(env, (const jchar *)stringValue.characters(), stringValue.length()));
104 value = ((const jchar*)stringValue.characters())[0];
224 jobject javaString = env->functions->NewString(env, (const jchar*)stringValue.characters(), stringValue.length());
243 jobject javaString = env->functions->NewString(env, (const jchar*)stringValue.characters(), stringValue.length());
254 jobject javaString = env->functions->NewString(env, (const jchar*)stringValue.characters(), stringValue.length());
  /external/webkit/Source/WebCore/platform/cf/
BinaryPropertyList.cpp 288 const UChar* characters = string.characters(); local
291 if (!charactersAreAllASCII(characters, length))
697 const UChar* characters = string.characters(); local
699 if (charactersAreAllASCII(characters, length)) {
707 appendByte(characters[i]);
716 appendByte(characters[i] >> 8);
717 appendByte(characters[i]);
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngine.cpp 62 // Replace characters x/y position, with the current text position plus any
198 unsigned characters = 0; local
199 chunk.calculateLength(length, characters);
205 totalCharacters += characters;
277 const UChar* characters = textBox->textRenderer()->characters(); local
282 String fragmentString(characters + fragment.characterOffset, fragment.length);
283 fprintf(stderr, " -> Fragment %i, x=%lf, y=%lf, width=%lf, height=%lf, characterOffset=%i, length=%i, characters='%s'\n"
450 const UChar* characters = text->characters(); local
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domconfignormalizecharacters1.js 71 * Checks behavior of "normalize-characters" configuration parameter.
73 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-normalize-characters
87 var parameter = "nOrMalize-characters";
  /external/webkit/LayoutTests/fast/url/script-tests/
host.js 6 // Spaces and some other characters should be escaped.
16 // Invalid unicode characters should fail...
40 // Invalid escaped characters should fail and the percents should be
  /external/webkit/Source/WebCore/platform/graphics/gtk/
FontGtk.cpp 139 static gchar* convertUniCharToUTF8(const UChar* characters, gint length, int from, int to)
142 GOwnPtr<gchar> utf8Text(utf16ToUtf8(characters, length, newLength));
148 // discard the first 'from' characters
254 // because we don't want any bits and pieces of characters out of range to be
282 gchar* utf8 = convertUniCharToUTF8(run.characters(), run.length(), 0, run.length());
362 gchar* utf8 = convertUniCharToUTF8(run.characters(), run.length(), 0, run.length());
387 gchar* utf8 = convertUniCharToUTF8(run.characters(), run.length(), 0, run.length());
412 gchar* utf8 = convertUniCharToUTF8(run.characters(), run.length(), 0, run.length());
  /external/webkit/Source/WebCore/platform/network/win/
ResourceHandleWin.cpp 69 Vector<UChar> characters(bufferSize / sizeof(UChar));
71 if (!HttpQueryInfoW(requestHandle, infoLevel, characters.data(), &bufferSize, 0))
74 characters.removeLast(); // Remove NullTermination.
75 return String::adopt(characters);
330 httpHeaders.append(it->first.characters(), it->first.length());
332 httpHeaders.append(it->second.characters(), it->second.length());
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp 164 static void adjustCharactersAndLengthForHyphen(BufferForAppendingHyphen& charactersWithHyphen, RenderStyle* style, const UChar*& characters, int& length)
168 charactersWithHyphen.append(characters, length);
169 charactersWithHyphen.append(hyphenString.characters(), hyphenString.length());
170 characters = charactersWithHyphen.data();
188 const UChar* characters = textObj->text()->characters() + m_start; local
192 adjustCharactersAndLengthForHyphen(charactersWithHyphen, styleToUse, characters, len);
196 IntRect r = enclosingIntRect(f.selectionRectForText(TextRun(characters, len, textObj->allowTabs(), textPos(), m_expansion, expansionBehavior(), !isLeftToRightDirection(), m_dirOverride),
273 // No characters should be rendered. Set ourselves to full truncation and place the ellipsis at the min of our start
643 const UChar* characters; local
816 const UChar* characters = textRenderer()->text()->characters() + m_start; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemCopyOf.java 147 handler.characters(s.toCharArray(), 0, s.length());
192 handler.characters(s.toCharArray(), 0, s.length());
  /external/chromium/net/data/proxy_resolver_v8_unittest/
passthrough.js 21 c = '.'; // Replace unsupported characters with a dot.
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAX1ParserAdapter.java 114 public void characters(char[] ch, int start, int length) method in class:SAX1ParserAdapter.DocHandlerWrapper
117 docHandler.characters(ch, start, length);

Completed in 485 milliseconds

1 2 3 4 5 67 8 91011>>