HomeSort by relevance Sort by last modified time
    Searched refs:equal (Results 51 - 75 of 2040) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/fixedbugs/
bug406.go 14 func (a matrix) equal() bool { func
25 i = true && a.equal()
bug496.go 10 // <built-in>: error: redefinition of ?s$F$equal?
11 // <built-in>: note: previous definition of ?s$F$equal? was here
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-sh/arch/
arch.exp 89 if {[string equal $ld_output ""] == 1} then {
130 if {[string equal $ld_output ""] == 1} then {
156 if [string equal [big_or_little_endian] " -EL"] then {
175 if [string equal [big_or_little_endian] " -EL"] then {
183 if [string equal [get_sh_arch "sh-unknown.o"] "sh4al-dsp"] then {
223 if {[string equal $exfile1 $name1] && [string equal $exfile2 $file2]} then {
227 if {[string equal $exarch "ERROR"]} then {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/arch/
arch.exp 78 if [string equal $opt "default-options"] then {
113 if [string equal $opt "default-options"] then {
176 if {[string equal $exfile $name] && [string equal $exopt $opt]} then {
180 if {[string equal $exarch "ERROR"]} then {
  /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())) {
  /prebuilts/go/darwin-x86/src/reflect/
deepequal.go 136 // DeepEqual reports whether x and y are ``deeply equal,'' defined as follows.
137 // Two values of identical type are deeply equal if one of the following cases applies.
138 // Values of distinct types are never deeply equal.
140 // Array values are deeply equal when their corresponding elements are deeply equal.
142 // Struct values are deeply equal if their corresponding fields,
143 // both exported and unexported, are deeply equal.
145 // Func values are deeply equal if both are nil; otherwise they are not deeply equal.
147 // Interface values are deeply equal if they hold deeply equal concrete values
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
deepequal.go 136 // DeepEqual reports whether x and y are ``deeply equal,'' defined as follows.
137 // Two values of identical type are deeply equal if one of the following cases applies.
138 // Values of distinct types are never deeply equal.
140 // Array values are deeply equal when their corresponding elements are deeply equal.
142 // Struct values are deeply equal if their corresponding fields,
143 // both exported and unexported, are deeply equal.
145 // Func values are deeply equal if both are nil; otherwise they are not deeply equal.
147 // Interface values are deeply equal if they hold deeply equal concrete values
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tst_badblocks.c 272 int equal; local
320 equal = ext2fs_badblocks_equal(bb1, bb2);
321 printf("bb1 and bb2 are %sequal.\n", equal ? "" : "NOT ");
322 if (equal)
325 equal = ext2fs_badblocks_equal(bb1, bb3);
326 printf("bb1 and bb3 are %sequal.\n", equal ? "" : "NOT ");
327 if (!equal)
330 equal = ext2fs_badblocks_equal(bb1, bb4);
331 printf("bb1 and bb4 are %sequal.\n", equal ? "" : "NOT ");
332 if (equal)
    [all...]
  /external/clang/test/SemaCXX/
builtins.cpp 13 int equal(const char *s1, const char *s2) { function
17 template int equal<&__builtin_strcmp>(const char*, const char*); // expected-error {{builtin functions must be directly called}} expected-error {{expected unqualified-id}} expected-error {{expected ')'}} expected-note {{to match this '('}}
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
Edge.java 49 return Objects.equal(fromId, other.fromId) && Objects.equal(toId, other.toId);
Node.java 55 return Objects.equal(id, other.id)
56 && (ignoreSourceInComparisons || Objects.equal(source, other.source));
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
b-bend3.d 6 #error: invalid mmo file: YZ of lop_end .* not equal to the number of tetras to the preceding lop_stab
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/
random_shuffle_rand.pass.cpp 40 LIBCPP_ASSERT(std::equal(ia, ia+sa, ia1));
  /external/llvm/unittests/Support/
StreamingMemoryObjectTest.cpp 62 EXPECT_TRUE(std::equal(InputBuffer + 1, InputBuffer + 2, O.getPointer(1, 2)));
63 EXPECT_TRUE(std::equal(InputBuffer + 3, InputBuffer + 7, O.getPointer(3, 4)));
64 EXPECT_TRUE(std::equal(InputBuffer + 4, InputBuffer + 8, O.getPointer(4, 5)));
65 EXPECT_TRUE(std::equal(InputBuffer, InputBuffer + 8, O.getPointer(0, 20)));
  /external/proguard/src/proguard/util/
ObjectUtil.java 35 public static boolean equal(Object object1, Object object2) method in class:ObjectUtil
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug496.go 10 // <built-in>: error: redefinition of ?s$F$equal?
11 // <built-in>: note: previous definition of ?s$F$equal? was here
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/
random_shuffle_rand.pass.cpp 40 LIBCPP_ASSERT(std::equal(ia, ia+sa, ia1));
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_buffer.cc 40 bool equal = id() == other.id(); local
41 if (equal) {
45 return equal;
  /packages/apps/Contacts/src/com/android/contacts/model/account/
AccountComparator.java 34 if (Objects.equal(a.name, b.name) && Objects.equal(a.type, b.type)
35 && Objects.equal(a.dataSet, b.dataSet)) {
  /external/libese/libapdu/tests/
apdu_test.cpp 34 ASSERT_TRUE(std::equal(apdu.begin(), apdu.end(), expected.begin(), expected.end()));
41 ASSERT_TRUE(std::equal(apdu.begin(), apdu.end(), expected.begin(), expected.end()));
48 ASSERT_TRUE(std::equal(apdu.begin(), apdu.end(), expected.begin(), expected.end()));
55 ASSERT_TRUE(std::equal(apdu.begin(), apdu.end(), expected.begin(), expected.end()));
62 ASSERT_TRUE(std::equal(apdu.begin(), apdu.end(), expected.begin(), expected.end()));
69 ASSERT_TRUE(std::equal(apdu.begin(), apdu.end(), expected.begin(), expected.end()));
82 ASSERT_TRUE(std::equal(apdu.begin(), apdu.end(), expected.begin(), expected.end()));
90 ASSERT_TRUE(std::equal(apdu.begin(), apdu.end(), expected.begin(), expected.end()));
100 ASSERT_TRUE(std::equal(apdu.begin(), apdu.end(), expected.begin(), expected.end()));
107 ASSERT_TRUE(std::equal(apdu.begin(), apdu.end(), expected.begin(), expected.end()))
    [all...]
  /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...]
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
objcopy.exp 58 if ![string equal "" $got] then {
95 if [string equal "" $exec_output] then {
122 if ![string equal "" $got] then {
170 if ![string equal "" $got] then {
185 if ![string equal "1256" $line] then {
209 if ![string equal "" $got] then {
270 if ![string equal "" $got] then {
287 if ![string equal "" $got] then {
332 if ![string equal "" $got] then {
366 if ![string equal "" $got] then
    [all...]
  /art/compiler/utils/
dedupe_set_test.cc 68 ASSERT_TRUE(std::equal(test1.begin(), test1.end(), array1->begin()));
77 ASSERT_TRUE(std::equal(test2.begin(), test2.end(), array2->begin()));
87 ASSERT_TRUE(std::equal(test3.begin(), test3.end(), array3->begin()));
  /external/guice/core/src/com/google/inject/spi/
Dependency.java 110 return Objects.equal(injectionPoint, dependency.injectionPoint)
111 && Objects.equal(parameterIndex, dependency.parameterIndex)
112 && Objects.equal(key, dependency.key);
  /hardware/intel/common/libmix/mix_audio/src/
mixaip.c 59 mixparams_class->equal = (MixParamsEqualFunction)mix_aip_equal;
143 * @returns: boolean indicates if instance are equal.
157 // members within this scope equal. chaining up.
159 if (klass->equal)
160 ret = parent_class->equal(first, second);

Completed in 1296 milliseconds

1 23 4 5 6 7 8 91011>>