Searched refs:characters (Results 26 - 50 of 705) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DTextCodecUserDefined.cpp66 static CString encodeComplexUserDefined(const UChar* characters, size_t length, UnencodableHandling handling) argument
74 U16_NEXT(characters, i, length, c);
92 CString TextCodecUserDefined::encode(const UChar* characters, size_t length, UnencodableHandling handling) argument
100 UChar c = characters[i];
109 return encodeComplexUserDefined(characters, length, handling);
H A DTextEncoding.h54 void displayBuffer(CharacterType* characters, unsigned len) const argument
59 if (characters[i] == '\\')
60 characters[i] = m_backslashAsCurrencySymbol;
H A DTextCodecUTF16.cpp81 UChar* q = buffer.characters();
115 buffer.shrink(q - buffer.characters());
120 CString TextCodecUTF16::encode(const UChar* characters, size_t length, UnencodableHandling) argument
134 // null characters inside it. Perhaps the result of encode should not be a CString.
137 UChar c = characters[i];
143 UChar c = characters[i];
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DBString.cpp47 BString::BString(const wchar_t* characters) argument
49 if (!characters)
52 m_bstr = SysAllocString(characters);
55 BString::BString(const wchar_t* characters, size_t length) argument
57 if (!characters)
60 m_bstr = SysAllocStringLen(characters, length);
68 m_bstr = SysAllocStringLen(s.characters(), s.length());
76 m_bstr = SysAllocStringLen(url.string().characters(), url.string().length());
84 m_bstr = SysAllocStringLen(s.characters(), s.length());
/macosx-10.9.5/emacs-92/emacs/lisp/play/
H A Danimate.el41 ;;; all the characters and the paths they should take.
51 (let ((characters nil))
53 (setq characters
64 characters)))
65 characters))
67 ;;; Display the characters in CHARACTERS,
69 ;;; If FRACTION is 0, the characters appear in their starting positions.
70 ;;; If FRACTION is 1, the characters appear in their destinations.
72 (defun animate-step (characters fraction)
74 (dolist (item characters)
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dunicode-object.m213 * NOTE: A final optimization is removing the copy of 'characters', but
253 unichar* volatile characters = NULL;
258 characters = PyMem_Malloc(sizeof(unichar) * length);
259 if (characters == NULL) {
266 [value getCharacters: characters range: range];
269 if (characters) {
270 PyMem_Free(characters);
271 characters = NULL;
281 PyMem_Free(characters); characters
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/
H A Dunicode-object.m212 * NOTE: A final optimization is removing the copy of 'characters', but
255 unichar* volatile characters = NULL;
260 characters = PyMem_Malloc(sizeof(unichar) * length);
261 if (characters == NULL) {
268 [value getCharacters: characters range: range];
271 if (characters) {
272 PyMem_Free(characters);
273 characters = NULL;
283 PyMem_Free(characters); characters
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/parser/
H A DLexer.h136 void append16(const UChar* characters, size_t length) { m_buffer16.append(characters, length); } argument
182 ALWAYS_INLINE const Identifier* makeIdentifier(const LChar* characters, size_t length);
183 ALWAYS_INLINE const Identifier* makeIdentifier(const UChar* characters, size_t length);
184 ALWAYS_INLINE const Identifier* makeLCharIdentifier(const LChar* characters, size_t length);
185 ALWAYS_INLINE const Identifier* makeLCharIdentifier(const UChar* characters, size_t length);
186 ALWAYS_INLINE const Identifier* makeRightSizedIdentifier(const UChar* characters, size_t length, UChar orAllChars);
187 ALWAYS_INLINE const Identifier* makeIdentifierLCharFromUChar(const UChar* characters, size_t length);
275 ALWAYS_INLINE const Identifier* Lexer<T>::makeIdentifier(const LChar* characters, size_t length) argument
277 return &m_arena->makeIdentifier(m_vm, characters, lengt
281 makeIdentifier(const UChar* characters, size_t length) argument
287 makeRightSizedIdentifier(const UChar* characters, size_t length, UChar) argument
293 makeRightSizedIdentifier(const UChar* characters, size_t length, UChar orAllChars) argument
316 makeIdentifierLCharFromUChar(const UChar* characters, size_t length) argument
322 makeLCharIdentifier(const LChar* characters, size_t length) argument
328 makeLCharIdentifier(const UChar* characters, size_t length) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DSurrogatePairAwareTextIterator.cpp35 SurrogatePairAwareTextIterator::SurrogatePairAwareTextIterator(const UChar* characters, int currentCharacter, int lastCharacter, int endCharacter) argument
36 : m_characters(characters)
/macosx-10.9.5/hfs-226.1.1/hfs_japanese/hfs_japanese.kmodproj/
H A DCFStub.h67 extern UInt32 __CFToMacJapanese(UInt32 flags, const UniChar *characters,
71 UniChar *characters, UInt32 maxCharLen, UInt32 *usedCharLen);
/macosx-10.9.5/vim-53/runtime/keymap/
H A Dcroatian_cp1250.vim1 " Vim Keymap file for Croatian characters, classical variant, cp1250 encoding
H A Dcroatian_utf-8.vim1 " Vim Keymap file for Croatian characters, classical variant, UTF-8 encoding
H A Dserbian_iso-8859-5.vim1 " Vim Keymap file for Serbian characters, classical variant, iso-8859-5 encoding
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DSecurityContext.cpp85 const UChar* characters = policy.characters(); local
91 while (start < length && isHTMLSpace(characters[start]))
96 while (end < length && !isHTMLSpace(characters[end]))
H A DSpaceSplitString.cpp35 static inline bool hasNonASCIIOrUpper(const CharacterType* characters, unsigned length) argument
40 CharacterType c = characters[i];
57 inline void SpaceSplitStringData::createVector(const CharacterType* characters, unsigned length) argument
61 while (start < length && isHTMLSpace(characters[start]))
66 while (end < length && isNotHTMLSpace(characters[end]))
69 m_vector.append(AtomicString(characters + start, end - start));
/macosx-10.9.5/CF-855.17/
H A DCFStringEncodingConverterPriv.h43 extern CFIndex __CFStringEncodingPlatformUnicodeToBytes(uint32_t encoding, uint32_t flags, const UniChar *characters, CFIndex numChars, CFIndex *usedCharLen, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen);
44 extern CFIndex __CFStringEncodingPlatformBytesToUnicode(uint32_t encoding, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, CFIndex *usedByteLen, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen);
46 extern CFIndex __CFStringEncodingPlatformByteLengthForCharacters(uint32_t encoding, uint32_t flags, const UniChar *characters, CFIndex numChars);
H A DCFPlatformConverters.c123 CF_PRIVATE CFIndex __CFStringEncodingPlatformUnicodeToBytes(uint32_t encoding, uint32_t flags, const UniChar *characters, CFIndex numChars, CFIndex *usedCharLen, uint8_t *bytes, CFIndex maxByteLen, CFIndex *usedByteLen) { argument
135 if ((usedLen = WideCharToMultiByte(CFStringConvertEncodingToWindowsCodepage(encoding), dwFlags, (LPCWSTR)characters, numChars, (LPSTR)bytes, maxByteLen, NULL, NULL)) == 0) {
145 usedLen = WideCharToMultiByte(CFStringConvertEncodingToWindowsCodepage(encoding), dwFlags, (LPCWSTR)characters, numChars, NULL, 0, NULL, NULL);
149 if (WideCharToMultiByte(CFStringConvertEncodingToWindowsCodepage(encoding), dwFlags, (LPCWSTR)characters, numChars, (LPSTR)bytes, maxByteLen, NULL, NULL) == 0) {
155 while ((usedLen = WideCharToMultiByte(CFStringConvertEncodingToWindowsCodepage(encoding), dwFlags, (LPCWSTR)characters, ++numChars, (LPSTR)bytes, maxByteLen, NULL, NULL))) lastUsedLen = usedLen;
174 CF_PRIVATE CFIndex __CFStringEncodingPlatformBytesToUnicode(uint32_t encoding, uint32_t flags, const uint8_t *bytes, CFIndex numBytes, CFIndex *usedByteLen, UniChar *characters, CFIndex maxCharLen, CFIndex *usedCharLen) { argument
185 if ((usedLen = MultiByteToWideChar(CFStringConvertEncodingToWindowsCodepage(encoding), dwFlags, (LPCSTR)bytes, numBytes, (LPWSTR)characters, maxCharLen)) == 0) {
195 usedLen = MultiByteToWideChar(CFStringConvertEncodingToWindowsCodepage(encoding), dwFlags, (LPCSTR)bytes, numBytes, (LPWSTR)characters, maxCharLen);
199 while ((usedLen = MultiByteToWideChar(CFStringConvertEncodingToWindowsCodepage(encoding), dwFlags, (LPCSTR)bytes, numBytes, (LPWSTR)characters, maxCharLen)) == 0) {
224 CF_PRIVATE CFIndex __CFStringEncodingPlatformByteLengthForCharacters(uint32_t encoding, uint32_t flags, const UniChar *characters, CFInde argument
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DLiteralParser.cpp47 // The JSON RFC 4627 defines a list of allowed characters to be considered
133 ALWAYS_INLINE const Identifier LiteralParser<CharType>::makeIdentifier(const LChar* characters, size_t length) argument
137 if (characters[0] >= MaximumCachableCharacter)
138 return Identifier(&m_exec->vm(), characters, length);
141 if (!m_shortIdentifiers[characters[0]].isNull())
142 return m_shortIdentifiers[characters[0]];
143 m_shortIdentifiers[characters[0]] = Identifier(&m_exec->vm(), characters, length);
144 return m_shortIdentifiers[characters[0]];
146 if (!m_recentIdentifiers[characters[
153 makeIdentifier(const UChar* characters, size_t length) argument
[all...]
H A DLiteralParser.h90 LiteralParser(ExecState* exec, const CharType* characters, unsigned length, ParserMode mode) argument
92 , m_lexer(characters, length, mode)
122 Lexer(const CharType* characters, unsigned length, ParserMode mode) argument
124 , m_ptr(characters)
125 , m_end(characters + length)
160 ALWAYS_INLINE const Identifier makeIdentifier(const LChar* characters, size_t length);
161 ALWAYS_INLINE const Identifier makeIdentifier(const UChar* characters, size_t length);
/macosx-10.9.5/hfs-226.1.1/fsck_hfs/dfalib/
H A DFixDecompsNotes.txt59 affects the decomposition of Greek characters - about 80 of them (18 of which
60 correspond to characters in MacGreek). It also affects the decomposition of a
61 few others: around 23 Latin-script characters and 18 Cyrillic characters (none
63 characters (5 of which do correspond to MacArabic characters), 16 Indic, Thai, &
64 Lao characters (3 of which correspond to characters in Mac encodings). It also
81 optional list of additional characters that need to be matched for a complete
86 characters tha
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/mac/
H A DComplexTextController.h77 static PassRefPtr<ComplexTextRun> create(CTRunRef ctRun, const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, CFRange runRange) argument
79 return adoptRef(new ComplexTextRun(ctRun, fontData, characters, stringLocation, stringLength, runRange));
82 static PassRefPtr<ComplexTextRun> create(const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr) argument
84 return adoptRef(new ComplexTextRun(fontData, characters, stringLocation, stringLength, ltr));
89 const UChar* characters() const { return m_characters; } function in class:WebCore::ComplexTextController::ComplexTextRun
104 ComplexTextRun(CTRunRef, const SimpleFontData*, const UChar* characters, unsigned stringLocation, size_t stringLength, CFRange runRange);
105 ComplexTextRun(const SimpleFontData*, const UChar* characters, unsigned stringLocation, size_t stringLength, bool ltr);
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblunicode/utbm/
H A DREADME40 o For conversions between upper, lower, and title case, UCS2 characters
41 always convert to other UCS2 characters, and UTF-16 characters always
42 convert to other UTF-16 characters.
50 o UTBM_IGNORE_NONSPACING - ignore non-spacing characters in the pattern and
58 This flag also causes all characters identified
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Ddictionarydata.h82 UCharsDictionaryMatcher(const UChar *c, UDataMemory *f) : characters(c), file(f) { }
88 const UChar *characters; member in class:UCharsDictionaryMatcher
99 : characters(c), transformConstant(t), file(f) { }
107 const char *characters; member in class:BytesDictionaryMatcher
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSStringRef.cpp86 return string->characters();
101 const UChar* d = string->characters();
113 return len == b->length() && 0 == memcmp(a->characters(), b->characters(), len * sizeof(UChar));
/macosx-10.9.5/Security-55471.14.18/sec/Security/
H A DSecPasswordGenerate.c386 static bool passwordContainsAtLeastNCharacters(CFStringRef password, CFStringRef characters, CFIndex N) argument
389 characterSet = CFCharacterSetCreateWithCharactersInString(kCFAllocatorDefault, characters);
403 static bool passwordContainsLessThanNCharacters(CFStringRef password, CFStringRef characters, CFIndex N) argument
406 characterSet = CFCharacterSetCreateWithCharactersInString(kCFAllocatorDefault, characters);
446 //it's faster for long characters to check each character produced for these cases
448 //check prohibited characters
728 //add the prohibited characters string if it exists to the new dictionary
732 //add the characters the password can't end with if it exists to the new dictionary
736 //add the characters the password can't start with if it exists to the new dictionary
818 atLeastCharactersRef, thresholdRef, identicalRef, characters; local
919 CFTypeRef characters, identicalRef = NULL, NRef = NULL, endWith= NULL, startWith= NULL, atLeastCharacters= NULL, atMostCharacters = NULL; local
[all...]

Completed in 203 milliseconds

1234567891011>>