HomeSort by: relevance | last modified time | path
    Searched refs:Backref (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
ir.d 124 Backref = 0b1_01011_00, //backreference to a group (that has to be pinned, i.e. locally unique) (group index)
308 assert(code == IR.Backref);
315 assert(code == IR.Backref);
437 case IR.Backref: case IR.CodepointSet: case IR.Trie:
440 if (irb[pc].code == IR.Backref)
thompson.d 22 uint uopCounter; //counts micro operations inside one macro instruction (e.g. BackRef)
472 static bool op(IR code:IR.Backref)(E e, S* state)
479 if (source[n].begin == source[n].end)//zero-width Backref!
481 t.pc += IRL!(IR.Backref);
495 t.pc += IRL!(IR.Backref);
684 // special case of zero-width backref
685 static bool op(IR code:IR.Backref)(E e, S* state)
692 if (source[n].begin == source[n].end)//zero-width Backref!
694 t.pc += IRL!(IR.Backref);
705 && code != IR.Trie && code != IR.Char && code != IR.Any && code != IR.Backref)
    [all...]
parser.d 182 uint[] backrefed; // bitarray for groups refered by backref
971 enforce(nref < maxBackref, "Backref to unseen group");
982 enforce(!g.isOpenGroup(nref), "Backref to open group");
986 g.put(Bytecode(IR.Backref, nref-localLimit));
990 g.put(Bytecode(IR.Backref, nref));
backtracking.d 68 //local slice of matches, global for backref
663 case IR.Backref:
1226 else if (ir[pc].code == IR.Backref)
1437 case IR.Backref:
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
dmangle.d 241 Backref backref;
246 this.backref = Backref(rootType);
256 if (!backref.addRefToType(buf, t))
262 if (!backref.addRefToIdentifier(buf, id))
1056 private struct Backref
1080 * function type as backref cache key to avoid missed backrefs.
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheck.cpp 1218 assert(BackrefNum >= 1 && BackrefNum <= 9 && "Invalid backref number");
1219 std::string Backref = std::string("\\") + std::string(1, '0' + BackrefNum);
1220 RegExStr += Backref;

Completed in 57 milliseconds