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

  /src/external/apache2/llvm/dist/llvm/lib/Option/
ArgList.cpp 40 OptRanges.insert(std::make_pair(O.getID(), emptyRange())).first->second;
59 OptRange R = emptyRange();
  /src/external/apache2/llvm/dist/llvm/include/llvm/Option/
ArgList.h 135 static OptRange emptyRange() { return {-1u, 0u}; }
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/range/
package.d 10008 auto emptyRange = only();
10010 alias EmptyRange = typeof(emptyRange);
10011 static assert(isInputRange!EmptyRange);
10012 static assert(isForwardRange!EmptyRange);
10013 static assert(isBidirectionalRange!EmptyRange);
10014 static assert(isRandomAccessRange!EmptyRange);
10015 static assert(hasLength!EmptyRange);
10016 static assert(hasSlicing!EmptyRange);
10018 assert(emptyRange.empty)
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/
interval.d 8404 auto emptyRange = Interval!Date(Date(2010, 9, 19), Date(2010, 9, 20)).fwdRange(
8407 (scope const IntervalRange!(Date, Direction.fwd) range){range.front;}(emptyRange));
8422 auto emptyRange = Interval!Date(Date(2010, 9, 19), Date(2010, 9, 20)).bwdRange(
8425 (scope const IntervalRange!(Date, Direction.bwd) range){range.front;}(emptyRange));
8449 auto emptyRange = Interval!Date(Date(2010, 9, 19), Date(2010, 9, 20)).fwdRange(
8451 assertThrown!DateTimeException((IntervalRange!(Date, Direction.fwd) range){range.popFront();}(emptyRange));
8471 auto emptyRange = Interval!Date(Date(2010, 9, 19), Date(2010, 9, 20)).bwdRange(
8473 assertThrown!DateTimeException((IntervalRange!(Date, Direction.bwd) range){range.popFront();}(emptyRange));
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
iteration.d 2640 int[] emptyRange = [];
2642 auto r1 = valInputRange(emptyRange).chunkBy!((a, b) => a == b);
2643 auto r2 = refInputRange(emptyRange).chunkBy!((a, b) => a == b);

Completed in 36 milliseconds