/cts/tools/signature-tools/test/signature/comparator/ |
MethodCompareTests.java | 28 import signature.compare.model.IApiDelta; 29 import signature.compare.model.IClassDefinitionDelta; 30 import signature.compare.model.DeltaType; 46 assertNull(compare(fromApi, toApi)); method 62 IApiDelta delta = compare(fromApi, toApi); 82 IApiDelta delta = compare(fromApi, toApi); 103 IApiDelta delta = compare(fromApi, toApi); 124 IApiDelta delta = compare(fromApi, toApi); 150 IApiDelta apiDelta = compare(fromApi, toApi); 174 IApiDelta apiDelta = compare(fromApi, toApi) [all...] |
/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/WebKit/Source/core/html/parser/ |
HTMLEntitySearch.cpp | 46 HTMLEntitySearch::CompareResult HTMLEntitySearch::compare(const HTMLEntityTableEntry* entry, UChar nextCharacter) const function in class:WebCore::HTMLEntitySearch 62 CompareResult result = compare(left, nextCharacter); 69 result = compare(probe, nextCharacter); 87 CompareResult result = compare(right, nextCharacter); 94 result = compare(probe, nextCharacter); 117 if (m_first == m_last && compare(m_first, nextCharacter) != Prefix)
|
/external/chromium_org/third_party/libjingle/source/talk/xmllite/ |
qname.cc | 79 int QName::Compare(const StaticQName& other) const { 80 int result = local_part_.compare(other.local); 84 return namespace_.compare(other.ns); 87 int QName::Compare(const QName& other) const { 88 int result = local_part_.compare(other.local_part_); 92 return namespace_.compare(other.namespace_);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
fixed_mapping.hpp | 59 template<typename Key, typename Value, typename Compare = std::less<Key> > 75 // bind( Compare(), bind(select1st<elem_type>(), _1), bind(identity<Key>(), _2) ) 78 bool operator()( elem_type const& x, Key const& y ) const { return Compare()( x.first, y ); } 81 // bind( Compare(), bind(select1st<elem_type>(), _1), bind(select1st<elem_type>(), _2) ) 84 bool operator()( elem_type const& x, elem_type const& y ) const { return Compare()( x.first, y.first ); } 96 return (it == m_map.end() || Compare()( key, it->first ) ) ? m_invalid_value : it->second;
|
/cts/tests/tests/content/src/android/content/pm/cts/ |
PackageItemInfo_DisplayNameComparatorTest.java | 44 assertTrue(comparator.compare(pkgItemInfo, cmpInfo) < 0); 45 assertTrue(comparator.compare(pkgItemInfo, pkgItemInfo) == 0); 46 assertTrue(comparator.compare(cmpInfo, pkgItemInfo) > 0);
|
/cts/tests/tests/gesture/src/android/gesture/cts/ |
GestureComparator.java | 32 * Compare the contents of two (@link Gesture}'s 40 // now compare gesture strokes. Order is important 49 * Compare the contents of two {@link GestureStroke}
|
/cts/tools/signature-tools/src/signature/io/html/ |
ApiOverviewPage.java | 21 import signature.compare.model.IApiDelta; 22 import signature.compare.model.IPackageDelta; 23 import signature.compare.model.impl.SigDelta;
|
PackageOverviewPage.java | 26 import signature.compare.model.IClassDefinitionDelta; 27 import signature.compare.model.IPackageDelta; 28 import signature.compare.model.impl.SigDelta;
|
/dalvik/vm/mterp/mips/ |
OP_CMP_LONG.S | 6 * Compare two 64-bit values 27 slt t0, a1, a3 # compare hi 32 sltu t0, a0, a2 # compare lo
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/ |
table_data_model.js | 56 * Returns compare function set for given field. 57 * @param {string} field The field to get compare function for. 58 * @return {Function(*, *): number} Compare function set for given field. 65 * Sets compare function for given field. 66 * @param {string} field The field to set compare function. 67 * @param {Function(*, *): number} Compare function to set for given field. 217 * Creates compare function for the field. 219 * or default compare function 221 * @param {Function(*, *): number} Compare function. 238 * Creates compare function for given field and direction [all...] |
/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_);
|
/external/chromium_org/cc/test/ |
pixel_comparator.h | 18 virtual bool Compare(const SkBitmap& actual_bmp, 31 virtual bool Compare(const SkBitmap& actual_bmp, 54 virtual bool Compare(const SkBitmap& actual_bmp,
|
/external/chromium_org/content/common/input/ |
input_param_traits_unittest.cc | 23 static void Compare(const InputEvent* a, const InputEvent* b) { 35 static void Compare(const InputEvents* a, const InputEvents* b) { 37 Compare((*a)[i], (*b)[i]); 40 static void Compare(const SyntheticSmoothScrollGestureParams* a, 49 static void Compare(const SyntheticPinchGestureParams* a, 59 static void Compare(const SyntheticTapGestureParams* a, 66 static void Compare(const SyntheticGesturePacket* a, 76 Compare(SyntheticSmoothScrollGestureParams::Cast(a->gesture_params()), 80 Compare(SyntheticPinchGestureParams::Cast(a->gesture_params()), 84 Compare(SyntheticTapGestureParams::Cast(a->gesture_params()) [all...] |
/external/chromium_org/third_party/leveldatabase/src/util/ |
comparator.cc | 25 virtual int Compare(const Slice& a, const Slice& b) const { 26 return a.compare(b); 48 assert(Compare(*start, limit) < 0);
|
/external/chromium_org/v8/test/mjsunit/regress/ |
external-and-normal-array-polymorphism.js | 28 function store_generator(compare) { 31 assertEquals(compare, a[i]); 32 assertEquals(compare, a[i]);
|
/external/libyuv/files/util/ |
compare.cc | 17 #include "libyuv/compare.h" 22 printf("libyuv compare v%d\n", LIBYUV_VERSION); 23 printf("compare file1.yuv file2.yuv\n");
|
/external/stlport/src/ |
sparc_atomic.s | 18 ! swap [%o0], %o3 ! Do the compare and swap 37 ! swap [%o0], %o3 ! Do the compare and swap 59 ! swap [%o0], %o3 ! Do the compare and swap
|
sparc_atomic64.s | 16 casx [%o0], %o2, %o3 ! Do the compare and swap 35 casx [%o0], %o2, %o3 ! Do the compare and swap 55 casx [%o0], %o2, %o3 ! Do the compare and swap
|
/libcore/dex/src/main/java/com/android/dex/ |
FieldId.java | 48 return Unsigned.compare(declaringClassIndex, other.declaringClassIndex); 51 return Unsigned.compare(nameIndex, other.nameIndex); 53 return Unsigned.compare(typeIndex, other.typeIndex); // should always be 0
|
MethodId.java | 48 return Unsigned.compare(declaringClassIndex, other.declaringClassIndex); 51 return Unsigned.compare(nameIndex, other.nameIndex); 53 return Unsigned.compare(protoIndex, other.protoIndex);
|
/ndk/sources/cxx-stl/stlport/src/ |
sparc_atomic.s | 18 ! swap [%o0], %o3 ! Do the compare and swap 37 ! swap [%o0], %o3 ! Do the compare and swap 59 ! swap [%o0], %o3 ! Do the compare and swap
|
sparc_atomic64.s | 16 casx [%o0], %o2, %o3 ! Do the compare and swap 35 casx [%o0], %o2, %o3 ! Do the compare and swap 55 casx [%o0], %o2, %o3 ! Do the compare and swap
|
/bootable/recovery/minui/ |
Android.mk | 12 # This used to compare against values in double-quotes (which are just
|
/external/chromium/chrome/browser/ssl/ |
ssl_client_auth_notification_details.cc | 18 // TODO(mattm): should we also compare the DistinguishedNames, or is just
|