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

12 3 4 5 6 7 8 91011>>

  /system/core/sh/bltin/
echo.c 73 if (equal(p, "-n")) {
76 } else if (equal(p, "-e")) {
  /external/webkit/Source/JavaScriptCore/runtime/
Identifier.h 76 static bool equal(const StringImpl*, const char*);
77 static bool equal(const StringImpl*, const UChar*, unsigned length);
78 static bool equal(const StringImpl* a, const StringImpl* b) { return ::equal(a, b); } function in class:JSC::Identifier
86 static bool equal(const Identifier& a, const Identifier& b) { return a.m_string.impl() == b.m_string.impl(); } function in class:JSC::Identifier
87 static bool equal(const Identifier& a, const char* b) { return equal(a.m_string.impl(), b); } function in class:JSC::Identifier
120 return Identifier::equal(a, b);
125 return !Identifier::equal(a, b);
130 return Identifier::equal(a, b)
    [all...]
  /external/skia/tests/
StrokeTest.cpp 14 static bool equal(const SkRect& a, const SkRect& b) { function
44 REPORTER_ASSERT(reporter, equal(outer, fillPath.getBounds()));
52 REPORTER_ASSERT(reporter, equal(nested[0], outer));
53 REPORTER_ASSERT(reporter, equal(nested[1], inner));
  /frameworks/base/core/java/com/android/internal/util/
Objects.java 27 * Determines whether two possibly-null objects are equal. Returns:
32 * equal according to {@link Object#equals(Object)}.
39 public static boolean equal(Object a, Object b) { method in class:Objects
56 * does not equal the hash code of that object.
  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.modifying.operations/alg.random.shuffle/
random_shuffle_rand.pass.cpp 36 assert(std::equal(ia, ia+sa, ia1));
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
AccountWithDataSet.java 72 return Objects.equal(mAccountName, other.getAccountName())
73 && Objects.equal(mAccountType, other.getAccountType())
74 && Objects.equal(mDataSet, other.getDataSet());
101 if (Objects.equal(systemAccount.name, getAccountName())
102 && Objects.equal(systemAccount.type, getAccountType())) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
envset.cmd 24 =D the same as above but equal sign is not required
33 ; implies that the equal sign is considered a part of the parameter and is
36 -D requires parameters in the form name=value. If the equal sign is not found,
39 Other options have optional equal sign. If it is found, only the part after
40 the equal sign will be oprionally expanded.
54 equal = 0
65 equal = -1
67 when mode='-D' then equal = 1
95 addval: procedure expose sep equal orig expand newval mode env
100 if equal >= 0 then d
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tst_badblocks.c 271 int equal; local
319 equal = ext2fs_badblocks_equal(bb1, bb2);
320 printf("bb1 and bb2 are %sequal.\n", equal ? "" : "NOT ");
321 if (equal)
324 equal = ext2fs_badblocks_equal(bb1, bb3);
325 printf("bb1 and bb3 are %sequal.\n", equal ? "" : "NOT ");
326 if (!equal)
329 equal = ext2fs_badblocks_equal(bb1, bb4);
330 printf("bb1 and bb4 are %sequal.\n", equal ? "" : "NOT ");
331 if (equal)
    [all...]
  /frameworks/base/core/java/android/util/
Pair.java 47 * equal
55 return Objects.equal(p.first, first) && Objects.equal(p.second, second);
  /external/okhttp/src/main/java/com/squareup/okhttp/
Address.java 23 import static com.squareup.okhttp.internal.Util.equal;
93 return equal(this.proxy, that.proxy)
96 && equal(this.sslSocketFactory, that.sslSocketFactory)
97 && equal(this.hostnameVerifier, that.hostnameVerifier);
  /external/webkit/Source/WebCore/platform/graphics/
IntRectHash.h 42 static bool equal(const WebCore::IntRect& a, const WebCore::IntRect& b) function in struct:WTF::IntHash
44 return DefaultHash<WebCore::IntPoint>::Hash::equal(a.location(), b.location()) && DefaultHash<WebCore::IntSize>::Hash::equal(a.size(), b.size());
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
SuggestionCursorUtil.java 19 import static com.google.common.base.Objects.equal;
199 return equal(expected.getSuggestionSource(), observed.getSuggestionSource())
200 && equal(expected.getShortcutId(), observed.getShortcutId())
201 && equal(expected.isSpinnerWhileRefreshing(), observed.isSpinnerWhileRefreshing())
202 && equal(expected.getSuggestionFormat(), observed.getSuggestionFormat())
203 && equal(expected.getSuggestionIcon1(), observed.getSuggestionIcon1())
204 && equal(expected.getSuggestionIcon2(), observed.getSuggestionIcon2())
205 && equal(expected.getSuggestionText1(), observed.getSuggestionText1())
206 && equal(expected.getSuggestionText2(), observed.getSuggestionText2())
207 && equal(expected.getSuggestionText2Url(), observed.getSuggestionText2Url()
    [all...]
  /external/webkit/Source/WebCore/plugins/
PluginPackage.h 68 static bool equal(const PluginPackage& a, const PluginPackage& b);
142 static bool equal(const uintptr_t a, const uintptr_t b) { return equal(reinterpret_cast<PluginPackage*>(a), reinterpret_cast<PluginPackage*>(b)); } function in struct:WebCore::PluginPackageHash
143 static bool equal(const RefPtr<PluginPackage>& a, const RefPtr<PluginPackage>& b) { return PluginPackage::equal(*a.get(), *b.get()); } function in struct:WebCore::PluginPackageHash
  /external/webkit/Source/JavaScriptCore/wtf/
HashFunctions.h 91 static bool equal(T a, T b) { return a == b; } function in struct:WTF::IntHash
105 static bool equal(T a, T b) { return a == b; } function in struct:WTF::FloatHash
123 static bool equal(T a, T b) { return a == b; } function in struct:WTF::PtrHash
129 using PtrHash<P*>::equal;
130 static bool equal(const RefPtr<P>& a, const RefPtr<P>& b) { return a == b; } function in struct:WTF::PtrHash
131 static bool equal(P* a, const RefPtr<P>& b) { return a == b; } function in struct:WTF::PtrHash
132 static bool equal(const RefPtr<P>& a, P* b) { return a == b; } function in struct:WTF::PtrHash
144 static bool equal(const std::pair<T, U>& a, const std::pair<T, U>& b) function in struct:WTF::PairHash
146 return DefaultHash<T>::Hash::equal(a.first, b.first) && DefaultHash<U>::Hash::equal(a.second, b.second)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
SingletonImmutableTable.java 76 return Objects.equal(this.singleColumnKey, columnKey);
80 return Objects.equal(this.singleRowKey, rowKey);
84 return Objects.equal(this.singleValue, value);
126 return Objects.equal(this.singleRowKey, thatCell.getRowKey()) &&
127 Objects.equal(this.singleColumnKey, thatCell.getColumnKey()) &&
128 Objects.equal(this.singleValue, thatCell.getValue());
  /external/openfst/src/script/
equal.cc 19 #include <fst/script/equal.h>
24 bool Equal(const FstClass &fst1, const FstClass &fst2, float kDelta) {
25 if (!ArcTypesMatch(fst1, fst2, "Equal")) return false;
30 Apply<Operation<EqualArgs> >("Equal", fst1.ArcType(), &args_with_retval);
35 REGISTER_FST_OPERATION(Equal, StdArc, EqualArgs);
36 REGISTER_FST_OPERATION(Equal, LogArc, EqualArgs);
37 REGISTER_FST_OPERATION(Equal, Log64Arc, EqualArgs);
  /external/stlport/stlport/stl/
_relops_cont.h 10 equal(__x.begin(), __x.end(), __y.begin());
  /external/stlport/test/eh/
test_push_back.h 44 EH_ASSERT( EH_STD::equal( original.begin(), original.end(), c.begin() ) );
test_push_front.h 40 EH_ASSERT( EH_STD::equal( original.begin(), original.end(), ++next ) );
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicStringHash.h 43 static bool equal(const AtomicString& a, const AtomicString& b) function in struct:WTF::AtomicStringHash
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 10 equal(__x.begin(), __x.end(), __y.begin());
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 10 equal(__x.begin(), __x.end(), __y.begin());
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 10 equal(__x.begin(), __x.end(), __y.begin());
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 10 equal(__x.begin(), __x.end(), __y.begin());
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 10 equal(__x.begin(), __x.end(), __y.begin());

Completed in 1326 milliseconds

12 3 4 5 6 7 8 91011>>