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

1 2 3 4

  /external/easymock/src/org/easymock/internal/matchers/
LessThan.java 18 public class LessThan<T extends Comparable<T>> extends CompareTo<T> {
22 public LessThan(Comparable<T> value) {
  /external/mockito/src/main/java/org/mockito/internal/matchers/
LessThan.java 10 public class LessThan<T extends Comparable<T>> extends CompareTo<T> implements Serializable {
12 public LessThan(T value) {
  /art/test/463-checker-boolean-simplifier/src/
Main.java 106 /// CHECK-START: boolean Main.LessThan(int, int) select_generator (before)
116 /// CHECK-START: boolean Main.LessThan(int, int) select_generator (after)
125 public static boolean LessThan(int x, int y) {
374 assertBoolEquals(true, LessThan(5, 10));
375 assertBoolEquals(false, LessThan(10, 10));
376 assertBoolEquals(false, LessThan(10, 5));
  /external/llvm/tools/llvm-cov/
CoverageFilters.h 57 enum Operation { LessThan, GreaterThan };
70 case LessThan:
CodeCoverage.cpp 402 RegionCoverageFilter::LessThan, RegionCoverageLtFilter));
408 LineCoverageFilter::LessThan, LineCoverageLtFilter));
  /external/mockito/src/main/java/org/mockito/
AdditionalMatchers.java 17 import org.mockito.internal.matchers.LessThan;
348 reportMatcher(new LessThan<T>(value));
362 reportMatcher(new LessThan<Byte>(value));
376 reportMatcher(new LessThan<Double>(value));
390 reportMatcher(new LessThan<Float>(value));
404 reportMatcher(new LessThan<Integer>(value));
418 reportMatcher(new LessThan<Long>(value));
432 reportMatcher(new LessThan<Short>(value));
  /external/mockito/src/test/java/org/mockito/internal/matchers/
ComparableMatchersTest.java 20 test(new LessThan<String>("b"), true, false, false, "lt");
  /external/webrtc/webrtc/base/
stringutils_unittest.cc 69 TEST(ascii_string_compareTest, LessThan) {
  /external/easymock/src/org/easymock/
EasyMock.java 585 reportMatcher(new LessThan<T>(value));
598 reportMatcher(new LessThan<Byte>(value));
611 reportMatcher(new LessThan<Double>(value));
624 reportMatcher(new LessThan<Float>(value));
637 reportMatcher(new LessThan<Integer>(value));
650 reportMatcher(new LessThan<Long>(value));
663 reportMatcher(new LessThan<Short>(value));
    [all...]
  /external/tensorflow/tensorflow/c/
while_loop_test.cc 110 LessThan(params_->cond_inputs[0], {one, 0}, params_->cond_graph, s_);
159 LessThan(params_->cond_inputs[0], params_->cond_inputs[1],
230 LessThan(params_->cond_inputs[0], {six, 0}, params_->cond_graph, s_);
245 TF_Operation* inner_less_than = LessThan(
420 LessThan(params_->cond_inputs[0], {ten, 0}, params_->cond_graph, s_);
c_test_util.h 83 TF_Operation* LessThan(TF_Output l, TF_Output r, TF_Graph* graph, TF_Status* s);
c_test_util.cc 221 TF_Operation* LessThan(TF_Output l, TF_Output r, TF_Graph* graph,
  /frameworks/base/cmds/statsd/tests/
statsd_test_util.h 205 bool LessThan(const DimensionsValue& s1, const DimensionsValue& s2);
206 bool LessThan(const DimensionsPair& s1, const DimensionsPair& s2);
257 return LessThan(s1, s2);
statsd_test_util.cpp 597 bool LessThan(const DimensionsValue& s1, const DimensionsValue& s2) {
626 return LessThan(s1.value_tuple().dimensions_value(i),
638 bool LessThan(const DimensionsPair& s1, const DimensionsPair& s2) {
639 if (LessThan(s1.dimInWhat, s2.dimInWhat)) {
641 } else if (LessThan(s2.dimInWhat, s1.dimInWhat)) {
645 return LessThan(s1.dimInCondition, s2.dimInCondition);
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
forward_error_correction.h 63 static bool LessThan(const SortablePacket* first,
forward_error_correction.cc 74 bool ForwardErrorCorrection::SortablePacket::LessThan(
508 recovered_packet_list->sort(SortablePacket::LessThan);
518 packet, SortablePacket::LessThan);
575 fec_packet_list_.sort(SortablePacket::LessThan);
595 SortablePacket::LessThan);
775 recovered_packet_list->sort(SortablePacket::LessThan);
    [all...]
  /frameworks/base/cmds/statsd/src/
HashableDimensionKey.cpp 113 bool LessThan(const vector<FieldValue>& s1, const vector<FieldValue>& s2) {
141 return LessThan(getValues(), that.getValues());
  /frameworks/support/dynamic-animation/src/androidTest/java/androidx/dynamicanimation/tests/
FlingTests.java 45 import org.mockito.internal.matchers.LessThan;
124 new LessThan(-50f)), eq(0f));
  /external/v8/src/runtime/
runtime-operators.cc 152 Maybe<bool> result = Object::LessThan(x, y);
  /external/v8/src/compiler/
machine-operator.h 650 V(Int, LessThan) \
653 V(Uint, LessThan) \
  /hardware/google/av/codec2/vndk/include/util/
C2InterfaceUtils.h 148 inline static C2SupportedRange<T> LessThan(T value) {
718 C2ParamFieldValuesBuilder<T> &lessThan(T value) {
719 return limitTo(C2SupportedRange<T>::LessThan(value));
    [all...]
  /external/pdfium/core/fxcrt/
retain_ptr_unittest.cpp 252 TEST(RetainPtr, LessThan) {
  /external/v8/src/
code-factory.h 114 static Callable LessThan(Isolate* isolate);
  /external/guice/extensions/persist/lib/
easymock.jar 
  /external/guice/lib/build/
easymock.jar 

Completed in 1574 milliseconds

1 2 3 4