/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
gtest-string.h | 246 int Compare(const String& rhs) const; 250 bool operator==(const char* a_c_str) const { return Compare(a_c_str) == 0; } 254 bool operator<(const String& rhs) const { return Compare(rhs) < 0; }
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
gtest-string.h | 246 int Compare(const String& rhs) const; 250 bool operator==(const char* a_c_str) const { return Compare(a_c_str) == 0; } 254 bool operator<(const String& rhs) const { return Compare(rhs) < 0; }
|
/external/open-vcdiff/gtest/include/gtest/internal/ |
gtest-string.h | 246 int Compare(const String& rhs) const; 250 bool operator==(const char* c_str) const { return Compare(c_str) == 0; } 254 bool operator<(const String& rhs) const { return Compare(rhs) < 0; }
|
/external/openfst/src/include/fst/ |
heap.h | 47 // \param Compare Comparison class for determiningg min-heapness. 48 // \param whether heap top should be max or min element w.r.t. Compare 52 template <class T, class Compare, bool max> 57 Heap(Compare comp) : comp_(comp), size_(0) { } 194 Compare comp_;
|
/external/protobuf/gtest/include/gtest/internal/ |
gtest-string.h | 246 int Compare(const String& rhs) const; 250 bool operator==(const char* c_str) const { return Compare(c_str) == 0; } 254 bool operator<(const String& rhs) const { return Compare(rhs) < 0; }
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
heap.h | 43 // \param Compare Comparison class for determing min-heapness of max-heapness 46 template <class T, class Compare> 51 Heap(Compare comp) : comp_(comp), size_(0) { } 182 Compare comp_;
|
/art/test/003-omnibus-opcodes/src/ |
Main.java | 42 Compare.run();
|
/external/chromium_org/content/common/indexed_db/ |
indexed_db_key.cc | 87 int IndexedDBKey::Compare(const IndexedDBKey& other) const { 96 if (int result = array_[i].Compare(other.array_[i])) 105 return binary_.compare(other.binary_); 107 return string_.compare(other.string_); 124 return Compare(other) < 0; 128 return !Compare(other);
|
/external/chromium_org/third_party/leveldatabase/src/db/ |
dbformat.h | 119 virtual int Compare(const Slice& a, const Slice& b) const; 127 int Compare(const InternalKey& a, const InternalKey& b) const; 171 inline int InternalKeyComparator::Compare( 173 return Compare(a.Encode(), b.Encode());
|
/external/chromium_org/v8/src/ |
splay-tree-inl.h | 55 int cmp = Config::Compare(key, root_->key_); 89 return Config::Compare(key, root_->key_) == 0; 120 int cmp = Config::Compare(root_->key_, key); 144 int cmp = Config::Compare(root_->key_, key); 190 int cmp = Config::Compare(new_key, root_->key_); 247 int cmp = Config::Compare(key, current->key_); 251 if (Config::Compare(key, current->left_->key_) < 0) { 267 if (Config::Compare(key, current->right_->key_) > 0) {
|
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_leveldb_coding.h | 76 CONTENT_EXPORT int Compare(const base::StringPiece& a, 93 int Compare(const KeyPrefix& other) const; 182 int Compare(const DatabaseFreeListKey& other) const; 199 int Compare(const DatabaseNameKey& other); 245 int Compare(const ObjectStoreMetaDataKey& other); 272 int Compare(const IndexMetaDataKey& other); 290 int Compare(const ObjectStoreFreeListKey& other); 305 int Compare(const IndexFreeListKey& other); 323 int Compare(const ObjectStoreNamesKey& other); 340 int Compare(const IndexNamesKey& other) [all...] |
/external/chromium_org/content/browser/indexed_db/leveldb/ |
leveldb_transaction.cc | 238 !comparator_->Compare(non_current->Key(), Key())) { 244 comparator_->Compare(non_current->Key(), Key()) > 0); 278 comparator_->Compare(non_current->Key(), Key()) < 0); 322 !comparator_->Compare(data_iterator_->Key(), db_iterator_->Key())) { 337 return comparator_->Compare(data_iterator_->Key(), db_iterator_->Key()) < 0; 341 return comparator_->Compare(data_iterator_->Key(), db_iterator_->Key()) > 0; 351 !comparator_->Compare(data_iterator_->Key(), db_iterator_->Key())) { 385 comparator_->Compare(db_iterator_->Key(), smallest->Key()) < 0) 400 comparator_->Compare(db_iterator_->Key(), largest->Key()) > 0)
|
/external/chromium/chrome/browser/autofill/ |
personal_data_manager_unittest.cc | 126 EXPECT_EQ(0, profile0.Compare(*results1.at(0))); 127 EXPECT_EQ(0, profile1.Compare(*results1.at(1))); 141 EXPECT_EQ(0, profile0.Compare(*results2.at(0))); 142 EXPECT_EQ(0, profile2.Compare(*results2.at(1))); 160 EXPECT_EQ(0, profile0.Compare(*results3.at(0))); 161 EXPECT_EQ(0, profile2.Compare(*results3.at(1))); 194 EXPECT_EQ(0, creditcard0.Compare(*results1.at(0))); 195 EXPECT_EQ(0, creditcard1.Compare(*results1.at(1))); 270 EXPECT_EQ(0, profile0.Compare(*results1.at(0))); 271 EXPECT_EQ(0, profile1.Compare(*results1.at(1))) [all...] |
/external/chromium/base/i18n/ |
file_util_icu.cc | 90 int Compare(const string16& a, const string16& b) { 91 // We are not sure if Collator::compare is thread-safe. 96 UCollationResult result = collator_->compare( 182 return LocaleAwareComparator::GetInstance()->Compare(a.value().c_str(), 192 return LocaleAwareComparator::GetInstance()->Compare(
|
/external/chromium/third_party/libjingle/source/talk/xmpp/ |
jid.h | 93 bool operator<(const Jid & other) const { return Compare(other) < 0; }; 94 bool operator>(const Jid & other) const { return Compare(other) > 0; }; 96 int Compare(const Jid & other) const;
|
/external/chromium_org/third_party/leveldatabase/src/table/ |
merger.cc | 73 comparator_->Compare(key(), child->key()) == 0) { 162 } else if (comparator_->Compare(child->key(), smallest->key()) < 0) { 177 } else if (comparator_->Compare(child->key(), largest->key()) > 0) {
|
/external/chromium_org/net/quic/crypto/ |
common_cert_set.cc | 47 // Compare returns a value less than, equal to or greater than zero if |a| is 49 int Compare(StringPiece a, const unsigned char* b, size_t b_len) { 117 int n = Compare(cert, kSets[j].certs[mid], kSets[j].lens[mid]);
|
/frameworks/compile/mclinker/include/mcld/LD/ |
BranchIsland.h | 135 struct Compare 151 typedef HashEntry<Key, Stub*, Key::Compare> StubEntryType;
|
/external/chromium_org/v8/test/cctest/ |
test-bignum.cc | [all...] |
/external/v8/test/cctest/ |
test-bignum.cc | [all...] |
/dalvik/tests/003-omnibus-opcodes/src/ |
Main.java | 51 Compare.run();
|
/external/chromium/base/synchronization/ |
waitable_event.h | 125 virtual bool Compare(void* tag) = 0;
|
/external/chromium/base/ |
version_unittest.cc | 52 TEST_F(VersionTest, Compare) {
|
/external/chromium/sdch/open-vcdiff/src/gtest/internal/ |
gtest-string.h | 187 int Compare(const String& rhs) const;
|
/external/chromium/third_party/libjingle/overrides/talk/xmllite/ |
qname.cc | 57 QName::Compare(const QName & other) const { 58 int result = local_part_.compare(other.local_part_); 62 return namespace_.compare(other.namespace_);
|