Searched refs:nextCharacter (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/html/parser/
H A DHTMLEntitySearch.cpp46 HTMLEntitySearch::CompareResult HTMLEntitySearch::compare(const HTMLEntityTableEntry* entry, UChar nextCharacter) const
51 if (entryNextCharacter == nextCharacter)
53 return entryNextCharacter < nextCharacter ? Before : After;
56 const HTMLEntityTableEntry* HTMLEntitySearch::findFirst(UChar nextCharacter) const
62 CompareResult result = compare(left, nextCharacter);
69 result = compare(probe, nextCharacter);
81 const HTMLEntityTableEntry* HTMLEntitySearch::findLast(UChar nextCharacter) const
87 CompareResult result = compare(right, nextCharacter);
94 result = compare(probe, nextCharacter);
106 void HTMLEntitySearch::advance(UChar nextCharacter) argument
[all...]
/macosx-10.10/emacs-93/emacs/src/
H A Dw32xfns.c320 char *nextCharacter; local
329 tempWidth = read_integer (strind, &nextCharacter);
330 if (strind == nextCharacter)
332 strind = nextCharacter;
339 tempHeight = read_integer (strind, &nextCharacter);
340 if (strind == nextCharacter)
342 strind = nextCharacter;
351 tempX = -read_integer (strind, &nextCharacter);
352 if (strind == nextCharacter)
354 strind = nextCharacter;
[all...]
H A Dmacfns.c2160 char *nextCharacter;
2169 tempWidth = read_integer (strind, &nextCharacter);
2170 if (strind == nextCharacter)
2172 strind = nextCharacter;
2179 tempHeight = read_integer (strind, &nextCharacter);
2180 if (strind == nextCharacter)
2182 strind = nextCharacter;
2191 tempX = -read_integer (strind, &nextCharacter);
2192 if (strind == nextCharacter)
2194 strind = nextCharacter;
2149 char *nextCharacter; local
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A Dmakeprop.pl195 char nextCharacter = *propertyNamePointer++;
196 if (!nextCharacter)
198 character = (propertyNamePointer - 2 != cssPropertyName) ? toASCIIUpper(nextCharacter) : nextCharacter;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/harfbuzz/
H A DHarfBuzzShaper.cpp423 UChar32 nextCharacter;
425 U16_NEXT(markCharactersEnd, nextCharacterLength, normalizedBufferEnd - markCharactersEnd, nextCharacter);
426 if (!(U_GET_GC_MASK(nextCharacter) & U_GC_M_MASK))
/macosx-10.10/WebCore-7600.1.25/platform/graphics/mac/
H A DComplexTextController.cpp281 UChar32 nextCharacter;
283 U16_NEXT(iterator, markLength, end - iterator, nextCharacter);
284 if (!(U_GET_GC_MASK(nextCharacter) & U_GC_M_MASK))
/macosx-10.10/WebCore-7600.1.25/rendering/line/
H A DBreakingContextInlineHeaders.h465 inline void nextCharacter(UChar& currentCharacter, UChar& lastCharacter, UChar& secondToLastCharacter) function in namespace:WebCore
697 nextCharacter(c, lastCharacter, secondToLastCharacter);
878 nextCharacter(c, lastCharacter, secondToLastCharacter);
/macosx-10.10/WebCore-7600.1.25/editing/
H A DTextIterator.cpp2161 UChar32 nextCharacter = 0; local
2163 U16_GET(m_buffer.data(), 0, offset, size, nextCharacter);
2164 if (!isASCIIUpper(nextCharacter) && !isASCIIDigit(nextCharacter) && !isSeparator(nextCharacter))

Completed in 198 milliseconds