/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/ |
character_predicate.cc | 31 bool AcceptRange::operator()(int32_t character) const { 32 return start_ <= character && character <= end_; 44 bool AcceptSet::operator()(int32_t character) const { 45 return characters_->find(character) != characters_->end(); 49 bool AcceptAll::operator()(int32_t character) const { 50 UNREFERENCED_PARAMETER(character);
|
character_predicate.h | 28 virtual bool operator()(int32_t character) const = 0; 37 virtual bool operator()(int32_t character) const; 52 virtual bool operator()(int32_t character) const; 64 virtual bool operator()(int32_t character) const;
|
/external/sfntly/cpp/src/sample/subtly/ |
character_predicate.cc | 31 bool AcceptRange::operator()(int32_t character) const { 32 return start_ <= character && character <= end_; 44 bool AcceptSet::operator()(int32_t character) const { 45 return characters_->find(character) != characters_->end(); 49 bool AcceptAll::operator()(int32_t character) const { 50 UNREFERENCED_PARAMETER(character);
|
character_predicate.h | 28 virtual bool operator()(int32_t character) const = 0; 37 virtual bool operator()(int32_t character) const; 52 virtual bool operator()(int32_t character) const; 64 virtual bool operator()(int32_t character) const;
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLParserIdioms.h | 67 inline bool isHTMLSpace(CharType character) 79 return character <= ' ' && (character == ' ' || character == '\n' || character == '\t' || character == '\r' || character == '\f'); 83 inline bool isHTMLSpaceOrComma(CharType character) 85 return isHTMLSpace<CharType>(character) || character == ',' [all...] |
HTMLToken.h | 74 Character, 136 ASSERT(m_type == Character || m_type == Comment || m_type == StartTag || m_type == EndTag); 151 void appendToName(UChar character) 154 ASSERT(character); 155 m_data.append(character); 156 m_orAllData |= character; 180 void beginDOCTYPE(UChar character) 182 ASSERT(character); 184 m_data.append(character); 185 m_orAllData |= character; [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
SurrogatePairAwareTextIterator.cpp | 41 bool SurrogatePairAwareTextIterator::consumeSlowCase(UChar32& character, unsigned& clusterLength) 43 if (character <= 0x30FE) { 46 // Check above for character range to minimize performance impact. 48 character = normalized; 54 if (!U16_IS_SURROGATE(character)) 58 if (!U16_IS_SURROGATE_LEAD(character)) 62 // Make sure we have another character and it's a low surrogate. 70 character = U16_GET_SUPPLEMENTARY(character, low);
|
SurrogatePairAwareTextIterator.h | 36 inline bool consume(UChar32& character, unsigned& clusterLength) 41 character = *m_characters; 44 if (character < HiraganaLetterSmallA) 47 return consumeSlowCase(character, clusterLength);
|
UnicodeUtilitiesTest.cpp | 82 for (UChar32 character = 0; character < kMaxLatinCharCount; ++character) { 83 EXPECT_EQ(isSeparator(character), latinSeparatorTable[character]); 94 for (UChar character = 0; character < 0x3041; ++character) 95 EXPECT_FALSE(isKanaLetter(character)); 98 for (UChar character = 0x3041; character <= 0x3096; ++character [all...] |
UnicodeUtilities.cpp | 57 // 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) 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) 112 if (character < 256) 113 return latin1SeparatorTable[character]; 115 return isNonLatin1Separator(character); [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/testing/ |
WTFTestHelpers.cpp | 48 UChar character = string[index]; local 49 switch (character) { 66 if (character >= 0x20 && character < 0x7F) { 67 out << static_cast<char>(character); 75 out << character; local
|
/external/jmonkeyengine/engine/src/bullet-native/ |
com_jme3_bullet_objects_PhysicsCharacter.cpp | 40 #include "BulletDynamics/Character/btKinematicCharacterController.h" 90 btKinematicCharacterController* character = new btKinematicCharacterController(ghost, shape, stepHeight); local 91 return reinterpret_cast<jlong>(character); 101 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 102 if (character == NULL) { 109 character->warp(vec); 119 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 120 if (character == NULL) { 127 character->setWalkDirection(vec); 137 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId) local 153 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 169 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 185 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 201 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 217 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 233 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 249 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 265 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local 377 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); local [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/ |
UTF8.cpp | 282 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 += static_cast<unsigned char>(*sequence++); character <<= 6 317 UChar32 character = readUTF8Sequence(source, utf8SequenceLength); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/ |
Text_Suite.py | 38 """color - The color of the first character. """ 42 """font - The name of the font of the first character. """ 46 """size - The size in points of the first character. """ 56 class character(aetools.ComponentItem): class in inherits:aetools.ComponentItem 57 """character - This subdivides the text into characters. """ 64 characters = character 100 'character' : character, 114 'character' : character, [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/ |
Text_Suite.py | 38 """color - The color of the first character. """ 42 """font - The name of the font of the first character. """ 46 """size - The size in points of the first character. """ 56 class character(aetools.ComponentItem): class in inherits:aetools.ComponentItem 57 """character - This subdivides the text into characters. """ 64 characters = character 100 'character' : character, 114 'character' : character, [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
FontFastPath.cpp | 46 static inline bool isInRange(UChar32 character, UChar32 lowerBound, UChar32 upperBound) 48 return character >= lowerBound && character <= upperBound; 51 static bool shouldIgnoreRotation(UChar32 character) 53 if (character == 0x000A7 || character == 0x000A9 || character == 0x000AE) 56 if (character == 0x000B6 || character == 0x000BC || character == 0x000BD || character == 0x000BE [all...] |
Latin1TextIterator.h | 40 bool consume(UChar32& character, unsigned& clusterLength) 45 character = *m_characters;
|
/external/proguard/src/proguard/ |
WordReader.java | 135 Character.isWhitespace(currentLine.charAt(currentIndex))) 169 Character.isWhitespace(currentLine.charAt(currentIndex))) 183 // The next word is a single delimiting character. 188 // The next word is starting with a quote character. 192 // The next word is a quoted character string. 210 // The next word is a simple character string. 217 Character.isWhitespace(currentCharacter)) 308 private boolean isDelimiter(char character) 310 return character == '@' || 311 character == '{' | [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextCodecUTF8.cpp | 145 static inline UChar* appendCharacter(UChar* destination, int character) 147 ASSERT(character != nonCharacter); 148 ASSERT(!U_IS_SURROGATE(character)); 149 if (U_IS_BMP(character)) 150 *destination++ = character; 152 *destination++ = U16_LEAD(character); 153 *destination++ = U16_TRAIL(character); 169 // Each error generates a replacement character and consumes one byte. 206 int character = decodeNonASCIISequence(m_partialSequence, count); local 207 if ((character == nonCharacter) || (character > 0xff) 253 int character = decodeNonASCIISequence(m_partialSequence, count); local 318 int character; local 395 int character; local 441 UChar32 character; local [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
NameLookupBuilder.java | 178 int character; local 183 character = name.codePointAt(position++); 184 if ((character == 0x20) || (character == 0x2c) || (character == 0x2E)) { 190 if ((character < 0x1100) || (character > 0x1112 && character < 0x3131) || 191 (character > 0x314E && character < 0xAC00) | [all...] |
/external/clang/test/PCH/ |
cxx_exprs.cpp | 12 char character; variable 26 const_cast_result char_ptr = &character;
|
/external/chromium_org/content/common/ |
child_process_sandbox_support_impl_linux.h | 20 // specified by |character| 21 // character: a UTF32 character 22 // preferred_locale: preferred locale identifier for the |character| 26 void GetFontFamilyForCharacter(const int32_t character,
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/ |
FontFallbackWin.h | 55 // Return a font family that can render |character| based on what script 59 PLATFORM_EXPORT const UChar* getFallbackFamily(UChar32 character,
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/ |
jquery.hotkeys.js | 53 character = String.fromCharCode( event.which ).toLowerCase(), 78 possible[ modif + character ] = true; 79 possible[ modif + jQuery.hotkeys.shiftNums[ character ] ] = true; 83 possible[ jQuery.hotkeys.shiftNums[ character ] ] = true;
|
/external/chromium_org/third_party/WebKit/public/platform/linux/ |
WebFontInfo.h | 51 // specified by character. 52 // character: a UTF-32 code point 58 BLINK_EXPORT static void familyForChar(const WebUChar32 character, const char* preferredLocale, WebFontFamily*);
|