OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lastIndex
(Results
1 - 8
of
8
) sorted by relevancy
/src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
backtracking.d
97
@property bool atEnd(){ return index == s.
lastIndex
&& s.atEnd; }
102
index = s.
lastIndex
;
111
index = s.
lastIndex
;
337
writeln("Try match starting at ", s[index .. s.
lastIndex
]);
458
debug(std_regex_matcher) writefln("EOL (front 0x%x) %s", front, s[index .. s.
lastIndex
]);
760
pc, front, s[index .. s.
lastIndex
]);
779
writefln("Restored matches", front, s[index .. s.
lastIndex
]);
787
pc, front, s[index .. s.
lastIndex
]);
1405
debug(std_regex_matcher) writefln("EOL (front 0x%x) %s", front, s[index .. s.
lastIndex
]);
1480
debug(std_regex_matcher) writeln("Try CT matching starting at ",s[index .. s.
lastIndex
]);
[
all
...]
thompson.d
404
t.pc, s[index .. s.
lastIndex
], genCounter, merge[re.ir[t.pc + 1].raw + t.counter] );
411
t.pc, s[index .. s.
lastIndex
], genCounter, merge[re.ir[t.pc + 1].raw + t.counter] );
786
@property bool atEnd(){ return index == s.
lastIndex
&& s.atEnd; }
796
index = s.
lastIndex
;
809
index = s.
lastIndex
;
981
writefln("Threaded matching threads at %s", s[index .. s.
lastIndex
]);
1104
writefln("-- Threaded matching threads at %s", s[index .. s.
lastIndex
]);
ir.d
822
@property size_t
lastIndex
(){ return _origin.length; }
870
@property size_t
lastIndex
(){ return 0; }
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineVerifier.cpp
120
SlotIndex
lastIndex
;
566
lastIndex
= SlotIndex();
782
lastIndex
= Indexes->getMBBStartIdx(MBB);
790
if (!(idx >
lastIndex
)) {
792
errs() << "Last instruction was at " <<
lastIndex
<< '\n';
794
lastIndex
= idx;
2340
if (!(stop >
lastIndex
)) {
2343
<< " last instruction was at " <<
lastIndex
<< '\n';
2345
lastIndex
= stop;
/src/external/gpl3/gcc.old/dist/gcc/d/dmd/
dinterpret.d
3373
Expression
lastIndex
= null;
3405
lastIndex
= interpretRegion(e1.isIndexExp().e2, istate);
3406
lastIndex
= resolveSlice(
lastIndex
); // only happens with AA assignment
3407
if (exceptionOrCant(
lastIndex
))
3445
oldval = findKeyInAA(e.loc, existingAA,
lastIndex
);
3481
lastIndex
= ekey;
3495
assert(existingAA &&
lastIndex
);
3539
lastIndex
= ie.e2;
3639
//printf("\t+L%d existingAA = %s,
lastIndex
= %s, oldval = %s, newval = %s\n"
[
all
...]
/src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
searching.d
2033
immutable
lastIndex
= needleLength - 1;
2034
auto last = needle[
lastIndex
];
2035
size_t j =
lastIndex
, skip = 0;
2043
immutable k = j -
lastIndex
;
2047
if (i ==
lastIndex
)
iteration.d
5441
immutable
lastIndex
= lastIndexOf(_input, _separator);
5442
if (
lastIndex
== -1)
5448
_backLength = _input.length -
lastIndex
- 1;
5457
immutable
lastIndex
= lastIndexOf(_input, _separator);
5458
if (
lastIndex
== -1)
5464
_backLength = _input.length -
lastIndex
- 1;
/src/external/gpl3/gcc.old/dist/libphobos/src/std/
string.d
1623
enum
lastIndex
= "aa".lastIndexOf("ab");
1624
assert(
lastIndex
== -1);
1629
enum
lastIndex
= "hello hello hell h".lastIndexOf("hello");
1630
assert(
lastIndex
== 6);
Completed in 34 milliseconds
Indexes created Sun Jun 07 00:24:08 UTC 2026