Searched refs:characters (Results 201 - 225 of 705) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DChromeClientBlackBerry.cpp101 m_webPagePrivate->m_client->addMessageToConsole(message.characters(), message.length(), sourceID.characters(), sourceID.length(), lineNumber, columnNumber);
115 m_webPagePrivate->m_client->runJavaScriptAlert(message.characters(), message.length(), latinOrigin.data(), latinOrigin.length());
127 return m_webPagePrivate->m_client->runJavaScriptConfirm(message.characters(), message.length(), latinOrigin.data(), latinOrigin.length());
142 if (m_webPagePrivate->m_client->runJavaScriptPrompt(message.characters(), message.length(), defaultValue.characters(), defaultValue.length(), latinOrigin.data(), latinOrigin.length(), clientResult)) {
375 return m_webPagePrivate->m_client->runBeforeUnloadConfirmPanel(message.characters(), message.length(), latinOrigin.data(), latinOrigin.length());
H A DFrameLoaderClientBlackBerry.cpp133 m_webPagePrivate->m_client->notifyLoadToAnchor(url.characters(), url.length(), token.characters(), token.length());
332 // text at this point, producing garbled characters.
513 m_webPagePrivate->m_client->setPageTitle(title.string().characters(), title.string().length());
548 originalUrl.characters(), originalUrl.length(),
549 url.characters(), url.length(), token.characters(), token.length());
552 originalUrl.characters(), originalUrl.length(),
553 url.characters(), url.length(), token.characters(), toke
[all...]
/macosx-10.9.5/vim-53/runtime/autoload/
H A Dsyntaxcomplete.vim65 " this many characters in length.
85 " this many characters in length
142 " Filter the list based on the first few characters the user
183 " this many characters in length
193 " this many characters in length
421 " There are a number of items which have non-word characters in
423 " This will replace non-word characters with spaces.
435 " Escape special regex characters
437 " Remove all characters that are not acceptable
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/lib/Net/LDAP/
H A DDSML.pm294 sub characters { subroutine
427 $handler->characters(\%chdata);
487 $handler->characters({Data => $attr->{name}});
494 $handler->characters({Data => $name});
501 $handler->characters({Data => $oid});
513 $handler->characters({Data => $text});
525 $handler->characters({Data => $syn});
565 $handler->characters({Data => $oc->{name}});
572 $handler->characters({Data => $name});
583 $handler->characters({Dat
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblunicode/ucdata/
H A Dapi.txt99 the characters at the same time.
137 This function takes a pair of characters and determines if they combine to
153 This function does a canonical composition of characters in the string.
283 Can the character be decomposed into a set of other characters?
H A Dformat.txt70 Sy 41 Symmetric (characters which are part of open/close pairs)
92 representing a range of Unicode characters. The pairs are arranged in
167 characters.
190 for all characters with decompositions containing more than one character and
221 The fourth data file is called "cmbcl.dat" and contains the characters with
247 The final data file is called "num.dat" and contains the characters that have
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/win/
H A DFontCacheWin.cpp189 PassRefPtr<SimpleFontData> FontCache::systemFallbackForCharacters(const FontDescription& description, const SimpleFontData* originalFontData, bool, const UChar* characters, int length) argument
191 UChar character = characters[0];
240 if (SUCCEEDED(ScriptStringAnalyse(metaFileDc, characters, length, 0, -1, SSA_METAFILE | SSA_FALLBACK | SSA_GLYPHS | SSA_LINK,
279 memcpy(logFont.lfFaceName, linkedFonts->at(linkedFontIndex).characters(), linkedFonts->at(linkedFontIndex).length() * sizeof(WCHAR));
450 memcpy(logFont.lfFaceName, family.characters(), familyLength * sizeof(UChar));
534 memcpy(logFont.lfFaceName, familyName.characters(), familyLength * sizeof(UChar));
/macosx-10.9.5/WebKit-7537.78.2/mac/History/
H A DBinaryPropertyList.cpp691 const UChar* characters = string.characters(); local
693 if (charactersAreAllASCII(characters, length)) {
701 appendByte(characters[i]);
710 appendByte(characters[i] >> 8);
711 appendByte(characters[i]);
/macosx-10.9.5/emacs-92/emacs/lisp/emacs-lisp/
H A Dlisp.el434 "Alist of paired characters inserted by `insert-pair'.
436 OPEN-CHAR CLOSE-CHAR). The characters OPEN-CHAR and CLOSE-CHAR
441 "Enclose following ARG sexps in a pair of OPEN and CLOSE characters.
444 No argument is equivalent to zero: just insert characters
447 before and after, depending on the surrounding characters.
448 If region is active, insert enclosing characters at region boundaries.
494 before and after, depending on the surrounding characters.
495 If region is active, insert enclosing characters at region boundaries."
500 "Delete a pair of characters enclosing the sexp that follows point."
576 If no characters ca
[all...]
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dstyle.tcl72 or more ranges of characters within a text widget. You can configure
74 characters will be displayed with the styles you chose. The
108 with a border that makes characters appear either }
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Dstyle.tcl67 or more ranges of characters within a text widget. You can configure
69 characters will be displayed with the styles you chose. The
103 with a border that makes characters appear either }
/macosx-10.9.5/CF-855.17/
H A DCFUniChar.c832 UTF32Char *characters = buffer + 1; local
835 while (characters < tail) {
836 if (*characters == 0x0301) break;
837 ++characters;
840 if (characters < tail) { // found a tonos
848 characters = buffer + 1;
850 while (characters < tail) {
851 if (*characters != 0x0301) { // not tonos
852 if (*characters < 0x10000) { // BMP
853 convertedChar[convertedLength] = (UTF16Char)*characters;
[all...]
H A DCFXMLInputStream.h52 UniChar *charBuffer; // the buffer of characters translated from data
53 UniChar *currentChar; // pointer into charBuffer at the current stream location. MUST be NULL if there are no more characters in charBuffer to consume.
56 CFIndex bufferLength; // The number of meaningful characters in charBuffer
97 void _inputStringInitialize(_CFXMLInputStream *stream, UniChar *characters, CFIndex length);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DRegExpObject.cpp208 static inline JSValue regExpObjectSourceInternal(ExecState* exec, String pattern, const CharacterType* characters, unsigned length) argument
224 CharacterType ch = characters[i];
257 CharacterType ch = characters[i];
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGFontData.cpp148 remainingTextInRun = createStringWithMirroredCharacters(remainingTextInRun.characters(), remainingTextInRun.length());
289 String SVGFontData::createStringWithMirroredCharacters(const UChar* characters, unsigned length) const argument
297 U16_NEXT(characters, i, length, character);
/macosx-10.9.5/libxml2-26/libxml2/python/
H A Ddrv_libxml2.py238 self._cont_handler.characters(_d(reader.Value()))
244 self._cont_handler.characters(_d(reader.Value()))
249 self._cont_handler.characters(_d(reader.Value()))
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/python/
H A Ddrv_libxml2.py238 self._cont_handler.characters(_d(reader.Value()))
244 self._cont_handler.characters(_d(reader.Value()))
249 self._cont_handler.characters(_d(reader.Value()))
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DTextCheckingHelper.h48 const UChar* textCharacters() const { return text().characters(); }
/macosx-10.9.5/WebCore-7537.78.1/fileapi/
H A DWebKitBlobBuilder.cpp76 CString utf8Text = UTF8Encoding().encode(text.characters(), text.length(), EntitiesForUnencodables);
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DHTTPParsers.cpp114 bool isValidHTTPToken(const String& characters) argument
116 if (characters.isEmpty())
118 for (unsigned i = 0; i < characters.length(); ++i) {
119 UChar c = characters[i];
288 // includes only a few specific ASCII characters; a small subset of isSpaceOrNewline.
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DTextCodecICU.cpp384 // characters. See the declaration of TextCodec::encode for more.
398 // Substitutes special GBK characters, escaping all other unassigned entities.
442 CString TextCodecICU::encode(const UChar* characters, size_t length, UnencodableHandling handling) argument
459 copy.append(characters, length);
461 source = copy.characters();
464 source = characters;
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderCombineText.cpp61 if (!characters())
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DDOMCSSClasses.cpp105 *result = SysAllocStringLen(value.characters(), value.length());
H A DWebDownload.cpp152 *bundlePath = SysAllocStringLen(bundle.characters(), bundle.length());
/macosx-10.9.5/libxml2-26/libxml2/python/tests/
H A Dindexes.py55 def characters(self, data): member in class:callback

Completed in 193 milliseconds

1234567891011>>