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

1 2

  /external/skia/src/core/
SkTSort.h 44 void SkTHeapSort_SiftUp(T array[], size_t root, size_t bottom, C lessThan) {
49 if (j < bottom && lessThan(array[j-1], array[j])) {
58 if (lessThan(array[j-1], x)) {
78 void SkTHeapSort_SiftDown(T array[], size_t root, size_t bottom, C lessThan) {
82 if (child < bottom && lessThan(array[child-1], array[child])) {
85 if (lessThan(x, array[child-1])) {
96 /** Sorts the array of size count using comparator lessThan using a Heap Sort algorithm
100 * @param lessThan a functor with bool operator()(T a, T b) which returns true if a comes before b.
102 template <typename T, typename C> void SkTHeapSort(T array[], size_t count, C lessThan) {
104 SkTHeapSort_SiftDown(array, i, count, lessThan);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Lt.java 47 return left.lessThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
  /external/webkit/Source/WebKit/chromium/public/
WebNotification.h 67 WEBKIT_API bool lessThan(const WebNotification& other) const;
122 return a.lessThan(b);
WebNode.h 66 WEBKIT_API bool lessThan(const WebNode&) const;
160 return a.lessThan(b);
  /external/javassist/src/main/javassist/bytecode/
CodeAttribute.java 479 * @param lessThan If the index of the local variable is
485 private static void shiftIndex(CodeIterator ci, int lessThan, int delta) throws BadBytecode {
493 shiftIndex8(ci, index, opcode, lessThan, delta);
497 shiftIndex0(ci, index, opcode, lessThan, delta, ILOAD_0, ILOAD);
503 shiftIndex8(ci, index, opcode, lessThan, delta);
507 shiftIndex0(ci, index, opcode, lessThan, delta, ISTORE_0, ISTORE);
512 if (var < lessThan)
528 shiftIndex8(ci, index, opcode, lessThan, delta);
531 if (var < lessThan)
540 int lessThan, int delta
    [all...]
LocalVariableAttribute.java 135 * @param lessThan the index does not change if it
138 public void shiftIndex(int lessThan, int delta) {
142 if (org >= lessThan)
  /external/proguard/src/proguard/evaluation/value/
IntegerValue.java 209 public abstract int lessThan(IntegerValue other);
245 return -lessThan(other);
445 public int lessThan(UnknownIntegerValue other)
447 return lessThan((IntegerValue)other);
489 return -lessThan(other);
689 public int lessThan(SpecificIntegerValue other)
691 return lessThan((IntegerValue)other);
733 return -lessThan(other);
933 public int lessThan(ParticularIntegerValue other)
935 return lessThan((SpecificIntegerValue)other)
    [all...]
UnknownIntegerValue.java 186 public int lessThan(IntegerValue other)
ParticularIntegerValue.java 216 public int lessThan(IntegerValue other)
344 public int lessThan(ParticularIntegerValue other)
SpecificIntegerValue.java 184 public int lessThan(IntegerValue other)
322 public int lessThan(SpecificIntegerValue other)
  /external/icu4c/common/
stringtriebuilder.cpp 135 int32_t lessThan[kMaxSplitBranchLevels];
143 lessThan[ltLength]=writeBranchSubNode(start, i, unitIndex, length/2);
196 writeDeltaTo(lessThan[ltLength]);
264 Node *lessThan[kMaxSplitBranchLevels];
272 lessThan[ltLength]=makeBranchSubNode(start, i, unitIndex, length/2, errorCode);
311 new SplitBranchNode(middleUnits[ltLength], lessThan[ltLength], node), errorCode);
564 return unit==o.unit && lessThan==o.lessThan && greaterOrEqual==o.greaterOrEqual;
572 offset=edgeNumber=lessThan->markRightEdgesFirst(edgeNumber-1);
580 lessThan->writeUnlessInsideRightEdge(firstEdgeNumber, greaterOrEqual->getOffset(), builder)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
RangeTest.java 184 Range<Integer> range = Ranges.lessThan(5);
279 Cut<Integer> a = Ranges.lessThan(0).lowerBound;
317 assertFalse(range.encloses(Ranges.lessThan(3)));
334 assertFalse(range.encloses(Ranges.lessThan(3)));
366 range.intersection(Ranges.lessThan(3));
391 range.intersection(Ranges.lessThan(3)));
469 assertEquals(Ranges.atMost(8), range.span(Ranges.lessThan(4)));
551 Range<Integer> range = Ranges.lessThan(0);
569 assertEquals(ImmutableSet.of(), Ranges.lessThan(Integer.MIN_VALUE).asSet(integers()));
587 Ranges.lessThan(0).canonical(integers()))
    [all...]
RangesTest.java 80 Ranges.lessThan(7),
  /external/guava/guava/src/com/google/common/collect/
Ranges.java 46 * <dd>{@link #lessThan}
151 public static <C extends Comparable<?>> Range<C> lessThan(C endpoint) {
171 return lessThan(endpoint);
  /external/webkit/Source/WebCore/inspector/front-end/
ProfileView.js 245 var lessThan = (query.indexOf("<") === 0);
246 var equalTo = (query.indexOf("=") === 0 || ((greaterThan || lessThan) && query.indexOf("=") === 1));
252 if (greaterThan || lessThan || equalTo) {
253 if (equalTo && (greaterThan || lessThan))
262 if (!isNaN(queryNumber) && !(greaterThan || lessThan))
274 if (lessThan) {
299 if (lessThan) {
328 if (lessThan && profileDataGridNode.numberOfCalls < queryNumber)
  /external/webkit/Source/WebKit/chromium/src/
WebNode.cpp 71 bool WebNode::lessThan(const WebNode& n) const
WebNotification.cpp 65 bool WebNotification::lessThan(const WebNotification& other) const
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XObject.java 537 public boolean lessThan(XObject obj2)
595 return obj2.lessThan(this);
XNodeSet.java 644 public boolean lessThan(XObject obj2) throws javax.xml.transform.TransformerException
  /external/icu4c/common/unicode/
stringtriebuilder.h 359 unit(middleUnit), lessThan(lessThanNode), greaterOrEqual(greaterOrEqualNode) {}
365 Node *lessThan;
  /external/proguard/src/proguard/evaluation/
Processor.java 764 stack.ipop().lessThan(valueFactory.createIntegerValue(0)));
808 stack.ipop().lessThan(stack.ipop()));
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /prebuilts/tools/common/easymock-tools/
easymock-3.1-tests.jar 

Completed in 1093 milliseconds

1 2