OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:backrefnum
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Support/
regcomp.c
306
int
backrefnum
;
local
376
* matching group.
backrefnum
will hold the number. The matching
380
backrefnum
= c - '0';
381
if (p->pend[
backrefnum
] == 0) {
389
assert(
backrefnum
<= p->g->nsub);
390
EMIT(OBACK_,
backrefnum
);
391
assert(p->pbegin[
backrefnum
] != 0);
392
assert(OP(p->strip[p->pbegin[
backrefnum
]]) != OLPAREN);
393
assert(OP(p->strip[p->pend[
backrefnum
]]) != ORPAREN);
394
(void) dupl(p, p->pbegin[
backrefnum
]+1, p->pend[backrefnum])
[
all
...]
/external/llvm/utils/FileCheck/
FileCheck.cpp
130
void AddBackrefToRegEx(unsigned
BackrefNum
);
353
void Pattern::AddBackrefToRegEx(unsigned
BackrefNum
) {
354
assert(
BackrefNum
>= 1 &&
BackrefNum
<= 9 && "Invalid backref number");
356
std::string(1, '0' +
BackrefNum
);
[
all
...]
Completed in 62 milliseconds