/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/ |
H A D | parser.d | 200 auto caseEnclose(CodepointSet set) in caseEnclose() 214 @trusted CodepointSet getUnicodeSet(in char[] name, bool negated, bool casefold) in getUnicodeSet() 216 CodepointSet s = unicode(name); in getUnicodeSet() 261 CodepointSet[] charsets; // sets for char classes 306 @trusted void charsetToIr(CodepointSet set) in charsetToIr() 333 put(Bytecode(IR.CodepointSet, cast(uint) n)); in charsetToIr() 345 put(Bytecode(IR.CodepointSet, cast(uint) charsets.length)); in charsetToIr() 945 CodepointSet set; in parseAtom() 998 Tuple!(CodepointSet,Operator) parseCharTerm() 1004 CodepointSet set; [all …]
|
H A D | ir.d | 29 CharMatcher[CodepointSet] matcherCache; 32 @trusted CharMatcher getMatcher(CodepointSet set) in getMatcher() 66 @property CodepointSet wordCharacter() in wordCharacter() 119 CodepointSet = 0b1_00010_00, //a most generic CodepointSet [...] 434 case IR.Backref: case IR.CodepointSet: case IR.Trie: 464 CodepointSet[] charsets; // in Regex() 747 this(CodepointSet set){ in this() 774 this(CodepointSet set) in this()
|
H A D | generator.d | 58 case IR.CodepointSet: in SampleGenerator() 64 pc += IRL!(IR.CodepointSet); in SampleGenerator()
|
H A D | backtracking.d | 346 case IR.CodepointSet: in BacktrackingMatcher() 350 pc += IRL!(IR.CodepointSet); in BacktrackingMatcher() 808 CodepointSet[] charsets; 1281 case IR.CodepointSet: 1302 goto case IR.CodepointSet;
|
H A D | thompson.d | 637 static bool op(IR code:IR.CodepointSet)(E* e, S* state) 643 t.pc += IRL!(IR.CodepointSet); in with() 680 if (code == IR.Char || code == IR.OrChar || code == IR.CodepointSet 706 if (code != IR.Char && code != IR.OrChar && code != IR.CodepointSet
|
H A D | kickstart.d | 227 case IR.CodepointSet: in ShiftOr() 274 auto tx = fork(t, t.pc + IRL!(IR.CodepointSet), t.counter); in ShiftOr()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/ |
H A D | parser.d | 180 CodepointSet[] charsets; // sets for char classes 225 @trusted void charsetToIr(CodepointSet set) in charsetToIr() 252 put(Bytecode(IR.CodepointSet, cast(uint) n)); in charsetToIr() 264 put(Bytecode(IR.CodepointSet, cast(uint) charsets.length)); in charsetToIr() 850 CodepointSet set; in parseAtom() 1147 CodepointSet nextSet(uint idx) in optimize() 1149 CodepointSet set; in optimize() 1160 case Trie, CodepointSet: in optimize()
|
H A D | ir.d | 29 CharMatcher[CodepointSet] matcherCache; 32 @trusted CharMatcher getMatcher(CodepointSet set) in getMatcher() 110 CodepointSet = 0b1_00010_00, //a most generic CodepointSet [...] 437 case IR.Backref: case IR.CodepointSet: case IR.Trie: 627 CodepointSet[] charsets; // in Regex() 940 this(CodepointSet set){ in this() 967 this(CodepointSet set) in this()
|
H A D | generator.d | 58 case IR.CodepointSet: in SampleGenerator() 64 pc += IRL!(IR.CodepointSet); in SampleGenerator()
|
H A D | backtracking.d | 374 case IR.CodepointSet: in matchImpl() 378 pc += IRL!(IR.CodepointSet); in matchImpl() 1305 case IR.CodepointSet: in ctAtomCode() 1309 string funcCode = CodepointSet.toSourceCode(charsets[ir[0].data], name); in ctAtomCode() 1326 goto case IR.CodepointSet; in ctAtomCode()
|
H A D | thompson.d | 635 static bool op(IR code:IR.CodepointSet)(E e, S* state) 641 t.pc += IRL!(IR.CodepointSet); in with() 678 if (code == IR.Char || code == IR.OrChar || code == IR.CodepointSet 704 if (code != IR.Char && code != IR.OrChar && code != IR.CodepointSet
|
H A D | kickstart.d | 227 case IR.CodepointSet: in ShiftOr() 274 auto tx = fork(t, t.pc + IRL!(IR.CodepointSet), t.counter); in ShiftOr()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/uni/ |
H A D | package.d | 141 $(LREF CodepointSet), a type for easy manipulation of sets of characters. 1960 public alias CodepointSet = InversionList!GcPolicy; variable 2141 auto set = CodepointSet('a', 'z'+1, 'а', 'я'+1); 2148 auto set2 = CodepointSet('а', 'я'+1, 'a', 'd', 'b', 'z'+1); 2154 auto set3 = CodepointSet([chessPiecesWhite, chessPiecesBlack]); 2175 auto set = CodepointSet('A', 'D'+1, 'a', 'd'+1); 2510 CodepointSet someSet; 2773 CodepointSet emptySet; 3576 auto c1 = CodepointSet('а', 'я'+1, 'А','Я'+1); 3581 assert(CodepointSet(1000, 1006, 1006, 1009) [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | uni.d | 140 $(LREF CodepointSet), a type for easy manipulation of sets of characters. 1992 public alias CodepointSet = InversionList!GcPolicy; variable 2173 auto set = CodepointSet('a', 'z'+1, 'а', 'я'+1); 2180 auto set2 = CodepointSet('а', 'я'+1, 'a', 'd', 'b', 'z'+1); 2528 CodepointSet someSet; 2786 CodepointSet emptySet; 3587 auto c1 = CodepointSet('а', 'я'+1, 'А','Я'+1); 3592 assert(CodepointSet(1000, 1006, 1006, 1009) 3595 assert(CodepointSet(900, 1200, 1000, 1100) 3598 assert(CodepointSet(900, 1100, 1000, 1200) [all …]
|