Searched refs:characters (Results 1 - 25 of 705) sorted by relevance

1234567891011>>

/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DOpaqueJSString.h44 static PassRefPtr<OpaqueJSString> create(const LChar* characters, unsigned length) argument
46 return adoptRef(new OpaqueJSString(characters, length));
49 static PassRefPtr<OpaqueJSString> create(const UChar* characters, unsigned length) argument
51 return adoptRef(new OpaqueJSString(characters, length));
56 const UChar* characters() { return !!this ? m_string.characters() : 0; } function in struct:OpaqueJSString
77 OpaqueJSString(const LChar* characters, unsigned length) argument
79 m_string = String(characters, length);
82 OpaqueJSString(const UChar* characters, unsigned length) argument
84 m_string = String(characters, lengt
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/yarr/
H A DYarrCanonicalizeUCS2.js57 // The set of characters that canonicalize to cu
58 var characters = groupedCanonically[cu];
61 if (characters.length == 1) {
62 typeInfo[characters[0]] = "CanonicalizeUnique:0";
63 latinTypeInfo[characters[0]] = characters[0] <= MAX_LATIN ? "CanonicalizeLatinSelf:0" : "CanonicalizeLatinInvalid:0";
68 characters.sort(function(x,y){return x-y;});
70 // If there are more than two characters, create an entry in characterSetInfo.
71 if (characters.length > 2) {
72 for (i in characters)
[all...]
/macosx-10.9.5/WebCore-7537.78.1/fileapi/
H A DBlob.cpp97 const LChar* characters = contentType.characters8(); local
99 if (characters[i] < 0x20 || characters[i] > 0x7e)
103 const UChar* characters = contentType.characters16(); local
105 if (characters[i] < 0x20 || characters[i] > 0x7e)
126 const LChar* characters = contentType.characters8(); local
128 if (characters[i] < 0x20 || characters[i] > 0x7e)
130 if (characters[
134 const UChar* characters = contentType.characters16(); local
148 const char* characters = contentType.data(); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DLinkHash.cpp34 static inline size_t findSlashDotDotSlash(const CharacterType* characters, size_t length, size_t position) argument
40 if (characters[i] == '/' && characters[i + 1] == '.' && characters[i + 2] == '.' && characters[i + 3] == '/')
47 static inline size_t findSlashSlash(const CharacterType* characters, size_t length, size_t position) argument
53 if (characters[i] == '/' && characters[i + 1] == '/')
60 static inline size_t findSlashDotSlash(const CharacterType* characters, size_t length, size_t position) argument
66 if (characters[
73 containsColonSlashSlash(const CharacterType* characters, unsigned length) argument
182 needsTrailingSlash(const CharacterType* characters, unsigned length) argument
229 visitedURLInline(const KURL& base, const CharacterType* characters, unsigned length, Vector<CharacterType, 512>& buffer) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_markup_to_html_snippet.rb21 assert_equal 5, @to.characters
26 assert_equal 5, @to.characters
31 assert_equal 5, @to.characters
36 assert_equal 5, @to.characters
41 assert_equal 5, @to.characters
46 assert_equal 5, @to.characters
51 assert_equal 5, @to.characters
57 assert_equal 5, @to.characters
62 assert_equal 5, @to.characters
70 assert_equal 0, @to.characters
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DLatin1TextIterator.h33 Latin1TextIterator(const LChar* characters, int currentCharacter, int lastCharacter, int /*endCharacter*/) argument
34 : m_characters(characters)
57 const LChar* characters() const { return m_characters; } function in class:WebCore::Latin1TextIterator
H A DWidthCache.h57 template<typename CharacterType> SmallStringKey(CharacterType* characters, unsigned short length) argument
69 m_characters[i] = characters[i];
70 m_characters[i + 1] = characters[i + 1];
71 hasher.addCharactersAssumingAligned(characters[i], characters[i + 1]);
76 m_characters[i] = characters[i];
77 hasher.addCharacter(characters[i]);
83 const UChar* characters() const { return m_characters; } function in class:WebCore::WidthCache::SmallStringKey
211 return WTF::equal(a.characters(), b.characters(),
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDatasetDOMStringMap.cpp42 const UChar* characters = name.characters(); local
45 if (isASCIIUpper(characters[i]))
56 const UChar* characters = name.characters(); local
59 UChar character = characters[i];
63 if ((i + 1 < length) && isASCIILower(characters[i + 1])) {
64 stringBuilder.append(toASCIIUpper(characters[i + 1]));
79 const UChar* property = propertyName.characters();
80 const UChar* attribute = attributeName.characters();
104 const UChar* characters = name.characters(); local
118 const UChar* characters = name.characters(); local
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/markup/
H A Dto_html_snippet.rb7 # After this many characters the input will be cut off.
12 # The number of characters seen so far.
14 attr_reader :characters # :nodoc:
33 # next word boundary after the given number of +characters+ or +paragraphs+
36 def initialize options, characters = 100, paragraphs = 3, markup = nil
39 @character_limit = characters
42 @characters = 0
104 throw :done if @characters >= @character_limit
121 @characters = 0
135 @characters
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DCSSPreloadScanner.cpp170 static String parseCSSStringOrURL(const UChar* characters, size_t length) argument
175 while (reducedLength && isHTMLSpace(characters[offset])) {
179 while (reducedLength && isHTMLSpace(characters[offset + reducedLength - 1]))
183 && (characters[offset] == 'u' || characters[offset] == 'U')
184 && (characters[offset + 1] == 'r' || characters[offset + 1] == 'R')
185 && (characters[offset + 2] == 'l' || characters[offset + 2] == 'L')
186 && characters[offse
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DTextBoundaries.h41 int endOfFirstWordBoundaryContext(const UChar* characters, int length);
42 int startOfLastWordBoundaryContext(const UChar* characters, int length);
H A DTextBoundaries.cpp39 int endOfFirstWordBoundaryContext(const UChar* characters, int length) argument
44 U16_NEXT(characters, i, length, ch);
51 int startOfLastWordBoundaryContext(const UChar* characters, int length) argument
56 U16_PREV(characters, 0, i, ch);
/macosx-10.9.5/JavaScriptCore-7537.78.1/parser/
H A DParserArena.h46 ALWAYS_INLINE const Identifier& makeIdentifier(VM*, const T* characters, size_t length);
47 ALWAYS_INLINE const Identifier& makeIdentifierLCharFromUChar(VM*, const UChar* characters, size_t length);
72 ALWAYS_INLINE const Identifier& IdentifierArena::makeIdentifier(VM* vm, const T* characters, size_t length) argument
74 if (characters[0] >= MaximumCachableCharacter) {
75 m_identifiers.append(Identifier(vm, characters, length));
79 if (Identifier* ident = m_shortIdentifiers[characters[0]])
81 m_identifiers.append(Identifier(vm, characters, length));
82 m_shortIdentifiers[characters[0]] = &m_identifiers.last();
85 Identifier* ident = m_recentIdentifiers[characters[0]];
86 if (ident && Identifier::equal(ident->impl(), characters, lengt
93 makeIdentifierLCharFromUChar(VM* vm, const UChar* characters, size_t length) argument
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFICUConverters.h40 CF_PRIVATE CFIndex __CFStringEncodingICUToBytes(const char *icuName, uint32_t flags, const UniChar *characters, CFIndex numChars, CFIndex *usedCharLen, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen);
41 CF_PRIVATE CFIndex __CFStringEncodingICUToUnicode(const char *icuName, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, CFIndex *usedByteLen, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen);
43 CF_PRIVATE CFIndex __CFStringEncodingICUByteLength(const char *icuName, uint32_t flags, const UniChar *characters, CFIndex numChars);
H A DCFUnicodePrecomposition.h43 CF_EXPORT bool CFUniCharPrecompose(const UTF16Char *characters, CFIndex length, CFIndex *consumedLength, UTF16Char *precomposed, CFIndex maxLength, CFIndex *filledLength);
H A DCFStringEncodingConverter.c40 typedef CFIndex (*_CFToBytesProc)(const void *converter, uint32_t flags, const UniChar *characters, CFIndex numChars, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen);
41 typedef CFIndex (*_CFToUnicodeProc)(const void *converter, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen);
185 static CFIndex __CFDefaultToBytesFallbackProc(const UniChar *characters, CFIndex numChars, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen) { argument
189 if (*characters < 0xA0) { // 0x80 to 0x9F maps to ASCII C0 range
190 byte = (uint8_t)(*characters - 0x80);
191 } else if (*characters < 0x100) {
192 *usedByteLen = __CFToASCIILatin1Fallback(*characters, bytes, maxByteLen);
194 } else if (*characters >= kSurrogateHighStart && *characters <= kSurrogateLowEnd) {
195 processCharLen = (numChars > 1 && *characters <
226 __CFDefaultToUnicodeFallbackProc(const uint8_t *bytes, CFIndex numBytes, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen) argument
239 __CFToBytesCheapEightBitWrapper(const void *converter, uint32_t flags, const UniChar *characters, CFIndex numChars, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen) argument
255 __CFToUnicodeCheapEightBitWrapper(const void *converter, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen) argument
271 __CFToCanonicalUnicodeCheapEightBitWrapper(const void *converter, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen) argument
314 __CFToBytesStandardEightBitWrapper(const void *converter, uint32_t flags, const UniChar *characters, CFIndex numChars, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen) argument
334 __CFToUnicodeStandardEightBitWrapper(const void *converter, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen) argument
360 __CFToCanonicalUnicodeStandardEightBitWrapper(const void *converter, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen) argument
405 __CFToBytesCheapMultiByteWrapper(const void *converter, uint32_t flags, const UniChar *characters, CFIndex numChars, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen) argument
432 __CFToUnicodeCheapMultiByteWrapper(const void *converter, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen) argument
452 __CFToCanonicalUnicodeCheapMultiByteWrapper(const void *converter, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen) argument
650 CFStringEncodingUnicodeToBytes(uint32_t encoding, uint32_t flags, const UniChar *characters, CFIndex numChars, CFIndex *usedCharLen, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen) argument
811 CFStringEncodingBytesToUnicode(uint32_t encoding, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, CFIndex *usedByteLen, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen) argument
904 CFStringEncodingByteLengthForCharacters(uint32_t encoding, uint32_t flags, const UniChar *characters, CFIndex numChars) argument
[all...]
H A DCFStringEncodingConverter.h76 /* Converts characters into the specified encoding. Returns the constants defined above.
80 CF_EXPORT uint32_t CFStringEncodingUnicodeToBytes(uint32_t encoding, uint32_t flags, const UniChar *characters, CFIndex numChars, CFIndex *usedCharLen, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen);
84 If maxCharLen is 0, characters is ignored.
86 CF_EXPORT uint32_t CFStringEncodingBytesToUnicode(uint32_t encoding, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, CFIndex *usedByteLen, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen);
90 typedef CFIndex (*CFStringEncodingToBytesFallbackProc)(const UniChar *characters, CFIndex numChars, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen);
91 typedef CFIndex (*CFStringEncodingToUnicodeFallbackProc)(const uint8_t *bytes, CFIndex numBytes, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen);
102 CF_EXPORT CFIndex CFStringEncodingByteLengthForCharacters(uint32_t encoding, uint32_t flags, const UniChar *characters, CFIndex numChars);
/macosx-10.9.5/vim-53/runtime/keymap/
H A Ddvorak.vim4 " All characters are ASCII, conversion to another encoding (e.g., UTF-8)
H A Daccents.vim1 " Vim Keymap file for latin1 accents through dead characters
5 " All characters are given literally, conversion to another encoding (e.g.,
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecBase64P.c122 * characters.
161 char characters[NUM_ENCODED_DATA_BYTES]; local
176 /* characters[0] is the 6 left-most bits of src[0] */
177 characters[0] = (char)((src[0] & 0xfc) >> 2);
178 /* characters[0] is the right-most 2 bits of src[0] and the left-most 4 bits of src[1] */
179 characters[1] = (char)(((src[0] & 0x03) << 4) + ((src[1] & 0xf0) >> 4));
180 /* characters[0] is the right-most 4 bits of src[1] and the 2 left-most bits of src[2] */
181 characters[2] = (char)(((src[1] & 0x0f) << 2) + ((src[2] & 0xc0) >> 6));
182 /* characters[3] is the right-most 6 bits of src[2] */
183 characters[
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecBase64P.c122 * characters.
161 char characters[NUM_ENCODED_DATA_BYTES]; local
176 /* characters[0] is the 6 left-most bits of src[0] */
177 characters[0] = (char)((src[0] & 0xfc) >> 2);
178 /* characters[0] is the right-most 2 bits of src[0] and the left-most 4 bits of src[1] */
179 characters[1] = (char)(((src[0] & 0x03) << 4) + ((src[1] & 0xf0) >> 4));
180 /* characters[0] is the right-most 4 bits of src[1] and the 2 left-most bits of src[2] */
181 characters[2] = (char)(((src[1] & 0x0f) << 2) + ((src[2] & 0xc0) >> 6));
182 /* characters[3] is the right-most 6 bits of src[2] */
183 characters[
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DSecBase64P.c122 * characters.
161 char characters[NUM_ENCODED_DATA_BYTES]; local
176 /* characters[0] is the 6 left-most bits of src[0] */
177 characters[0] = (char)((src[0] & 0xfc) >> 2);
178 /* characters[0] is the right-most 2 bits of src[0] and the left-most 4 bits of src[1] */
179 characters[1] = (char)(((src[0] & 0x03) << 4) + ((src[1] & 0xf0) >> 4));
180 /* characters[0] is the right-most 4 bits of src[1] and the 2 left-most bits of src[2] */
181 characters[2] = (char)(((src[1] & 0x0f) << 2) + ((src[2] & 0xc0) >> 6));
182 /* characters[3] is the right-most 6 bits of src[2] */
183 characters[
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/Security/
H A DSecBase64.c122 * characters.
161 char characters[NUM_ENCODED_DATA_BYTES]; local
176 /* characters[0] is the 6 left-most bits of src[0] */
177 characters[0] = (char)((src[0] & 0xfc) >> 2);
178 /* characters[0] is the right-most 2 bits of src[0] and the left-most 4 bits of src[1] */
179 characters[1] = (char)(((src[0] & 0x03) << 4) + ((src[1] & 0xf0) >> 4));
180 /* characters[0] is the right-most 4 bits of src[1] and the 2 left-most bits of src[2] */
181 characters[2] = (char)(((src[1] & 0x0f) << 2) + ((src[2] & 0xc0) >> 6));
182 /* characters[3] is the right-most 6 bits of src[2] */
183 characters[
[all...]
/macosx-10.9.5/WebCore-7537.78.1/loader/appcache/
H A DManifestParser.cpp58 const UChar* end = s.characters() + s.length();
59 const UChar* p = s.characters() + 14; // "CACHE MANIFEST" is 14 characters.
104 const UChar* p = line.characters();
111 if (mode == OnlineWhitelist && p - line.characters() == 1 && *line.characters() == '*') {
117 KURL url(manifestURL, String(line.characters(), p - line.characters()));
137 const UChar* p = line.characters();
149 KURL namespaceURL(manifestURL, String(line.characters(),
[all...]
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DSmartReplaceICU.cpp42 const UChar* characters = string.characters(); local
44 uset_add(smartSet, characters[i]);
58 smartSet = uset_openPattern(whitespaceAndNewline.characters(), whitespaceAndNewline.length(), &ec);
82 USet* icuPunct = uset_openPattern(punctuationClass.characters(), punctuationClass.length(), &ec);

Completed in 234 milliseconds

1234567891011>>