Home
last modified time | relevance | path

Searched refs:nextCh (Results 1 – 25 of 236) sorted by relevance

12345678910

/dports/textproc/xerces-c3/xerces-c-3.2.3/src/xercesc/util/
H A DXMLChar.cpp4395 if ((nextCh >= 0xD800) && (nextCh <= 0xDB7F)) { in isValidNCName()
4397 if ((nextCh < 0xDC00) || (nextCh > 0xDFFF)) in isValidNCName()
4409 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in isValidNCName()
4467 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in isValidNmtoken()
4519 if ((nextCh >= 0xD800) && (nextCh <= 0xDB7F)) { in isValidName()
4521 if ((nextCh < 0xDC00) || (nextCh > 0xDFFF)) in isValidName()
4533 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in isValidName()
4580 if ((nextCh >= 0xD800) && (nextCh <= 0xDB7F)) in isValidName()
4583 if ((nextCh < 0xDC00) || (nextCh > 0xDFFF)) in isValidName()
4600 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in isValidName()
[all …]
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_dependencies/xerces-c/src/xercesc/util/
H A DXMLChar.cpp4399 if ((nextCh >= 0xD800) && (nextCh <= 0xDB7F)) { in isValidNCName()
4401 if ((nextCh < 0xDC00) || (nextCh > 0xDFFF)) in isValidNCName()
4413 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in isValidNCName()
4471 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in isValidNmtoken()
4523 if ((nextCh >= 0xD800) && (nextCh <= 0xDB7F)) { in isValidName()
4525 if ((nextCh < 0xDC00) || (nextCh > 0xDFFF)) in isValidName()
4537 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in isValidName()
4584 if ((nextCh >= 0xD800) && (nextCh <= 0xDB7F)) in isValidName()
4587 if ((nextCh < 0xDC00) || (nextCh > 0xDFFF)) in isValidName()
4604 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in isValidName()
[all …]
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/plugins/altium/
H A Daltium_rule_transformer.cpp47 wxUniChar nextCh = nextChar(); in Next() local
76 if( nextCh == '=' ) in Next()
81 else if( nextCh == '>' ) in Next()
94 if( nextCh == '=' ) in Next()
124 nextCh = nextChar(); in Next()
149 while( wxIsdigit( nextCh ) ) in Next()
151 digitString += nextCh; in Next()
152 nextCh = nextChar(); in Next()
164 while( wxIsalnum( nextCh ) ) in Next()
166 identString += nextCh; in Next()
[all …]
/dports/textproc/xerces-c3/xerces-c-3.2.3/src/xercesc/internal/
H A DWFXMLScanner.cpp808 if ((nextCh != chForwardSlash) && (nextCh != chCloseAngle)) in scanStartTag()
983 if (!nextCh) in scanStartTag()
1362 if (!nextCh) in scanStartTagNS()
1526 XMLCh nextCh; in scanAttValue() local
1567 else if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanAttValue()
1585 if ((nextCh >= 0xDC00) && (nextCh <= 0xDFFF)) in scanAttValue()
1718 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanCDSection()
1733 if ((nextCh >= 0xDC00) && (nextCh <= 0xDFFF)) in scanCDSection()
1795 XMLCh nextCh; in scanCharData() local
1844 else if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanCharData()
[all …]
H A DXMLScanner.cpp1151 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanPI()
1162 if ((nextCh < 0xDC00) || (nextCh > 0xDFFF)) in scanPI()
1892 XMLCh nextCh=0; in senseNextToken() local
1983 XMLCh nextCh; in getQuotedString() local
1990 if (!nextCh) in getQuotedString()
2027 if (!nextCh) in scanCharRef()
2040 if ((nextCh >= chDigit_0) && (nextCh <= chDigit_9)) in scanCharRef()
2042 else if ((nextCh >= chLatin_A) && (nextCh <= chLatin_F)) in scanCharRef()
2044 else if ((nextCh >= chLatin_a) && (nextCh <= chLatin_f)) in scanCharRef()
2154 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanComment()
[all …]
H A DDGXMLScanner.cpp1203 if ((nextCh != chForwardSlash) && (nextCh != chCloseAngle)) in scanStartTag()
1410 if (!nextCh) in scanStartTag()
2807 XMLCh nextCh; in scanAttValue() local
2850 else if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanAttValue()
2866 if ((nextCh >= 0xDC00) && (nextCh <= 0xDFFF)) in scanAttValue()
2913 if ((nextCh == 0x09) || (nextCh == 0x0A) || (nextCh == 0x0D)) in scanAttValue()
3090 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanCDSection()
3105 if ((nextCh >= 0xDC00) && (nextCh <= 0xDFFF)) in scanCDSection()
3167 XMLCh nextCh; in scanCharData() local
3221 else if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanCharData()
[all …]
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_dependencies/xerces-c/src/xercesc/internal/
H A DWFXMLScanner.cpp808 if ((nextCh != chForwardSlash) && (nextCh != chCloseAngle)) in scanStartTag()
983 if (!nextCh) in scanStartTag()
1137 if ((nextCh != chForwardSlash) && (nextCh != chCloseAngle)) in scanStartTagNS()
1526 XMLCh nextCh; in scanAttValue() local
1567 else if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanAttValue()
1585 if ((nextCh >= 0xDC00) && (nextCh <= 0xDFFF)) in scanAttValue()
1718 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanCDSection()
1733 if ((nextCh >= 0xDC00) && (nextCh <= 0xDFFF)) in scanCDSection()
1795 XMLCh nextCh; in scanCharData() local
1844 else if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanCharData()
[all …]
H A DXMLScanner.cpp1148 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanPI()
1159 if ((nextCh < 0xDC00) || (nextCh > 0xDFFF)) in scanPI()
1876 XMLCh nextCh=0; in senseNextToken() local
1967 XMLCh nextCh; in getQuotedString() local
1974 if (!nextCh) in getQuotedString()
2011 if (!nextCh) in scanCharRef()
2024 if ((nextCh >= chDigit_0) && (nextCh <= chDigit_9)) in scanCharRef()
2026 else if ((nextCh >= chLatin_A) && (nextCh <= chLatin_F)) in scanCharRef()
2028 else if ((nextCh >= chLatin_a) && (nextCh <= chLatin_f)) in scanCharRef()
2138 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanComment()
[all …]
/dports/textproc/xerces-c3/xerces-c-3.2.3/src/xercesc/validators/DTD/
H A DDTDScanner.cpp383 XMLCh nextCh; in getQuotedString() local
875 if ((nextCh == 0x09) || (nextCh == 0x0A) || (nextCh == 0x0D)) in scanAttValue()
970 if ((nextCh >= chDigit_0) && (nextCh <= chDigit_9)) in scanCharRef()
1443 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanComment()
1454 if ((nextCh < 0xDC00) || (nextCh > 0xDFFF)) in scanComment()
2222 else if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanEntityLiteral()
2233 if ((nextCh < 0xDC00) || (nextCh > 0xDFFF)) in scanEntityLiteral()
2880 else if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanIgnoredSection()
2895 if ((nextCh >= 0xDC00) && (nextCh <= 0xDFFF)) in scanIgnoredSection()
3633 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanPI()
[all …]
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_dependencies/xerces-c/src/xercesc/validators/DTD/
H A DDTDScanner.cpp381 XMLCh nextCh; in getQuotedString() local
815 else if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanAttValue()
873 if ((nextCh == 0x09) || (nextCh == 0x0A) || (nextCh == 0x0D)) in scanAttValue()
968 if ((nextCh >= chDigit_0) && (nextCh <= chDigit_9)) in scanCharRef()
1436 if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanComment()
1447 if ((nextCh < 0xDC00) || (nextCh > 0xDFFF)) in scanComment()
2214 else if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanEntityLiteral()
2225 if ((nextCh < 0xDC00) || (nextCh > 0xDFFF)) in scanEntityLiteral()
2864 else if ((nextCh >= 0xD800) && (nextCh <= 0xDBFF)) in scanIgnoredSection()
2879 if ((nextCh >= 0xDC00) && (nextCh <= 0xDFFF)) in scanIgnoredSection()
[all …]
/dports/multimedia/tvheadend/tvheadend-4.2.8/src/epggrab/support/
H A Dfreesat_huffman.c5772 char nextCh; in freesat_huffman_decode() local
5803 nextCh = STOP; in freesat_huffman_decode()
5808 nextCh = (value >> 24) & 0xff; in freesat_huffman_decode()
5810 if ((nextCh & 0x80) == 0) { in freesat_huffman_decode()
5811 if (nextCh < ' ') in freesat_huffman_decode()
5812 nextCh = STOP; in freesat_huffman_decode()
5813 lastch = nextCh; in freesat_huffman_decode()
5827 nextCh = fsat_table[j].next; in freesat_huffman_decode()
5830 lastch = nextCh; in freesat_huffman_decode()
5836 if (nextCh != STOP && nextCh != ESCAPE) { in freesat_huffman_decode()
[all …]
/dports/devel/liteide/liteide-x37.4/liteidex/src/3rdparty/qjson/src/
H A Djson_scanner.cpp229 char nextCh; in yylex() local
243 if ( prevCh == '\\' && nextCh != '"' && nextCh != '\\' && nextCh != '/' && in yylex()
244 nextCh != 'b' && nextCh != 'f' && nextCh != 'n' && in yylex()
245 nextCh != 'r' && nextCh != 't' && nextCh != 'u') { in yylex()
252 raw += nextCh; in yylex()
253 prevCh = nextCh; in yylex()
259 if (nextCh == '\\') { in yylex()
295 char nextCh; in yylex() local
296 qint64 ret = m_io->peek(&nextCh, 1); in yylex()
297 while (ret == 1 && isdigit(nextCh)) { in yylex()
[all …]
/dports/emulators/ppsspp/ppsspp-1.12.3/ext/glslang/glslang/MachineIndependent/preprocessor/
H A DPpScanner.cpp589 if (nextCh == 'l' || nextCh == 'L') { in scan()
596 nextCh = getch(); in scan()
597 if ((nextCh == 's' || nextCh == 'S') && in scan()
697 if (nextCh == 'l' || nextCh == 'L') { in scan()
705 if ((nextCh == 's' || nextCh == 'S') && in scan()
786 if (nextCh == 'l' || nextCh == 'L') { in scan()
794 if ((nextCh == 's' || nextCh == 'S') && in scan()
1055 if (nextCh >= '0' && nextCh <= '9') in scan()
1057 else if (nextCh >= 'A' && nextCh <= 'F') in scan()
1059 else if (nextCh >= 'a' && nextCh <= 'f') in scan()
[all …]
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/ext/glslang/glslang/MachineIndependent/preprocessor/
H A DPpScanner.cpp589 if (nextCh == 'l' || nextCh == 'L') { in scan()
596 nextCh = getch(); in scan()
597 if ((nextCh == 's' || nextCh == 'S') && in scan()
697 if (nextCh == 'l' || nextCh == 'L') { in scan()
705 if ((nextCh == 's' || nextCh == 'S') && in scan()
786 if (nextCh == 'l' || nextCh == 'L') { in scan()
794 if ((nextCh == 's' || nextCh == 'S') && in scan()
1055 if (nextCh >= '0' && nextCh <= '9') in scan()
1057 else if (nextCh >= 'A' && nextCh <= 'F') in scan()
1059 else if (nextCh >= 'a' && nextCh <= 'f') in scan()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/glslang/src/glslang/MachineIndependent/preprocessor/
H A DPpScanner.cpp589 if (nextCh == 'l' || nextCh == 'L') { in scan()
596 nextCh = getch(); in scan()
597 if ((nextCh == 's' || nextCh == 'S') && in scan()
697 if (nextCh == 'l' || nextCh == 'L') { in scan()
705 if ((nextCh == 's' || nextCh == 'S') && in scan()
786 if (nextCh == 'l' || nextCh == 'L') { in scan()
794 if ((nextCh == 's' || nextCh == 'S') && in scan()
1055 if (nextCh >= '0' && nextCh <= '9') in scan()
1057 else if (nextCh >= 'A' && nextCh <= 'F') in scan()
1059 else if (nextCh >= 'a' && nextCh <= 'f') in scan()
[all …]
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/ext/glslang/glslang/MachineIndependent/preprocessor/
H A DPpScanner.cpp589 if (nextCh == 'l' || nextCh == 'L') { in scan()
596 nextCh = getch(); in scan()
597 if ((nextCh == 's' || nextCh == 'S') && in scan()
697 if (nextCh == 'l' || nextCh == 'L') { in scan()
705 if ((nextCh == 's' || nextCh == 'S') && in scan()
786 if (nextCh == 'l' || nextCh == 'L') { in scan()
794 if ((nextCh == 's' || nextCh == 'S') && in scan()
1055 if (nextCh >= '0' && nextCh <= '9') in scan()
1057 else if (nextCh >= 'A' && nextCh <= 'F') in scan()
1059 else if (nextCh >= 'a' && nextCh <= 'f') in scan()
[all …]
/dports/graphics/waifu2x-ncnn-vulkan/waifu2x-ncnn-vulkan-20210521/src/ncnn/glslang/glslang/MachineIndependent/preprocessor/
H A DPpScanner.cpp589 if (nextCh == 'l' || nextCh == 'L') { in scan()
596 nextCh = getch(); in scan()
597 if ((nextCh == 's' || nextCh == 'S') && in scan()
697 if (nextCh == 'l' || nextCh == 'L') { in scan()
705 if ((nextCh == 's' || nextCh == 'S') && in scan()
786 if (nextCh == 'l' || nextCh == 'L') { in scan()
794 if ((nextCh == 's' || nextCh == 'S') && in scan()
1055 if (nextCh >= '0' && nextCh <= '9') in scan()
1057 else if (nextCh >= 'A' && nextCh <= 'F') in scan()
1059 else if (nextCh >= 'a' && nextCh <= 'f') in scan()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/glslang/src/glslang/MachineIndependent/preprocessor/
H A DPpScanner.cpp589 if (nextCh == 'l' || nextCh == 'L') { in scan()
596 nextCh = getch(); in scan()
597 if ((nextCh == 's' || nextCh == 'S') && in scan()
697 if (nextCh == 'l' || nextCh == 'L') { in scan()
705 if ((nextCh == 's' || nextCh == 'S') && in scan()
786 if (nextCh == 'l' || nextCh == 'L') { in scan()
794 if ((nextCh == 's' || nextCh == 'S') && in scan()
1055 if (nextCh >= '0' && nextCh <= '9') in scan()
1057 else if (nextCh >= 'A' && nextCh <= 'F') in scan()
1059 else if (nextCh >= 'a' && nextCh <= 'f') in scan()
[all …]
/dports/graphics/glslang/glslang-11.7.1/glslang/MachineIndependent/preprocessor/
H A DPpScanner.cpp589 if (nextCh == 'l' || nextCh == 'L') { in scan()
596 nextCh = getch(); in scan()
597 if ((nextCh == 's' || nextCh == 'S') && in scan()
697 if (nextCh == 'l' || nextCh == 'L') { in scan()
705 if ((nextCh == 's' || nextCh == 'S') && in scan()
786 if (nextCh == 'l' || nextCh == 'L') { in scan()
794 if ((nextCh == 's' || nextCh == 'S') && in scan()
1055 if (nextCh >= '0' && nextCh <= '9') in scan()
1057 else if (nextCh >= 'A' && nextCh <= 'F') in scan()
1059 else if (nextCh >= 'a' && nextCh <= 'f') in scan()
[all …]
/dports/benchmarks/vkpeak/vkpeak-20210430/ncnn/glslang/glslang/MachineIndependent/preprocessor/
H A DPpScanner.cpp589 if (nextCh == 'l' || nextCh == 'L') { in scan()
596 nextCh = getch(); in scan()
597 if ((nextCh == 's' || nextCh == 'S') && in scan()
697 if (nextCh == 'l' || nextCh == 'L') { in scan()
705 if ((nextCh == 's' || nextCh == 'S') && in scan()
786 if (nextCh == 'l' || nextCh == 'L') { in scan()
794 if ((nextCh == 's' || nextCh == 'S') && in scan()
1055 if (nextCh >= '0' && nextCh <= '9') in scan()
1057 else if (nextCh >= 'A' && nextCh <= 'F') in scan()
1059 else if (nextCh >= 'a' && nextCh <= 'f') in scan()
[all …]
/dports/graphics/realsr-ncnn-vulkan/realsr-ncnn-vulkan-20210210/src/ncnn/glslang/glslang/MachineIndependent/preprocessor/
H A DPpScanner.cpp589 if (nextCh == 'l' || nextCh == 'L') { in scan()
596 nextCh = getch(); in scan()
597 if ((nextCh == 's' || nextCh == 'S') && in scan()
697 if (nextCh == 'l' || nextCh == 'L') { in scan()
705 if ((nextCh == 's' || nextCh == 'S') && in scan()
786 if (nextCh == 'l' || nextCh == 'L') { in scan()
794 if ((nextCh == 's' || nextCh == 'S') && in scan()
1055 if (nextCh >= '0' && nextCh <= '9') in scan()
1057 else if (nextCh >= 'A' && nextCh <= 'F') in scan()
1059 else if (nextCh >= 'a' && nextCh <= 'f') in scan()
[all …]
/dports/www/gitea/gitea-1.16.5/vendor/github.com/blevesearch/bleve/v2/index/upsidedown/store/gtreap/
H A Diterator.go32 nextCh chan *Item member
67 nextCh := make(chan *Item, 1)
74 w.nextCh = nextCh
85 case nextCh <- itm.(*Item):
90 close(nextCh)
100 nextCh := w.nextCh
102 w.curr, w.currOk = <-nextCh
146 w.nextCh = nil
/dports/security/keybase/client-v5.7.1/go/vendor/github.com/blevesearch/bleve/index/store/gtreap/
H A Diterator.go32 nextCh chan *Item member
67 nextCh := make(chan *Item, 1)
74 w.nextCh = nextCh
85 case nextCh <- itm.(*Item):
90 close(nextCh)
100 nextCh := w.nextCh
102 w.curr, w.currOk = <-nextCh
146 w.nextCh = nil
/dports/www/mattermost-server/mattermost-server-6.0.2/vendor/github.com/blevesearch/bleve/index/store/gtreap/
H A Diterator.go32 nextCh chan *Item member
67 nextCh := make(chan *Item, 1)
74 w.nextCh = nextCh
85 case nextCh <- itm.(*Item):
90 close(nextCh)
100 nextCh := w.nextCh
102 w.curr, w.currOk = <-nextCh
146 w.nextCh = nil
/dports/audio/pms-devel/pms-c94e3c6/vendor/github.com/blevesearch/bleve/index/store/gtreap/
H A Diterator.go32 nextCh chan *Item
67 nextCh := make(chan *Item, 1)
74 w.nextCh = nextCh
85 case nextCh <- itm.(*Item):
90 close(nextCh)
100 nextCh := w.nextCh
102 w.curr, w.currOk = <-nextCh
146 w.nextCh = nil

12345678910