Searched refs:currentChar (Results 1 - 19 of 19) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_4/Regress/
H A Dfunction-003.js51 for ( var currentChar = 0, strippedString="";
52 currentChar < s.length; currentChar++ )
54 if (!IsWhiteSpace(s.charAt(currentChar))) {
55 strippedString += s.charAt(currentChar);
H A Dfunction-002.js98 for ( var currentChar = 0; currentChar < s.length; currentChar++ ) {
99 if (!IsWhiteSpace(s.charAt(currentChar))) {
100 strippedString += s.charAt(currentChar);
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/generic/
H A DxotclUtil.c56 char newch, *currentChar; local
58 currentChar = iss->buffer + iss->bufSize - 2;
59 newch = *(alphabet + chartable[(unsigned)*currentChar]);
63 *currentChar = newch;
66 *currentChar = *alphabet; /* use first char from alphabet */
67 currentChar--;
68 assert(currentChar >= iss->buffer);
70 newch = *(alphabet + chartable[(unsigned)*currentChar]);
71 if (currentChar < iss->start) {
73 if (currentChar
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFUnicodePrecomposition.c162 UTF32Char currentChar = 0, lastChar = 0, precomposedChar = 0xFFFD; local
172 currentChar = *(characters++);
175 if (CFUniCharIsSurrogateHighCharacter(currentChar) && (length > 0) && CFUniCharIsSurrogateLowCharacter(*characters)) {
176 currentChar = CFUniCharGetLongCharacterForSurrogatePair(currentChar, *(characters++));
180 if (lastChar && __CFUniCharIsNonBaseCharacter(currentChar)) {
184 currentClass = (currentChar > 0xFFFF ? CFUniCharGetUnicodeProperty(currentChar, kCFUniCharCombiningProperty) : CFUniCharGetCombiningPropertyForCharacter(currentChar, __CFUniCharCombiningClassForBMP));
187 if ((precomposedChar = CFUniCharPrecomposeCharacter(lastChar, currentChar))
[all...]
H A DCFUnicodeDecomposition.c232 UTF32Char currentChar; local
237 currentChar = *(src++);
239 if (currentChar < 0x80) {
250 case kCFUniCharUTF8Format: *(uint8_t *)dst = currentChar; dst = (uint8_t *)dst + sizeof(uint8_t); break;
251 case kCFUniCharUTF16Format: *(UTF16Char *)dst = currentChar; dst = (uint8_t *)dst + sizeof(UTF16Char); break;
252 case kCFUniCharUTF32Format: *(UTF32Char *)dst = currentChar; dst = (uint8_t *)dst + sizeof(UTF32Char); break;
259 if (CFUniCharIsSurrogateLowCharacter(currentChar)) { // Stray surrogagte
261 } else if (CFUniCharIsSurrogateHighCharacter(currentChar)) {
263 currentChar = CFUniCharGetLongCharacterForSurrogatePair(currentChar, *(sr
329 UTF32Char currentChar; local
361 UTF32Char currentChar; local
[all...]
H A DCFUniChar.c1037 UTF32Char currentChar; local
1041 currentChar = *(buffer)++;
1042 if (CFUniCharIsSurrogateHighCharacter(currentChar) && (length > 0) && CFUniCharIsSurrogateLowCharacter(*(buffer + 1))) {
1043 currentChar = CFUniCharGetLongCharacterForSurrogatePair(currentChar, *(buffer++));
1046 if (!CFUniCharIsMemberOf(currentChar, kCFUniCharNonBaseCharacterSet)) break;
1048 property = CFUniCharGetCombiningPropertyForCharacter(currentChar, (const uint8_t *)CFUniCharGetUnicodePropertyDataForPlane(kCFUniCharCombiningProperty, (currentChar >> 16) & 0xFF));
1056 UTF32Char currentChar = 0; local
1066 currentChar
1314 UTF32Char currentChar; local
[all...]
H A DCFString.c4474 UTF32Char currentChar; local
4484 currentChar = CFUniCharGetLongCharacterForSurrogatePair(contents[currentIndex], contents[currentIndex + 1]);
4486 currentChar = contents[currentIndex];
4488 flags = ((langCode || (currentChar == 0x03A3)) ? CFUniCharGetConditionalCaseMappingFlags(currentChar, contents, currentIndex, length, kCFUniCharToLowercase, langCode, flags) : 0);
4490 mappedLength = CFUniCharMapCaseTo(currentChar, mappedCharacters, MAX_CASE_MAPPING_BUF, kCFUniCharToLowercase, flags, langCode);
4493 if (currentChar > 0xFFFF) { // Non-BMP char
4565 UTF32Char currentChar; local
4574 currentChar = CFUniCharGetLongCharacterForSurrogatePair(contents[currentIndex], contents[currentIndex + 1]);
4576 currentChar
4667 UTF32Char currentChar; local
4756 UTF32Char currentChar; local
4805 UTF32Char currentChar; local
[all...]
H A DCFXMLInputStream.h53 UniChar *currentChar; // pointer into charBuffer at the current stream location. MUST be NULL if there are no more characters in charBuffer to consume. member in struct:__CFXMLInputStream
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DInputStreamPreprocessor.h56 m_nextInputCharacter = source.currentChar();
91 ASSERT(m_nextInputCharacter == source.currentChar());
98 m_nextInputCharacter = source.currentChar();
114 m_nextInputCharacter = source.currentChar();
H A DHTMLSourceTracker.cpp74 source.append(m_previousSource.currentChar());
79 source.append(m_currentSource.currentChar());
H A DHTMLEntityParser.cpp78 cc = source.currentChar();
105 cc = source.currentChar();
111 cc = source.currentChar();
H A DXSSAuditor.cpp603 UChar currentChar = decodedSnippet[currentLength]; local
604 if (currentChar == '?'
605 || currentChar == '#'
606 || ((currentChar == '/' || currentChar == '\\') && (commaSeen || ++slashCount > 2))
607 || (currentChar == '<' && commaSeen)) {
611 if (currentChar == ',')
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DSegmentedString.h258 ASSERT_UNUSED(expectedCharacter, currentChar() == expectedCharacter);
264 ASSERT_UNUSED(expectedCharacter, WTF::Unicode::foldCase(currentChar()) == WTF::Unicode::foldCase(expectedCharacter));
270 ASSERT(currentChar() != '\n');
276 ASSERT(currentChar() == '\n');
308 UChar currentChar() const { return m_currentChar; } function in class:WebCore::SegmentedString
H A DSegmentedString.cpp235 consumedCharacters[i] = currentChar();
/macosx-10.9.5/xnu-2422.115.4/libkern/c++/
H A DOSUnserialize.y219 #define currentChar() (parseBuffer[parseBufferIndex])
247 c = currentChar();
271 if (currentChar() != 'f') return SYNTAX_ERROR;
H A DOSUnserializeXML.y348 #define currentChar() (state->parseBuffer[state->parseBufferIndex])
367 int c = currentChar();
487 int c = currentChar();
564 int c = currentChar();
629 int c = currentChar();
675 c = currentChar();
736 c = currentChar();
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DIndicReordering.cpp1201 LEUnicode currentChar; local
1213 for ( currentChar = classTable->firstChar ; currentChar <= classTable->lastChar ; currentChar++ ) {
1214 if ( classTable->isVirama(currentChar)) {
1215 virama = currentChar;
1221 for ( currentChar = classTable->firstChar ; currentChar <= classTable->lastChar ; currentChar++ ) {
1222 if ( classTable->isConsonant(currentChar)) {
[all...]
/macosx-10.9.5/IOKitUser-907.100.13/
H A DIOCFUnserialize.yacc266 #define currentChar() (state->parseBuffer[state->parseBufferIndex])
285 int c = currentChar();
405 int c = currentChar();
482 int c = currentChar();
547 int c = currentChar();
598 c = currentChar();
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DFTPDirectoryDocument.cpp366 UChar c = str.currentChar();

Completed in 258 milliseconds