HomeSort by relevance Sort by last modified time
    Searched refs:characters (Results 276 - 300 of 673) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextControllerCoreText.cpp 45 ComplexTextController::ComplexTextRun::ComplexTextRun(CTRunRef ctRun, const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, CFRange runRange)
47 , m_characters(characters)
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataWin.cpp 147 bool SimpleFontData::containsCharacters(const UChar* characters, int length) const
153 // FIXME: Microsoft documentation seems to imply that characters can be output using a given font and DC
172 langFontLink->GetStrCodePages(characters, length, acpCodePages, &actualCodePages, &numCharactersProcessed);
  /external/webkit/Source/WebCore/platform/text/
TextEncodingRegistry.cpp 354 const char* atomicCanonicalTextEncodingName(const UChar* characters, size_t length)
359 UChar c = characters[i];
  /external/webkit/Source/WebCore/platform/text/mac/
TextCodecMac.cpp 279 CString TextCodecMac::encode(const UChar* characters, size_t length, UnencodableHandling handling)
285 String copy(characters, length);
  /external/webkit/Source/WebCore/rendering/
InlineIterator.h 74 && !toRenderText(m_obj)->isWordBreak() && toRenderText(m_obj)->characters()[m_pos] == '\n';
244 return text->characters()[m_pos];
RenderText.cpp 94 const UChar* characters = string->characters(); local
103 if (characters[i - 1] == noBreakSpace)
106 stringWithPrevious[i] = characters[i - 1];
109 TextBreakIterator* boundary = wordBreakIterator(stringWithPrevious.characters(), length + 1);
119 data[startOfWord - 1] = characters[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevious[startOfWord]);
121 data[i - 1] = characters[i - 1];
651 return f.width(TextRun(text()->characters() + start, len, allowTabs(), xPos), fallbackFonts, glyphOverflow);
796 const UChar* txt = characters();
    [all...]
