HomeSort by relevance Sort by last modified time
    Searched refs:equal (Results 76 - 100 of 685) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
MockAccountTypeManager.java 46 if (Objects.equal(accountTypeWithDataSet.accountType, type.accountType)
47 && Objects.equal(accountTypeWithDataSet.dataSet, type.dataSet)) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountTypeWithDataSet.java 85 return Objects.equal(accountType, other.accountType)
86 && Objects.equal(dataSet, other.dataSet);
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
TextEditor.java 44 if (equal(newVal, item.getValue()))
69 private static boolean equal(Object a, Object b) { method in class:TextEditor
  /external/webkit/Source/WebCore/xml/
XPathPredicate.cpp 172 bool equal; local
174 equal = lhs.toBoolean() == rhs.toBoolean();
176 equal = lhs.toNumber() == rhs.toNumber();
178 equal = lhs.toString() == rhs.toString();
181 return equal;
182 return !equal;
  /external/chromium/chrome/browser/importer/
firefox_importer_utils.cc 109 size_t equal = line.find('='); local
110 if (equal != std::string::npos) {
111 std::string key = line.substr(0, equal);
113 *version = line.substr(equal + 1)[0] - '0';
121 UTF8ToWide(line.substr(equal + 1)));
157 size_t equal = line.find('='); local
158 if (equal != std::string::npos) {
159 key = line.substr(0, equal);
160 value = line.substr(equal + 1);
  /external/stlport/test/unit/
equal_test.cpp 135 CPPUNIT_ASSERT( !equal(numbers1, numbers1 + 5, numbers2) );
136 CPPUNIT_ASSERT( equal(numbers3, numbers3 + 2, numbers1) );
145 CPPUNIT_ASSERT( !equal(v1.begin(), v1.end(), v2.begin()) );
148 CPPUNIT_ASSERT( equal(v1.begin(), v1.end(), v2.begin()) )
159 CPPUNIT_ASSERT( equal(v1.begin(), v1.end(), v2.begin(), values_squared) );
  /external/webkit/Source/JavaScriptCore/runtime/
UString.h 123 if (rep1 == rep2) // If they're the same rep, they're equal.
191 static bool equal(const StringImpl* a, const StringImpl* b) function in struct:JSC::UStringHash
231 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) function in struct:JSC::UStringHash
233 return equal(a.get(), b.get());
237 static bool equal(const UString& a, const UString& b) function in struct:JSC::UStringHash
239 return equal(a.impl(), b.impl());
Identifier.cpp 70 bool Identifier::equal(const StringImpl* r, const char* s) function in class:JSC::Identifier
80 bool Identifier::equal(const StringImpl* r, const UChar* s, unsigned length) function in class:JSC::Identifier
97 static bool equal(StringImpl* r, const char* s) function in struct:JSC::IdentifierCStringTranslator
99 return Identifier::equal(r, s);
157 static bool equal(StringImpl* str, const UCharBuffer& buf) function in struct:JSC::IdentifierUCharBufferTranslator
159 return Identifier::equal(str, buf.s, buf.length);
190 // length of the string must be one - e.g. "042" is not equal to "42".
  /libcore/luni/src/main/java/java/beans/
PropertyChangeSupport.java 77 * If the old value and the new value are not null and equal the event will
95 * equal the event will not be fired.
138 * from a and b. If they don't match, the chains must not be equal!
152 if (!Objects.equal(aName, bName)) {
153 return false; // not equal; a and b subscribe to different properties
157 return aName == null && Objects.equal(a, b);
180 if (p instanceof PropertyChangeListenerProxy && Objects.equal(
190 * old value and the new value are not null and equal the event will not be
206 * old value and the new value are not null and equal the event will not be
228 * the old value and the new value are not null and equal the event will no
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
equal_test.cpp 135 CPPUNIT_ASSERT( !equal(numbers1, numbers1 + 5, numbers2) );
136 CPPUNIT_ASSERT( equal(numbers3, numbers3 + 2, numbers1) );
145 CPPUNIT_ASSERT( !equal(v1.begin(), v1.end(), v2.begin()) );
148 CPPUNIT_ASSERT( equal(v1.begin(), v1.end(), v2.begin()) )
159 CPPUNIT_ASSERT( equal(v1.begin(), v1.end(), v2.begin(), values_squared) );
  /ndk/tests/device/test-stlport/unit/
equal_test.cpp 135 CPPUNIT_ASSERT( !equal(numbers1, numbers1 + 5, numbers2) );
136 CPPUNIT_ASSERT( equal(numbers3, numbers3 + 2, numbers1) );
145 CPPUNIT_ASSERT( !equal(v1.begin(), v1.end(), v2.begin()) );
148 CPPUNIT_ASSERT( equal(v1.begin(), v1.end(), v2.begin()) )
159 CPPUNIT_ASSERT( equal(v1.begin(), v1.end(), v2.begin(), values_squared) );
  /external/stlport/stlport/stl/
_istreambuf_iterator.h 74 bool equal(const istreambuf_iterator<_CharT, _Traits>& __i) const { function in class:istreambuf_iterator
112 return __x.equal(__y);
120 return !__x.equal(__y);
  /libcore/luni/src/test/java/libcore/java/io/
OldFileInputStreamTest.java 109 boolean equal = true;
122 equal &= (buffer[i] == stringBytes[i + offset]);
124 assertTrue("Channel is not associated with this stream.", equal);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_istreambuf_iterator.h 74 bool equal(const istreambuf_iterator<_CharT, _Traits>& __i) const { function in class:istreambuf_iterator
112 return __x.equal(__y);
120 return !__x.equal(__y);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_istreambuf_iterator.h 74 bool equal(const istreambuf_iterator<_CharT, _Traits>& __i) const { function in class:istreambuf_iterator
112 return __x.equal(__y);
120 return !__x.equal(__y);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_istreambuf_iterator.h 74 bool equal(const istreambuf_iterator<_CharT, _Traits>& __i) const { function in class:istreambuf_iterator
112 return __x.equal(__y);
120 return !__x.equal(__y);
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_istreambuf_iterator.h 74 bool equal(const istreambuf_iterator<_CharT, _Traits>& __i) const { function in class:istreambuf_iterator
112 return __x.equal(__y);
120 return !__x.equal(__y);
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_istreambuf_iterator.h 74 bool equal(const istreambuf_iterator<_CharT, _Traits>& __i) const { function in class:istreambuf_iterator
112 return __x.equal(__y);
120 return !__x.equal(__y);
  /system/core/sh/
alias.c 71 if (equal(name, ap->name)) {
124 if (equal(name, ap->name)) {
184 if (equal(name, ap->name)) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
algobase.h 50 // NB: equal and lexicographical_compare require mismatch.
133 equal(InputIterator1 begin1, InputIterator1 end1, InputIterator2 begin2, function in namespace:std::__parallel
135 { return _GLIBCXX_STD_P::equal(begin1, end1, begin2); }
141 equal(InputIterator1 begin1, InputIterator1 end1, InputIterator2 begin2, function in namespace:std::__parallel
143 { return _GLIBCXX_STD_P::equal(begin1, end1, begin2, pred); }
148 equal(InputIterator1 begin1, InputIterator1 end1, InputIterator2 begin2) function in namespace:std::__parallel
155 equal(InputIterator1 begin1, InputIterator1 end1, InputIterator2 begin2, function in namespace:std::__parallel
  /build/tools/droiddoc/templates-pdk/assets/
customizations.js 5 + "and be compiled against a version of the Android library that supports an equal or higher API Level. To reveal this "
  /external/webkit/Source/JavaScriptGlue/
JSObject.cpp 112 UInt8 JSUserObject::Equal(JSBase* other)
118 if (fCallBacks.equal)
120 result = fCallBacks.equal(GetData(), obj->GetData());
  /frameworks/base/services/java/com/android/server/display/
DisplayDeviceInfo.java 168 && Objects.equal(name, other.name)
179 && Objects.equal(address, other.address);
  /external/chromium/chrome/browser/policy/
policy_map.cc 44 std::equal(map_.begin(), map_.end(), other.map_.begin(), MapEntryEquals);
  /external/clang/lib/Basic/
OperatorPrecedence.cpp 43 case tok::equal:

Completed in 743 milliseconds

1 2 34 5 6 7 8 91011>>