/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/okhttp/src/main/java/libcore/net/http/ |
HeaderParser.java | 119 * contains a character from {@code characters}. Returns the input length if 120 * none of the requested characters can be found. 122 private static int skipUntil(String input, int pos, String characters) { 124 if (characters.indexOf(input.charAt(pos)) != -1) { 133 * space. Result is undefined if input contains newline characters.
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
normalizecharacters01.js | 81 Normalize document with normalize-characters set to false, check that 82 characters are not normalized. 86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-normalize-characters 110 domConfig.setParameter("normalize-characters", false);
|
normalizecharacters03.js | 81 Normalize an element with normalize-characters set to false, check that 82 characters are not normalized. 86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-normalize-characters 110 domConfig.setParameter("normalize-characters", false);
|
normalizecharacters05.js | 81 Normalize an document (using Node.normalize) with normalize-characters set to false, check that 82 characters are not normalized. 86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-normalize-characters 110 domConfig.setParameter("normalize-characters", false);
|
normalizecharacters07.js | 81 Normalize a text node with normalize-characters set to false, check that 82 characters are not normalized. 86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-normalize-characters 110 domConfig.setParameter("normalize-characters", false);
|
/external/webkit/LayoutTests/fast/url/script-tests/ |
mailto.js | 19 // Not sure how to test null characters in JavaScript. They appear to get
|
ipv4.js | 11 // Non-IP addresses due to invalid characters. 14 // Invalid characters for the base should be rejected.
|
/external/webkit/Source/WebCore/html/parser/ |
HTMLConstructionSite.cpp | 332 void HTMLConstructionSite::insertTextNode(const String& characters) 350 currentPosition = textNode->parserAppendData(characters.characters(), characters.length(), Text::defaultLengthLimit); 353 while (currentPosition < characters.length()) { 354 RefPtr<Text> textNode = Text::createWithLengthLimit(site.parent->document(), characters, currentPosition); 355 // If we have a whole string of unbreakable characters the above could lead to an infinite loop. Exceeding the length limit is the lesser evil. 357 textNode = Text::create(site.parent->document(), characters.substring(currentPosition)); 360 ASSERT(currentPosition <= characters.length());
|
HTMLToken.h | 110 void beginEndTag(T characters) 118 m_data.append(characters); 157 void appendToCharacter(T characters) 160 m_data.append(characters); 229 m_attributes[i].m_value.append(value.characters(), value.length()); 270 const DataVector& characters() const function in class:WebCore::HTMLToken 366 // "characters" for Character 410 m_externalCharacters = &token.characters(); 463 const HTMLToken::DataVector& characters() const function in class:WebCore::AtomicHTMLToken 516 // "characters" for Characte [all...] |
/external/webkit/Source/WebCore/platform/graphics/ |
TextRun.h | 66 : m_characters(s.characters()) 88 const UChar* characters() const { return m_characters; } function in class:WebCore::TextRun
|
/external/webkit/Source/WebCore/platform/graphics/android/fonts/ |
FontDataAndroid.cpp | 108 bool SimpleFontData::containsCharacters(const UChar* characters, int length) const 114 return paint.containsText(characters, length << 1);
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
FontCacheLinux.cpp | 58 const UChar* characters, 62 String family = PlatformBridge::getFontFamilyForCharacters(characters, length, locale.getLanguage());
|
/external/webkit/Source/WebCore/platform/graphics/freetype/ |
SimpleFontDataFreeType.cpp | 117 bool SimpleFontData::containsCharacters(const UChar* characters, int length) const 125 if (FcFreeTypeCharIndex(face, characters[i]) == 0) {
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
ComplexTextControllerATSUI.cpp | 129 // u_shapeArabic quirk: if the last two characters in the source string are a Lam and an Alef, 144 ComplexTextController::ComplexTextRun::ComplexTextRun(ATSUTextLayout atsuTextLayout, const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr, bool directionalOverride) 146 , m_characters(characters) 169 UChar mirroredChar = u_charMirror(characters[i]); 170 if (mirroredChar != characters[i]) { 174 memcpy(substituteCharacters.data(), characters, stringLength * sizeof(UChar)); 180 if (shouldCheckForArabic && isArabicChar(characters[i])) { 188 shapeArabic(substituteCharacters.isEmpty() ? characters : substituteCharacters.data(), shapedArabic.data(), stringLength); 198 memcpy(substituteCharacters.data() + 1, characters, stringLength * sizeof(UChar)); 265 // 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/Source/WebCore/platform/graphics/pango/ |
SimpleFontDataPango.cpp | 115 bool SimpleFontData::containsCharacters(const UChar* characters, int length) const 122 if (PANGO_COVERAGE_NONE == pango_coverage_get(coverage, characters[i])) {
|
/external/webkit/Source/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/Source/WebKit2/PluginProcess/mac/ |
PluginProcessMainMac.mm | 70 RetainPtr<CFStringRef> cfLocalization(AdoptCF, CFStringCreateWithCharacters(0, reinterpret_cast<const UniChar*>(localization.characters()), localization.length()));
|
/libcore/luni/src/main/java/libcore/net/http/ |
HeaderParser.java | 122 * contains a character from {@code characters}. Returns the input length if 123 * none of the requested characters can be found. 125 private static int skipUntil(String input, int pos, String characters) { 127 if (characters.indexOf(input.charAt(pos)) != -1) { 136 * space. Result is undefined if input contains newline characters.
|
/external/apache-xml/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);
|
/external/skia/src/ports/ |
SkHarfBuzzFont.cpp | 25 static HB_Bool stringToGlyphs(HB_Font hbFont, const HB_UChar16* characters, 33 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t), 72 static HB_Bool canRender(HB_Font hbFont, const HB_UChar16* characters, 79 return paint.containsText(characters, length * sizeof(uint16_t));
|
/external/webkit/Source/JavaScriptCore/parser/ |
SourceProvider.h | 90 const UChar* data() const { return m_source.characters(); }
|
/external/webkit/Source/JavaScriptCore/runtime/ |
RegExp.cpp | 42 switch (string.characters()[i]) { 167 result = Yarr::execute(m_representation->m_regExpJITCode, s.characters(), startOffset, s.length(), offsetVector); 173 result = Yarr::interpret(m_representation->m_regExpBytecode.get(), s.characters(), startOffset, s.length(), offsetVector); 204 interpreterResult = Yarr::interpret(m_representation->m_regExpBytecode.get(), s.characters(), startOffset, s.length(), interpreterOffsetVector);
|
/external/webkit/Source/JavaScriptCore/wtf/text/ |
StringBuffer.h | 71 UChar* characters() { return m_data; } function in class:WTF::StringBuffer
|