RenderBlockLineLayout.cpp 290 while (isASCIISpace(renderText->characters()[pos])) {
453 unsigned opportunitiesInRun = Font::expansionOpportunityCount(rt->characters() + r->m_start, r->m_stop - r->m_start, r->m_box->direction(), isAfterExpansion);
459 if (!r->m_start && needsWordSpacing && isSpaceOrNewline(rt->characters()[r->m_start]))
461 needsWordSpacing = !isSpaceOrNewline(rt->characters()[r->m_stop - 1]) && r->m_stop == length;
483 hyphenWidth = rt->style(firstLine)->font().width(TextRun(hyphenString.characters(), hyphenString.length()));
685 const UChar* characters = lastText->characters(); local
688 UChar current = characters[firstSpace - 1];
    [all...]
  /external/webkit/Source/WebCore/storage/
IDBKeyPath.cpp 50 , m_ptr(s.characters())
51 , m_end(s.characters() + s.length())
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
WebTextInputWindowController.m 108 if ([[event characters] length] > 0)
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKTextInputWindowController.mm 102 if ([[event characters] length] > 0)
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebPopupMenuWin.cpp 69 popupWidth = std::max<float>(popupWidth, ceilf(itemFont.width(TextRun(text.characters(), text.length()))));
118 const UChar* string = itemText.characters();
  /frameworks/base/core/java/com/android/internal/widget/
PasswordEntryKeyboard.java 29 * A basic, embed-able keyboard designed for password entry. Allows entry of all Latin-1 characters.
31 * It has two modes: alpha and numeric. In alpha mode, it allows all Latin-1 characters and enables
33 * keypad with alpha characters hints.
83 CharSequence characters, int columns, int horizontalPadding) {
84 super(context, layoutTemplateResId, characters, columns, horizontalPadding);
  /libcore/dom/src/test/java/org/w3c/domts/
XercesHTML2DocumentBuilderFactory.java 152 public void characters(char ch[], int start, int length) throws method in class:XercesHTML2DocumentBuilderFactory.HTMLHandler
154 htmlBuilder.characters(ch, start, length);
XercesHTMLDocumentBuilderFactory.java 152 public void characters(char ch[], int start, int length) throws method in class:XercesHTMLDocumentBuilderFactory.HTMLHandler
154 htmlBuilder.characters(ch, start, length);
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLFilterImpl.java 559 * @param ch An array of characters. method in class:XMLFilterImpl
561 * @param length The number of characters to use from the array.
565 public void characters (char ch[], int start, int length)
569 contentHandler.characters(ch, start, length);
577 * @param ch An array of characters.
579 * @param length The number of characters to use from the array.
  /libcore/luni/src/test/java/libcore/xml/
SimpleParserTest.java 87 public void characters(char[] ch, int start, int length) {
202 public void characters(char[] ch, int start, int length) {
ExpatSaxParserTest.java 89 // From characters().
92 public void characters(char ch[], int start, int length)
163 public void characters(char ch[], int start, int length) method in class:ExpatSaxParserTest.TestHandler
331 public void characters(char ch[], int start, int length) method in class:ExpatSaxParserTest.NamespaceHandler
480 public void characters(char ch[], int start, int length) { method in class:ExpatSaxParserTest.TestCdataHandler
560 public void characters(char ch[], int start, int length) method in class:ExpatSaxParserTest.Handler
  /external/apache-xml/src/main/java/org/apache/xml/utils/
FastStringBuffer.java 99 * chunk can contain up to 2^15 (32K) characters
122 * as 2**chunkbits characters.
184 * @param initChunkBits Length in characters of the initial allocation
186 * characters.) Later chunks will use larger allocation units, to trade off
191 * characters.
266 * @return the number of characters in the FastStringBuffer's content.
276 * @return the number of characters in the FastStringBuffer's content.
642 * @param length number of characters to be copied
816 * @return true if the specified range of characters are all whitespace,
822 * @param length Number of characters to send
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
XMLWriter.java 73 * w.characters("Hello, world!");
118 * <p>You need to invoke one of the <var>characters</var> methods
650 * @param ch The array of characters to write.
652 * @param length The number of characters to write.
654 * writing the characters, or if a handler further down
656 * @see org.xml.sax.ContentHandler#characters
658 public void characters (char ch[], int start, int len)
669 super.characters(ch, start, len);
678 * @param ch The array of characters to write.
680 * @param length The number of characters to write
655 public void characters (char ch[], int start, int len) method in class:XMLWriter
1015 public void characters (String data) method in class:XMLWriter
1019 characters(ch, 0, ch.length); method
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontCacheChromiumWin.cpp 56 return WTF::charactersAreAllASCII(s.characters(), s.length());
243 memcpy(winfont->lfFaceName, family.characters(), len * sizeof(WORD));
264 // characters. Because it's family names rather than font faces we use
272 // FIXME: For non-BMP characters, GetFontUnicodeRanges is of
430 // font that can be used to render the given range of characters.
431 const SimpleFontData* FontCache::getFontDataForCharacters(const Font& font, const UChar* characters, int length)
438 const wchar_t* family = getFallbackFamily(characters, length,
472 // once installed, cover a very wide range of characters.
495 // Font returned from GetFallbackFamily may not cover |characters|
599 memcpy(logFont.lfFaceName, familyName.characters(), familyLength * sizeof(UChar))
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 85 * A group of characters, with a frequency, shortcut targets, bigrams, and children.
88 * be seen as a traditional "trie node", except it can hold several characters at the
89 * same time. A CharGroup essentially represents one or several characters in the middle
285 final char[] characters = word.toCharArray(); local
286 final int length = characters.length;
287 final int[] codePoints = new int[Character.codePointCount(characters, 0, length)];
288 int codePoint = Character.codePointAt(characters, 0);
293 codePoint = Character.codePointAt(characters, srci);
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
logviewpainter.js 140 * |hexString| must be a string of hexadecimal characters with no whitespace,
142 * with the hexadecimal characters from |hexString| on the left, in groups of
143 * two, and their corresponding ASCII characters on the right.
145 * |asciiCharsPerLine| specifies how many ASCII characters will be put on each
161 // characters. Use a space for nulls, and a period for
  /external/v8/src/arm/
regexp-macro-assembler-arm.cc 253 // r0 : Address of characters to match against str.
301 // Check that there are enough characters left in the input.
405 // Check that there are enough characters left in the input.
489 // Match space-characters
491 // ASCII space characters are '\t'..'\r' and ' '.
504 // Match non-space characters.
506 // ASCII space characters are '\t'..'\r' and ' '.
567 // Table is 128 entries, so all ASCII characters can be tested.
581 // Table is 128 entries, so all ASCII characters can be tested.
732 // r1 is length of input in characters
    [all...]
  /external/chromium/chrome/browser/history/
in_memory_url_index.cc 507 InMemoryURLIndex::Char16Vector characters; local
513 characters.push_back(*iter);
516 return characters;
522 Char16Set characters; local
525 characters.insert(*iter);
526 return characters;
557 Char16Set characters = Char16SetFromString16(uni_word); local
558 for (Char16Set::iterator uni_char_iter = characters.begin();
559 uni_char_iter != characters.end(); ++uni_char_iter) {
579 // If there were no unprocessed characters in the search term |uni_chars
    [all...]
  /external/v8/src/ia32/
regexp-macro-assembler-ia32.cc 221 // Check that there are at least str.length() characters left in the input.
235 // string, and start loading more characters at a time.
437 // Check that there are sufficient characters left in the input.
540 // Match space-characters
542 // ASCII space characters are '\t'..'\r' and ' '.
555 // Match non-space characters.
557 // ASCII space characters are '\t'..'\r' and ' '.
598 // Table is 128 entries, so all ASCII characters can be tested.
612 // Table is 128 entries, so all ASCII characters can be tested.
931 int characters) {
    [all...]

Completed in 973 milliseconds

<<11121314151617181920>>