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

1 2

  /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/org/mockito/internal/matchers/
LessThan.java 10 public class LessThan<T extends Comparable<T>> extends CompareTo<T> implements Serializable {
14 public LessThan(Comparable<T> value) {
  /external/chromium_org/sandbox/linux/seccomp-bpf/
errorcode_unittest.cc 61 SANDBOX_TEST(ErrorCode, LessThan) {
64 SANDBOX_ASSERT(!e1.LessThan(e1));
65 SANDBOX_ASSERT(!e1.LessThan(e2));
66 SANDBOX_ASSERT(!e2.LessThan(e1));
69 SANDBOX_ASSERT(!e1.LessThan(e3));
70 SANDBOX_ASSERT( e3.LessThan(e1));
76 SANDBOX_ASSERT(e1.LessThan(e4));
77 SANDBOX_ASSERT(e3.LessThan(e4));
78 SANDBOX_ASSERT(e4.LessThan(e5));
79 SANDBOX_ASSERT(!e4.LessThan(e6))
    [all...]
errorcode.h 129 bool LessThan(const ErrorCode& err) const;
143 struct LessThan {
145 return a.LessThan(b);
errorcode.cc 69 bool ErrorCode::LessThan(const ErrorCode& err) const {
70 // Implementing a "LessThan()" operator allows us to use ErrorCode objects
92 return passed_->LessThan(*err.passed_);
94 return failed_->LessThan(*err.failed_);
  /external/chromium_org/sync/internal_api/public/base/
unique_position_unittest.cc 79 ::testing::AssertionResult LessThan(const char* m_expr,
83 if (m.LessThan(n))
176 return a.LessThan(b);
193 EXPECT_FALSE(a.LessThan(a));
203 EXPECT_TRUE(a.LessThan(b));
204 EXPECT_FALSE(b.LessThan(a));
268 EXPECT_PRED_FORMAT2(LessThan, predecessor, midpoint);
269 EXPECT_PRED_FORMAT2(LessThan, midpoint, successor);
284 EXPECT_PRED_FORMAT2(LessThan, before, successor);
298 EXPECT_PRED_FORMAT2(LessThan, predecessor, after)
    [all...]
ordinal_unittest.cc 142 // Create three Ordinals in order. LessThan should return values
144 TEST(Ordinal, LessThan) {
149 EXPECT_FALSE(small_ordinal.LessThan(small_ordinal));
150 EXPECT_TRUE(small_ordinal.LessThan(middle_ordinal));
151 EXPECT_TRUE(small_ordinal.LessThan(big_ordinal));
153 EXPECT_FALSE(middle_ordinal.LessThan(small_ordinal));
154 EXPECT_FALSE(middle_ordinal.LessThan(middle_ordinal));
155 EXPECT_TRUE(middle_ordinal.LessThan(big_ordinal));
157 EXPECT_FALSE(big_ordinal.LessThan(small_ordinal));
158 EXPECT_FALSE(big_ordinal.LessThan(middle_ordinal))
    [all...]
node_ordinal_unittest.cc 79 template <typename T, typename LessThan = std::less<T> >
90 LessThan less_than_;
unique_position.h 77 bool LessThan(const UniquePosition& other) const;
ordinal.h 107 bool LessThan(const Ordinal& other) const;
217 return lhs.LessThan(rhs);
272 bool Ordinal<Traits>::LessThan(const Ordinal& other) const {
298 if (LessThan(other)) {
467 CHECK(start.LessThan(end));
  /external/chromium_org/net/cert/
signed_certificate_timestamp_unittest.cc 42 SignedCertificateTimestamp::LessThan less_than;
signed_certificate_timestamp.h 80 struct NET_EXPORT LessThan {
  /external/mockito/src/org/mockito/
AdditionalMatchers.java 15 import org.mockito.internal.matchers.LessThan;
329 return reportMatcher(new LessThan<T>(value)).<T>returnNull();
342 return reportMatcher(new LessThan<Byte>(value)).returnZero();
355 return reportMatcher(new LessThan<Double>(value)).returnZero();
368 return reportMatcher(new LessThan<Float>(value)).returnZero();
381 return reportMatcher(new LessThan<Integer>(value)).returnZero();
394 return reportMatcher(new LessThan<Long>(value)).returnZero();
407 return reportMatcher(new LessThan<Short>(value)).returnZero();
  /external/chromium_org/chrome/browser/extensions/
chrome_app_sorting_unittest.cc 73 EXPECT_TRUE(launch_ordinal.LessThan(
81 EXPECT_TRUE(launch_ordinal.LessThan(new_launch_ordinal));
201 EXPECT_TRUE(first_ordinal.LessThan(
210 EXPECT_TRUE(first_ordinal.LessThan(
336 extension1_app_launch.LessThan(extension2_app_launch));
338 extension1_app_launch.LessThan(extension3_app_launch));
340 extension2_app_launch.LessThan(extension3_app_launch));
396 extension1_app_launch.LessThan(extension2_app_launch));
397 EXPECT_TRUE(extension1_app_launch.LessThan(extension3_app_launch));
398 EXPECT_TRUE(extension2_app_launch.LessThan(extension3_app_launch))
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrTHashTable.h 20 * static bool LessThan(const Entry&, const Key&);
22 * static bool LessThan(const Entry&, const Entry&); for SK_DEBUG if GrTHashTable::validate() is called
95 if (Key::LessThan(*array[index], key)) {
106 SkASSERT(0 == high || Key::LessThan(*array[high - 1], key));
111 if (Key::LessThan(*array[high], key)) {
138 SkASSERT(0 == index || Key::LessThan(*array[index - 1], key));
197 SkASSERT(Key::LessThan(*fSorted[i - 1], *fSorted[i]) ||
GrTextStrike_impl.h 22 static bool LessThan(const GrTextStrike& strike, const Key& key) {
91 static bool LessThan(const GrGlyph& glyph, const Key& key) {
GrResourceCache.h 88 static bool LessThan(const GrResourceEntry& entry, const GrResourceKey& key);
91 static bool LessThan(const GrResourceEntry& a, const GrResourceEntry& b);
158 inline bool GrResourceKey::LessThan(const GrResourceEntry& entry, const GrResourceKey& key) {
167 inline bool GrResourceKey::LessThan(const GrResourceEntry& a, const GrResourceEntry& b) {
  /external/skia/src/gpu/
GrTHashTable.h 20 * static bool LessThan(const Entry&, const Key&);
22 * static bool LessThan(const Entry&, const Entry&); for SK_DEBUG if GrTHashTable::validate() is called
95 if (Key::LessThan(*array[index], key)) {
106 SkASSERT(0 == high || Key::LessThan(*array[high - 1], key));
111 if (Key::LessThan(*array[high], key)) {
138 SkASSERT(0 == index || Key::LessThan(*array[index - 1], key));
197 SkASSERT(Key::LessThan(*fSorted[i - 1], *fSorted[i]) ||
GrTextStrike_impl.h 22 static bool LessThan(const GrTextStrike& strike, const Key& key) {
91 static bool LessThan(const GrGlyph& glyph, const Key& key) {
GrResourceCache.h 88 static bool LessThan(const GrResourceEntry& entry, const GrResourceKey& key);
91 static bool LessThan(const GrResourceEntry& a, const GrResourceEntry& b);
158 inline bool GrResourceKey::LessThan(const GrResourceEntry& entry, const GrResourceKey& key) {
167 inline bool GrResourceKey::LessThan(const GrResourceEntry& a, const GrResourceEntry& b) {
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrTextureStripAtlas.h 142 static bool LessThan(const AtlasEntry& entry, const AtlasHashKey& key);
189 inline bool GrTextureStripAtlas::AtlasHashKey::LessThan(const AtlasEntry& entry,
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.h 142 static bool LessThan(const AtlasEntry& entry, const AtlasHashKey& key);
189 inline bool GrTextureStripAtlas::AtlasHashKey::LessThan(const AtlasEntry& entry,
  /external/skia/tests/
HashCacheTest.cpp 42 static bool LessThan(const HashElement& entry, const HashKey& key) {
50 static bool LessThan(const HashElement& a, const HashElement& b) {
  /external/chromium_org/third_party/libjingle/source/talk/base/
stringutils_unittest.cc 86 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...]

Completed in 2432 milliseconds

1 2