Searched refs:nextChar (Results 1 - 19 of 19) sorted by path

/macosx-10.9.5/AppleUSBIrDA-145.2.4/IrDA/Stack/
H A DIrLAP.cpp4117 UByte nextChar; local
4121 nextChar = fCtrlBuf[fCtrlBufPos++];
4124 nextChar = fDataBuf->Get();
4129 nextChar = 0xFF;
4132 return nextChar;
/macosx-10.9.5/CF-855.17/
H A DCFString.c4922 UTF32Char nextChar; local
4933 nextChar = mappedCharacters[consumedLength];
4934 currentClass = CFUniCharGetCombiningPropertyForCharacter(nextChar, (const uint8_t *)((nextChar < 0x10000) ? combiningBMP : CFUniCharGetUnicodePropertyDataForPlane(kCFUniCharCombiningProperty, (nextChar >> 16))));
4941 SInt16 vIndex = nextChar - HANGUL_VBASE;
4974 if (!CFUniCharIsMemberOfBitmap(nextChar, ((nextChar < 0x10000) ? nonBaseBMP : CFUniCharGetBitmapPtrForPlane(kCFUniCharNonBaseCharacterSet, (nextChar >> 16))))) {
4977 currentChar = nextChar;
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Drbbiscan.cpp830 // nextChar for rules scanning. At this level, we handle stripping
835 void RBBIRuleScanner::nextChar(RBBIRuleChar &c) {
837 // Unicode Character constants needed for the processing done by nextChar(),
850 c.fChar = nextCharLL(); // get nextChar officially so character counts
929 nextChar(fC);
1031 nextChar(fC);
H A Drbbiscan.h64 void nextChar(RBBIRuleChar &c); // Get the next char from the input stream.
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dcsrmbcs.cpp205 while (nextChar(&iter, det)) {
316 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) const { function in class:CharsetRecog_sjis
369 UBool CharsetRecog_euc::nextChar(IteratedChar* it, InputText* det) const { function in class:CharsetRecog_euc
490 UBool CharsetRecog_big5::nextChar(IteratedChar* it, InputText* det) const function in class:CharsetRecog_big5
546 UBool CharsetRecog_gb_18030::nextChar(IteratedChar* it, InputText* det) const { function in class:CharsetRecog_gb_18030
H A Dcsrmbcs.h21 // by providing a nextChar() function that fills in an instance of IteratedChar
95 virtual UBool nextChar(IteratedChar *it, InputText *textIn) const = 0;
108 UBool nextChar(IteratedChar *it, InputText *det) const;
139 UBool nextChar(IteratedChar *it, InputText *det) const;
182 UBool nextChar(IteratedChar* it, InputText* det) const;
201 UBool nextChar(IteratedChar* it, InputText* det) const;
H A Dregexcmp.cpp156 nextChar(fC); // Fetch the first char from the pattern string.
251 nextChar(fC);
3669 // nextChar for pattern scanning. At this level, we handle stripping
3674 void RegexCompile::nextChar(RegexPatternChar &c) {
3686 nextChar(c); // recurse to get the real next char
3805 nextChar(c); // recurse to get the real next char.
3843 nextChar(fC);
3851 nextChar(fC);
3878 nextChar(fC); // Continue overall regex pattern processing with char after the '}'
3904 nextChar(f
[all...]
H A Dregexcmp.h62 void nextChar(RegexPatternChar &c); // Get the next char from the input stream.
H A Ducol.cpp3338 UChar nextChar; local
3340 if(U_IS_TRAIL(nextChar = (UChar)source->iterator->current(source->iterator))) {
3341 cp = U16_GET_SUPPLEMENTARY(ch, nextChar);
3346 U_IS_TRAIL((nextChar=*source->pos))) {
3347 cp = U16_GET_SUPPLEMENTARY(ch, nextChar);
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Drbbitst.cpp2682 virtual void rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar);
2873 void RBBILineMonkey::rule9Adjust(int32_t pos, UChar32 *posChar, int32_t *nextPos, UChar32 *nextChar) { argument
2888 *nextChar = fText->char32At(nPos);
2889 if (!fCM->contains(*nextChar)) {
2905 // Push the updated nextPos and nextChar back to our caller.
2909 *nextChar = fText->char32At(nPos);
/macosx-10.9.5/ICU-511.35/icuSources/tools/genrb/
H A Drle.c298 UBool nextChar = TRUE; local
328 * current character in 'c' and uses the boolean 'nextChar'
332 if (nextChar) {
335 nextChar = FALSE;
339 nextChar = TRUE;
/macosx-10.9.5/IOKitUser-907.100.13/
H A DIOCFUnserialize.yacc267 #define nextChar() (state->parseBuffer[++state->parseBufferIndex])
291 c = nextChar(); // skip '<'
297 c = nextChar();
298 bool isComment = (c == '-') && ((c = nextChar()) != 0) && (c == '-');
301 while (c && (c = nextChar()) != 0) {
305 c = nextChar();
307 c = nextChar();
310 (void)nextChar();
322 while ((c = nextChar()) != 0) {
325 c = nextChar();
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/track/
H A DWebVTTParser.cpp283 char nextChar = line[position++]; local
284 if (nextChar != ' ' && nextChar != '\t')
294 nextChar = line[position++];
295 if (nextChar != ' ' && nextChar != '\t')
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Dclosebrackets.js42 var line = cm.getLine(cur.line), nextChar = line.charAt(cur.ch);
43 if (line.length == cur.ch || closingBrackets.indexOf(nextChar) >= 0 || SPACE_CHAR_REGEX.test(nextChar))
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderBlockLineLayout.cpp2620 UChar nextChar = nextText->characterAt(0); local
2621 if (nextText->style()->isCollapsibleWhiteSpace(nextChar)) {
/macosx-10.9.5/modemccl-25.1/CCLEngine/
H A DCCLEngine.c264 void ReceiveMatchData(u_int8_t nextChar);
2902 void ReceiveMatchData(u_int8_t nextChar) argument
2908 fprintf(stderr, "%c", nextChar);
2912 if ((matchIndex = MatchFind(nextChar)) != 0) {
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/ctext/
H A Dctext.tcl436 set nextChar [$self._t get $insertPos]
461 append REData $nextChar
/macosx-10.9.5/xnu-2422.115.4/libkern/c++/
H A DOSUnserialize.y220 #define nextChar() (parseBuffer[++parseBufferIndex])
250 if (isSpace(c)) while ((c = nextChar()) != 0 && isSpace(c)) {};
253 if (c == '#') while ((c = nextChar()) != 0 && c != '\n') {};
258 (void)nextChar();
265 if (nextChar() == 't') {
266 if (nextChar() != 'r') return SYNTAX_ERROR;
267 if (nextChar() != 'u') return SYNTAX_ERROR;
268 if (nextChar() != 'e') return SYNTAX_ERROR;
272 if (nextChar() != 'a') return SYNTAX_ERROR;
273 if (nextChar() !
[all...]
H A DOSUnserializeXML.y349 #define nextChar() (state->parseBuffer[++state->parseBufferIndex])
373 c = nextChar(); // skip '<'
379 c = nextChar();
380 bool isComment = (c == '-') && ((c = nextChar()) != 0) && (c == '-');
383 while (c && (c = nextChar()) != 0) {
387 c = nextChar();
389 c = nextChar();
392 (void)nextChar();
404 while ((c = nextChar()) != 0) {
407 c = nextChar();
[all...]

Completed in 486 milliseconds