/external/chromium_org/chrome/browser/ui/cocoa/ |
find_pasteboard_unittest.mm | 78 [[pboard_.get() findPboardText] compare:@"text"]); 86 [[pboard_.get() findText] compare:@"text"]);
|
/external/chromium_org/content/browser/speech/ |
chunked_byte_buffer_unittest.cc | 47 EXPECT_EQ(0, std::char_traits<uint8>::compare(kChunks + 4, 57 EXPECT_EQ(0, std::char_traits<uint8>::compare(kChunks + 12,
|
/external/chromium_org/net/base/ |
upload_bytes_element_reader_unittest.cc | 40 bytes_.resize(kHalfSize); // Resize to compare. 65 buf.resize(bytes_.size()); // Resize to compare.
|
/external/chromium_org/third_party/WebKit/Source/platform/network/ |
ResourceError.h | 76 static bool compare(const ResourceError&, const ResourceError&); 88 inline bool operator==(const ResourceError& a, const ResourceError& b) { return ResourceError::compare(a, b); }
|
SocketStreamError.h | 55 static bool compare(const SocketStreamError&, const SocketStreamError&); 71 inline bool operator==(const SocketStreamError& a, const SocketStreamError& b) { return SocketStreamError::compare(a, b); }
|
/external/chromium_org/third_party/icu/source/common/ |
uinvchar.h | 67 * Compare two EBCDIC invariant-character strings in ASCII order. 75 * Compare two invariant-character strings in ASCII order.
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
sortkey.h | 45 * instead of Collator to compare strings multiple times. A CollationKey 70 * // Inside body of sort routine, compare keys this way: 78 * <p>Because Collator::compare()'s algorithm is complex, it is faster to sort 80 * You can then cache the collation keys and compare them using CollationKey::compareTo(). 138 * Compare if two collation keys are the same. 139 * @param source the collation key to compare to. 146 * Compare if two collation keys are not the same. 147 * @param source the collation key to compare to.
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
loctest.h | 29 * Use Locale to access Resource file data and compare against expected values 33 * Use Locale to access Resource file display names and compare against expected values
|
/external/chromium_org/third_party/libxml/src/include/libxml/ |
list.h | 38 * Callback function used to compare 2 data. 57 xmlListDataCompare compare);
|
/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/clang/test/Sema/ |
self-comparison.c | 53 // compare same array 63 // compare differrent arrays
|
/external/droiddriver/samples/testapp/src/com/google/android/apps/common/testing/ui/testapp/ |
MainActivity.java | 34 public int compare(Map<String, Object> map1, Map<String, Object> map2) { 35 return collator.compare(map1.get("title"), map2.get("title"));
|
/external/dropbear/libtomcrypt/src/encauth/ocb/ |
ocb_decrypt_verify_memory.c | 21 Decrypt and compare the tag with OCB. 29 @param tag The tag to compare against
|
/external/e2fsprogs/lib/uuid/ |
compare.c | 2 * compare.c --- compare whether or not two UUID's are the same
|
/external/guava/guava/src/com/google/common/collect/ |
ComparatorOrdering.java | 39 @Override public int compare(T a, T b) { method in class:ComparatorOrdering 40 return comparator.compare(a, b);
|
CompoundOrdering.java | 46 @Override public int compare(T left, T right) { method in class:CompoundOrdering 48 int result = comparator.compare(left, right);
|
NullsFirstOrdering.java | 34 @Override public int compare(@Nullable T left, @Nullable T right) { method in class:NullsFirstOrdering 44 return ordering.compare(left, right);
|
NullsLastOrdering.java | 34 @Override public int compare(@Nullable T left, @Nullable T right) { method in class:NullsLastOrdering 44 return ordering.compare(left, right);
|
ReverseOrdering.java | 37 @Override public int compare(T a, T b) { method in class:ReverseOrdering 38 return forwardOrder.compare(b, a);
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
Helpers.java | 168 public int compare(Entry<K, V> a, Entry<K, V> b) { 169 return keyComparator.compare(a.getKey(), b.getKey()); 187 assertTrue(comparator + ".compare(" + lesser + ", " + t + ")", 188 comparator.compare(lesser, t) < 0); 191 assertEquals(comparator + ".compare(" + t + ", " + t + ")", 192 0, comparator.compare(t, t)); 196 assertTrue(comparator + ".compare(" + greater + ", " + t + ")", 197 comparator.compare(greater, t) > 0);
|
/external/icu4c/common/ |
uinvchar.h | 67 * Compare two EBCDIC invariant-character strings in ASCII order. 75 * Compare two invariant-character strings in ASCII order.
|
/external/icu4c/i18n/unicode/ |
sortkey.h | 45 * instead of Collator to compare strings multiple times. A CollationKey 70 * // Inside body of sort routine, compare keys this way: 78 * <p>Because Collator::compare()'s algorithm is complex, it is faster to sort 80 * You can then cache the collation keys and compare them using CollationKey::compareTo(). 138 * Compare if two collation keys are the same. 139 * @param source the collation key to compare to. 146 * Compare if two collation keys are not the same. 147 * @param source the collation key to compare to.
|
/external/icu4c/test/intltest/ |
loctest.h | 29 * Use Locale to access Resource file data and compare against expected values 33 * Use Locale to access Resource file display names and compare against expected values
|
/external/ipsec-tools/ |
Android.mk | 67 LOCAL_CFLAGS += -Wno-sign-compare -Wno-missing-field-initializers 83 LOCAL_CFLAGS += -Wno-sign-compare -Wno-missing-field-initializers
|
/external/libxml2/include/libxml/ |
list.h | 38 * Callback function used to compare 2 data. 57 xmlListDataCompare compare);
|