Searched refs:numCharacters (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Source/WebKit/chromium/public/gtk/
H A DWebFontInfo.h47 // numCharacters: the number of 16-bit words in |utf16|
53 WEBKIT_API static WebCString familyForChars(const WebUChar* characters, size_t numCharacters, const char* preferredLocale);
/external/webkit/Source/WebKit/chromium/public/linux/
H A DWebSandboxSupport.h49 // numCharacters: the number of 16-bit words in |characters|
55 virtual WebString getFontFamilyForCharacters(const WebUChar* characters, size_t numCharacters, const char* preferredLocale) = 0;
/external/webkit/Source/WebKit/chromium/src/gtk/
H A DWebFontInfo.cpp41 WebCString WebFontInfo::familyForChars(const WebUChar* characters, size_t numCharacters, const char* preferredLocale) argument
44 for (size_t i = 0; i < numCharacters; ++i) {
47 && i != numCharacters - 1
/external/webkit/Tools/WebKitTestRunner/
H A DTestInvocation.cpp83 size_t numCharacters = strlen(buffer.get());
84 buffer[numCharacters] = separator;
85 strcpy(buffer.get() + numCharacters + 1, pathOrURL);
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringImpl.h246 static void copyChars(UChar* destination, const UChar* source, unsigned numCharacters) argument
248 if (numCharacters <= s_copyCharsInlineCutOff) {
249 for (unsigned i = 0; i < numCharacters; ++i)
252 memcpy(destination, source, numCharacters * sizeof(UChar));
/external/webkit/Source/WebCore/platform/graphics/opentype/
H A DOpenTypeUtilities.cpp182 unsigned numCharacters = length / 2; local
183 for (unsigned j = 0; j < numCharacters; j++)
/external/webkit/Source/WebCore/editing/
H A DTextIterator.h268 void advance(int numCharacters);
/external/webkit/Source/WebCore/platform/mac/
H A DWebCoreSystemInterface.mm105 OSStatus (*wkConvertCharToGlyphs)(void* styleGroup, const UniChar*, unsigned numCharacters, void* glyphs);
H A DWebCoreSystemInterface.h171 extern OSStatus (*wkConvertCharToGlyphs)(void* styleGroup, const UniChar*, unsigned numCharacters, void* glyphs);
/external/webkit/Source/WebCore/platform/chromium/
H A DPlatformBridge.h154 static String getFontFamilyForCharacters(const UChar*, size_t numCharacters, const char* preferredLocale);
/external/webkit/Source/WebKit/chromium/src/
H A DPlatformBridge.cpp442 String PlatformBridge::getFontFamilyForCharacters(const UChar* characters, size_t numCharacters, const char* preferredLocale) argument
445 return webKitClient()->sandboxSupport()->getFontFamilyForCharacters(characters, numCharacters, preferredLocale);
447 WebCString family = WebFontInfo::familyForChars(characters, numCharacters, preferredLocale);
/external/clang/lib/AST/
H A DItaniumMangle.cpp664 unsigned numCharacters = (valueBits.getBitWidth() + 3) / 4; local
665 assert(numCharacters != 0);
669 buffer.set_size(numCharacters);
672 for (unsigned stringIndex = 0; stringIndex != numCharacters; ++stringIndex) {
674 unsigned digitBitIndex = 4 * (numCharacters - stringIndex - 1);
690 Out.write(buffer.data(), numCharacters);
/external/webkit/WebKitLibraries/
H A DWebKitSystemInterface.h163 OSStatus WKConvertCharToGlyphs(void *styleGroup, const UniChar* characters, unsigned numCharacters, WKGlyphVectorRef glyphs);

Completed in 312 milliseconds