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

1234567891011>>

/macosx-10.10/JavaScriptCore-7600.1.17/API/
H A DOpaqueJSString.cpp47 UChar* characters = m_characters; local
48 if (!characters)
51 if (!m_string.is8Bit() && m_string.characters16() == characters)
54 fastFree(characters);
80 const UChar* OpaqueJSString::characters() function in class:OpaqueJSString
86 UChar* characters = m_characters;
87 if (characters)
88 return characters;
97 if (!m_characters.compare_exchange_strong(characters, newCharacters)) {
99 return characters;
[all...]
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));
63 const UChar* characters();
84 OpaqueJSString(const LChar* characters, unsigned length) argument
85 : m_string(characters, length)
90 OpaqueJSString(const UChar* characters, unsigned length) argument
91 : m_string(characters, length)
98 // This will be initialized on demand when characters() i
[all...]
/macosx-10.10/WebCore-7600.1.25/html/parser/
H A DCSSPreloadScanner.cpp154 static String parseCSSStringOrURL(const UChar* characters, size_t length) argument
159 while (reducedLength && isHTMLSpace(characters[offset])) {
163 while (reducedLength && isHTMLSpace(characters[offset + reducedLength - 1]))
167 && (characters[offset] == 'u' || characters[offset] == 'U')
168 && (characters[offset + 1] == 'r' || characters[offset + 1] == 'R')
169 && (characters[offset + 2] == 'l' || characters[offset + 2] == 'L')
170 && characters[offse
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/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.10/WebCore-7600.1.25/fileapi/
H A DBlob.cpp138 const LChar* characters = contentType.characters8(); local
140 if (characters[i] < 0x20 || characters[i] > 0x7e)
144 const UChar* characters = contentType.characters16(); local
146 if (characters[i] < 0x20 || characters[i] > 0x7e)
167 const LChar* characters = contentType.characters8(); local
169 if (characters[i] < 0x20 || characters[i] > 0x7e)
171 if (characters[
175 const UChar* characters = contentType.characters16(); local
189 const char* characters = contentType.data(); local
[all...]
/macosx-10.10/ruby-106/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.10/WebCore-7600.1.25/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
228 visitedURLInline(const URL& base, const CharacterType* characters, unsigned length, Vector<CharacterType, 512>& buffer) argument
302 const UChar* characters = upconvertedCharacters; local
[all...]
/macosx-10.10/WebCore-7600.1.25/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.10/ruby-106/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.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Dunicode-object.m235 unichar* volatile characters = NULL;
240 characters = PyObject_MALLOC(sizeof(unichar) * (length+1));
241 if (characters == NULL) {
248 [value getCharacters: characters range: range];
249 characters[length] = 0;
252 if (characters) {
253 PyMem_Free(characters);
254 characters = NULL;
281 Py_UCS4 cur = (Py_UCS4)characters[i];
284 Py_UNICODE_IS_LOW_SURROGATE(characters[
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/parser/
H A DParserArena.h47 ALWAYS_INLINE const Identifier& makeIdentifier(VM*, const T* characters, size_t length);
48 ALWAYS_INLINE const Identifier& makeIdentifierLCharFromUChar(VM*, const UChar* characters, size_t length);
73 ALWAYS_INLINE const Identifier& IdentifierArena::makeIdentifier(VM* vm, const T* characters, size_t length) argument
75 if (characters[0] >= MaximumCachableCharacter) {
76 m_identifiers.append(Identifier(vm, characters, length));
80 if (Identifier* ident = m_shortIdentifiers[characters[0]])
82 m_identifiers.append(Identifier(vm, characters, length));
83 m_shortIdentifiers[characters[0]] = &m_identifiers.last();
86 Identifier* ident = m_recentIdentifiers[characters[0]];
87 if (ident && Identifier::equal(ident->impl(), characters, lengt
94 makeIdentifierLCharFromUChar(VM* vm, const UChar* characters, size_t length) argument
[all...]
/macosx-10.10/WTF-7600.1.24/wtf/text/
H A DIntegerToStringConversion.h39 static ReturnType flush(LChar* characters, unsigned length, void*) { return AtomicString(characters, length); } argument
44 static ReturnType flush(LChar* characters, unsigned length, void*) { return String(characters, length); } argument
49 static ReturnType flush(LChar* characters, unsigned length, StringBuilder* stringBuilder) { stringBuilder->append(characters, length); } argument
/macosx-10.10/vim-55/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.10/Security-57031.1.35/Security/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.10/Security-57031.1.35/Security/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.10/Security-57031.1.35/Security/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.10/Security-57031.1.35/Security/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.10/WebCore-7600.1.25/Scripts/
H A Dmake-js-file-arrays.py71 characters = outputStream.getvalue()
73 characters = inputStream.read()
75 size = len(characters)
81 codepoints = map(ord, characters)
/macosx-10.10/curl-83.1.2/curl/docs/examples/
H A Dxmlstream.c48 struct MemoryStruct characters; member in struct:ParserStruct
58 free(state->characters.memory);
59 state->characters.memory = NULL;
60 state->characters.size = 0;
66 struct MemoryStruct *mem = &state->characters;
86 printf("%5lu %10lu %s\n", state->depth, state->characters.size, name);
152 free(state.characters.memory);
/macosx-10.10/WebCore-7600.1.25/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);
/macosx-10.10/emacs-93/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.10/WebKit2-7600.1.25/Shared/
H A DAPIString.h86 const LChar* characters = m_string.characters8(); local
87 result = WTF::Unicode::convertLatin1ToUTF8(&characters, characters + m_string.length(), &p, p + bufferSize - 1);
89 const UChar* characters = m_string.characters16(); local
90 result = WTF::Unicode::convertUTF16ToUTF8(&characters, characters + m_string.length(), &p, p + bufferSize - 1, /* strict */ true);
/macosx-10.10/pyobjc-45/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...]

Completed in 373 milliseconds

1234567891011>>