Searched defs:character (Results 51 - 75 of 142) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
H A DFontCacheSkiaWin.cpp80 const FontDescription& fontDescription, UChar32 character,
87 fontDescription, character);
95 const wchar_t* family = getFallbackFamily(character,
121 // with our current non-BMP character handling because we use
155 // Font returned from getFallbackFamily may not cover |character|
160 for (i = 0; (!data || !data->fontContainsCharacter(character)) && i < numFonts; ++i) {
175 // When i-th font (0-base) in |panUniFonts| contains a character and
177 // last font in the array covers the character, |i| will be numFonts.
179 // covering the character.
79 fallbackFontForCharacter( const FontDescription& fontDescription, UChar32 character, const SimpleFontData* originalFontData) argument
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DUnicodeUtilities.cpp57 // Replace soft hyphen with an ignorable character so that their presence or absence will
79 // Replace soft hyphen with an ignorable character so that their presence or absence will
84 static bool isNonLatin1Separator(UChar32 character) argument
86 ASSERT_ARG(character, character >= 256);
88 return U_GET_GC_MASK(character) & (U_GC_S_MASK | U_GC_P_MASK | U_GC_Z_MASK | U_GC_CF_MASK);
91 bool isSeparator(UChar32 character) argument
112 if (character < 256)
113 return latin1SeparatorTable[character];
115 return isNonLatin1Separator(character);
131 isKanaLetter(UChar character) argument
150 isSmallKanaLetter(UChar character) argument
209 composedVoicedSoundMark(UChar character) argument
276 isCombiningVoicedSoundMark(UChar character) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/
H A DUTF8.cpp282 UChar32 character = 0; local
286 case 6: character += static_cast<unsigned char>(*sequence++); character <<= 6;
287 case 5: character += static_cast<unsigned char>(*sequence++); character <<= 6;
288 case 4: character += static_cast<unsigned char>(*sequence++); character <<= 6;
289 case 3: character += static_cast<unsigned char>(*sequence++); character <<= 6;
290 case 2: character
317 UChar32 character = readUTF8Sequence(source, utf8SequenceLength); local
[all...]
/external/chromium_org/third_party/icu/source/test/iotest/
H A Dstrtst.c747 UChar character; local
770 actual_result = u_sscanf(x15, "%C%d%n", &character, &i32, &actual_count);
774 if (character != 0x78) {
775 log_err("scanf should return 0x78 for the character, but returned %X\n", character);
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
H A Dminiterm.py26 def key_description(character):
28 ascii_code = ord(character)
32 return repr(character)
44 --- %(itself)-7s Send the menu character itself to remote
45 --- %(exchar)-7s Send the exit character itself to remote
78 def character(b): function in function:get_help_text
81 def character(b): function
245 data = character(self.serial.read(1))
283 Loop and copy console->serial until EXITCHARCTER character is
294 c = character(
[all...]
/external/chromium_org/v8/src/
H A Dscanner-character-streams.cc7 #include "src/scanner-character-streams.h"
57 void BufferedUtf16CharacterStream::PushBack(uc32 character) { argument
58 if (character == kEndOfInput) {
64 buffer_[--buffer_cursor_ - buffer_] = static_cast<uc16>(character);
68 SlowPushBack(static_cast<uc16>(character));
72 void BufferedUtf16CharacterStream::SlowPushBack(uc16 character) { argument
88 buffer_[--buffer_cursor_ - buffer_] = character;
183 // one character early (in the normal case), because we need to have at least
184 // two free spaces in the buffer to be sure that the next character will fit.
246 // Move the cursor back to point at the preceding UTF-8 character star
249 byte character = buffer[--*cursor]; local
264 byte character = buffer[(*cursor)++]; local
[all...]
/external/icu/icu4c/source/test/iotest/
H A Dstrtst.c747 UChar character; local
770 actual_result = u_sscanf(x15, "%C%d%n", &character, &i32, &actual_count);
774 if (character != 0x78) {
775 log_err("scanf should return 0x78 for the character, but returned %X\n", character);
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhoneNumberMatcher.java215 * @param text the character sequence that we will search, null for no text
284 * Helper method to determine if a character is a Latin-script letter or not. For our purposes,
286 * Latin character.
303 private static boolean isInvalidPunctuationSymbol(char character) { argument
304 return character == '%' || Character.getType(character) == Character.CURRENCY_SYMBOL;
308 * Attempts to extract a match from a {@code candidate} character sequence.
399 // punctuation, check the previous character.
631 // or 'X'. We ignore the character if it appears as the last character o
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-cpp/
H A Dmain.cpp46 char character; member in struct:i_am_cool
48 integer(I), floating(F), character(C) {}
49 i_am_cool() : integer(1), floating(2), character('3') {}
108 cool_array[2].character = 'Q';
/external/llvm/include/llvm/ADT/
H A DTwine.h103 /// A char value reinterpreted as a pointer, to render as a character.
139 char character; member in union:llvm::Twine::Child
295 LHS.character = Val;
301 LHS.character = static_cast<char>(Val);
307 LHS.character = static_cast<char>(Val);
/external/bison/src/
H A Dparse-gram.h188 unsigned char character; member in union:GRAM_STYPE
/external/chromium_org/base/i18n/
H A Dbuild_utf8_validator_tables.cc114 // A UTF-8 "character" is represented by a sequence of bytes.
120 Character character; member in struct:__anon2273::Pair
174 // Surrogate codepoints are not permitted. Non-character code points are
191 // Construct a new Pair from |character| and the concatenation of |new_range|
193 void ConstructPairAndAppend(const Character& character, argument
197 Pair new_pair = {character, StringSet(1, new_range)};
212 while (it != pairs->end() && it->character.empty()) {
217 Character unconverted_bytes(it->character.begin(), it->character.end() - 1);
218 Range new_range(it->character
[all...]
/external/chromium_org/content/common/android/
H A Daddress_parser_internal.cc76 bool HouseNumberParser::IsPreDelimiter(base::char16 character) { argument
77 return character == ':' || IsPostDelimiter(character);
80 bool HouseNumberParser::IsPostDelimiter(base::char16 character) { argument
81 return IsWhitespace(character) || strchr(",\"'", character);
161 // There should be more than 1 character because of result_chars.
295 char state_index; // Relative to two-character code alphabetical order.
/external/chromium_org/google_apis/gaia/
H A Doauth_request_signer.cc141 char character = *cursor; local
144 switch (character) {
155 keyword += character;
159 switch (character) {
164 keyword += character;
169 switch (character) {
179 value += character;
304 char character = *cursor; local
305 if (character == '%') {
329 accumulator += character;
342 char character = *cursor; local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecICU.cpp381 static UChar fallbackForGBK(UChar32 character) argument
383 switch (character) {
396 // Invalid character handler when writing escaped entities for unrepresentable
425 // Combines both gbkUrlEscapedEntityCallback and GBK character substitution.
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontMgr_android.cpp350 const SkString& langTag, SkUnichar character)
369 paint.textToGlyphs(&character, sizeof(character), &glyphID);
381 SkUnichar character) const SK_OVERRIDE
387 SkUnichar character) const SK_OVERRIDE
405 lang.getTag(), character);
416 SkString(), character);
347 find_family_style_character( const SkTDArray<NameToFamily>& fallbackNameToFamilyMap, const SkFontStyle& style, bool elegant, const SkString& langTag, SkUnichar character) argument
H A DSkRemotableFontMgr_win_dw.cpp288 FontFallbackRenderer(const SkRemotableFontMgr_DirectWrite* outer, UINT32 character) argument
289 : fRefCount(1), fOuter(SkSafeRef(outer)), fCharacter(character) {
309 // It is possible that the font passed does not actually have the requested character,
311 // Check that the font actually contains the requested character.
313 HRM(font->HasCharacter(fCharacter, &exists), "Could not find character.");
415 SkUnichar character) const SK_OVERRIDE
421 SkUnichar character) const SK_OVERRIDE
468 SkUTF16_FromUnichar(character, reinterpret_cast<uint16_t*>(str)));
477 new FontFallbackRenderer(this, character));
/external/guava/guava/src/com/google/common/base/
H A DCharMatcher.java36 * <p>Throughout the documentation of this class, the phrase "matching character" is used to mean
37 * "any character {@code c} for which {@code this.matches(c)} returns {@code true}".
65 * Determines whether a character is whitespace according to the latest Unicode standard, as
81 * Determines whether a character is a breaking whitespace (that is, a whitespace which can be
94 * Determines whether a character is ASCII, meaning that its code point is less than 128.
99 * Determines whether a character is a digit according to
117 * Determines whether a character is a digit according to {@link Character#isDigit(char) Java's
127 * Determines whether a character is a letter according to {@link Character#isLetter(char) Java's
138 * Determines whether a character is a letter or digit according to {@link
148 * Determines whether a character i
1145 apply(Character character) argument
[all...]
/external/skia/src/ports/
H A DSkRemotableFontMgr_win_dw.cpp288 FontFallbackRenderer(const SkRemotableFontMgr_DirectWrite* outer, UINT32 character) argument
289 : fRefCount(1), fOuter(SkSafeRef(outer)), fCharacter(character) {
309 // It is possible that the font passed does not actually have the requested character,
311 // Check that the font actually contains the requested character.
313 HRM(font->HasCharacter(fCharacter, &exists), "Could not find character.");
414 SkUnichar character) const SK_OVERRIDE
457 SkUTF16_FromUnichar(character, reinterpret_cast<uint16_t*>(str)));
466 new FontFallbackRenderer(this, character));
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3debughandlers.c332 // Local buffer to read the next character in to
368 ANTLR3_UCHAR character; local
380 // leadin character '%' with their hex equivalents
385 switch (character = text->charAt(text, c))
406 buffer->addc(buffer, character);
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSTokenizer-in.cpp208 static inline bool isCSSLetter(CharacterType character) argument
210 return character >= 128 || typesOfASCIICharacters[character] <= CharacterDash;
214 static inline bool isCSSEscape(CharacterType character) argument
216 return character >= ' ' && character != 127;
220 static inline bool isURILetter(CharacterType character) argument
222 return (character >= '*' && character != 127) || (character >
699 CharacterType* character = currentCharacter<CharacterType>() + 1; local
737 CharacterType* character = currentCharacter<CharacterType>(); local
751 CharacterType* character = skipWhiteSpace(currentCharacter<CharacterType>()); local
1236 SrcCharacterType* character = currentCharacter<SrcCharacterType>(); local
[all...]
H A DMediaQueryTokenizer.cpp418 bool MediaQueryTokenizer::consumeIfNext(UChar character) argument
420 if (m_input.nextInputChar() == character) {
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLToken.h107 // two 257 character text nodes in a row, we'll needlessly
154 void appendToName(UChar character) argument
157 ASSERT(character);
158 m_data.append(character);
159 m_orAllData |= character;
183 void beginDOCTYPE(UChar character) argument
185 ASSERT(character);
187 m_data.append(character);
188 m_orAllData |= character;
219 void appendToPublicIdentifier(UChar character) argument
227 appendToSystemIdentifier(UChar character) argument
254 beginStartTag(UChar character) argument
267 beginEndTag(LChar character) argument
328 appendToAttributeName(UChar character) argument
336 appendToAttributeValue(UChar character) argument
389 appendToCharacter(char character) argument
395 appendToCharacter(UChar character) argument
422 appendToComment(UChar character) argument
[all...]
H A DHTMLTokenizer.h170 // * The first set of character tokens emitted for a <pre> element might
175 // instead of as character tokens.
203 inline void bufferCharacter(UChar character) argument
205 ASSERT(character != kEndOfFileMarker);
207 m_token->appendToCharacter(character);
238 // Return whether we need to emit a character token before dealing with
270 // http://www.whatwg.org/specs/web-apps/current-work/#additional-allowed-character
281 // We occationally want to emit both a character token and an end tag
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DDOMWebSocket.cpp160 static inline bool isValidSubprotocolCharacter(UChar character) argument
164 // Set to true if character does not matches "separators" ABNF defined in
166 bool isNotSeparator = character != '"' && character != '(' && character != ')' && character != ',' && character != '/'
167 && !(character >= ':' && character <= '@') // U+003A - U+0040 (':', ';', '<', '=', '>', '?', '@').
168 && !(character >
[all...]

Completed in 505 milliseconds

123456