HomeSort by relevance Sort by last modified time
    Searched refs:overlaps (Results 1 - 25 of 29) sorted by null

1 2

  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
FileLockTest.java 146 * @tests java.nio.channels.FileLock#overlaps(long, long)
149 assertTrue(mockLock.overlaps(0, 11));
150 assertFalse(mockLock.overlaps(0, 10));
151 assertTrue(mockLock.overlaps(100, 110));
152 assertTrue(mockLock.overlaps(99, 110));
153 assertFalse(mockLock.overlaps(-1, 10));
155 assertTrue(mockLock.overlaps(1, 120));
156 assertTrue(mockLock.overlaps(20, 50));
  /external/webkit/Source/WebCore/platform/graphics/gpu/
PODInterval.h 105 bool overlaps(const T& low, const T& high) const function in class:WebCore::PODInterval
114 bool overlaps(const PODInterval& other) const function in class:WebCore::PODInterval
116 return overlaps(other.low(), other.high());
LoopBlinnPathProcessor.cpp 544 // Run plane-sweep algorithm to determine overlaps of control point
781 Vector<IntervalType> overlaps = tree.allOverlaps(tree.createInterval(seg->getPoint(0).y(), local
786 if (overlaps.size() != slowOverlaps.size()) {
788 LOG_ERROR(" overlaps:");
789 for (size_t i = 0; i < overlaps.size(); i++)
790 LOG_ERROR(" %d: %s", i+1, overlaps[i].data()->toString().ascii().data());
797 ASSERT(overlaps.size() == slowOverlaps.size());
799 for (Vector<IntervalType>::iterator iter = overlaps.begin(); iter != overlaps.end(); ++iter) {
817 break; // Abort iteration over overlaps
972 Vector<SweepInterval> overlaps; local
    [all...]
PODIntervalTree.h 112 // Starting from the given node, adds all overlaps with the given
132 if (node->data().overlaps(interval))
  /external/llvm/include/llvm/CodeGen/
MachineLoopRanges.h 55 /// overlaps - Return true if this loop overlaps the given range of machine
57 bool overlaps(SlotIndex Start, SlotIndex Stop);
LiveInterval.h 439 /// overlaps - Return true if the intersection of the two live intervals is
441 bool overlaps(const LiveInterval& other) const {
447 /// overlaps - Return true if the live interval overlaps a range specified
449 bool overlaps(SlotIndex Start, SlotIndex End) const;
  /libcore/luni/src/main/java/java/nio/channels/
FileLock.java 36 * overlaps(long, long)}) method. Locks held in other processes may overlap
148 * Indicates if the receiver's lock region overlaps the region described
157 public final boolean overlaps(long start, long length) { method in class:FileLock
  /external/webkit/Source/WebKit/chromium/tests/
PODIntervalTreeTest.cpp 161 Vector<PODInterval<float, UserData1> > overlaps = tree.allOverlaps(tree.createInterval(3, 5, data1)); local
162 EXPECT_EQ(1U, overlaps.size());
163 EXPECT_EQ(5, overlaps[0].data().a);
164 EXPECT_EQ(6, overlaps[0].data().b);
  /external/llvm/lib/CodeGen/
MachineLoopRanges.cpp 70 /// overlaps - Return true if this loop overlaps the given range of machine
72 bool MachineLoopRange::overlaps(SlotIndex Start, SlotIndex Stop) { function in class:MachineLoopRange
RegAllocPBQP.cpp 246 if (!vregLI->overlaps(*pregLI)) {
298 if (l1.overlaps(l2)) {
LiveInterval.cpp 66 // overlaps - Return true if the intersection of the two live intervals is
69 // An example for overlaps():
81 // A->overlaps(C) should return false since we want to be able to join
125 /// overlaps - Return true if the live interval overlaps a range specified
127 bool LiveInterval::overlaps(SlotIndex Start, SlotIndex End) const { function in class:LiveInterval
StackSlotColoring.cpp 238 /// OverlapWithAssignments - Return true if LiveInterval overlaps with any
245 if (OtherLI->overlaps(*li))
RegisterCoalescer.cpp 496 if (LIS->hasInterval(*AS) && IntA.overlaps(LIS->getInterval(*AS))) {
727 // If ALR and BLR overlaps and end of BLR extends beyond end of ALR, e.g.
    [all...]
  /external/valgrind/main/coregrind/
m_transtab.c 1129 Bool overlaps ( Addr64 start, ULong range, VexGuestExtents* vge ) function
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 1205 private static boolean overlaps(int startOffset, int endOffset, method in class:VisualRefactoring
    [all...]
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 541 if (existingLock.overlaps(lock.position(), lock.size())) {
  /external/v8/src/
liveedit-debugger.js 636 "Text diff overlaps with function boundary";
649 "Text diff overlaps with function boundary";
    [all...]
  /external/chromium/chrome/browser/resources/
new_new_tab.js 908 // If the content overlaps with the attribution, we bump its opacity down.
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java     [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/15/
android.jar 
  /prebuilt/sdk/5/
android.jar 

Completed in 3596 milliseconds

1 2