HomeSort by relevance Sort by last modified time
    Searched full:equality (Results 1 - 25 of 1494) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
warn-unused-comparison.cpp 14 x == 7; // expected-warning {{equality comparison result unused}} \
15 // expected-note {{use '=' to turn this equality comparison into an assignment}}
18 7 == x; // expected-warning {{equality comparison result unused}}
19 p == p; // expected-warning {{equality comparison result unused}} \
20 // expected-note {{use '=' to turn this equality comparison into an assignment}} \
22 a == a; // expected-warning {{equality comparison result unused}} \
23 // expected-note {{use '=' to turn this equality comparison into an assignment}}
24 a == b; // expected-warning {{equality comparison result unused}} \
25 // expected-note {{use '=' to turn this equality comparison into an assignment}}
28 A() == b; // expected-warning {{equality comparison result unused}
    [all...]
warn-assignment-condition.cpp 16 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
21 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
26 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
31 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
36 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
41 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
46 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
50 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
62 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
67 // expected-note{{use '==' to turn this assignment into an equality comparison}}
    [all...]
  /external/mockito/src/org/mockito/internal/matchers/apachecommons/
package.html 7 Argument matchers that use Apache Commons Lang reflection-equality.
  /external/clang/test/Sema/
unused-expr-system-header.c 7 // expected-note {{equality comparison}}
10 // expected-note {{equality comparison}}
  /external/clang/test/FixIt/
no-macro-fixit.c 13 // expected-note {{use '==' to turn this assignment into an equality comparison}} \
  /external/llvm/test/Analysis/BasicAA/
2003-04-25-GEPCrash.ll 2 ; Test for a bug in BasicAA which caused a crash when querying equality of P1&P2
2003-03-04-GEPCrash.ll 2 ; Test for a bug in BasicAA which caused a crash when querying equality of P1&P2
  /external/chromium_org/chrome/renderer/safe_browsing/
test_utils.h 12 // operator== or ContainerEq, since hash_map's equality operator may return
  /external/chromium_org/ppapi/shared_impl/
unittest_utils.h 12 // Compares two vars for equality. This is a deep comparison (the entire graph
  /external/clang/test/SemaObjC/
self-assign.m 10 // expected-note{{use '==' to turn this assignment into an equality comparison}} \
  /external/libvpx/libvpx/vp8/common/
mv.h 26 } int_mv; /* facilitates faster equality tests and copies */
  /external/chromium/webkit/glue/
form_field.h 38 // Equality tests for identity which does not include |value_| or |size_|.
45 // Test equality of all data members.
  /bionic/libc/arch-x86/string/
sse2-wcscmp-atom.S 178 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality */
187 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality */
196 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality */
245 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality */
254 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality */
324 pcmpeqd 16(%edi), %xmm2 /* compare first 4 double_words for equality */
332 pcmpeqd 32(%edi), %xmm2 /* compare first 4 double_words for equality */
340 pcmpeqd 48(%edi), %xmm2 /* compare first 4 double_words for equality */
414 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality */
423 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality */
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
EqualsTester.java 36 * <p>To use, create a new EqualsTester and add equality groups where each group
51 * <li>comparing each pair of objects within the same equality group returns
53 * <li>comparing each pair of objects from different equality groups returns
62 * <i>j</i><sup>th</sup> item in the <i>i</i><sup>th</sup> equality group,
63 * where both equality groups and the items within equality groups are
86 * each other and not equal to any other equality groups added to this tester.
  /external/chromium_org/v8/test/mjsunit/
compare-known-objects-slow.js 30 // Test CompareIC stubs for normal and strict equality comparison of known
43 // Check CompareIC for equality of known objects.
47 // Check CompareIC for strict equality of known objects.
  /art/runtime/
strutil.h 31 // Key equality function for C strings.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
BCStrictStyle.java 8 * Variation of BCStyle that insists on strict ordering for equality
  /external/libvpx/libvpx/vp9/common/
vp9_mv.h 26 } int_mv; /* facilitates faster equality tests and copies */
  /external/clang/test/SemaTemplate/
resolve-single-template-id.cpp 47 oneT<int> == 0; // expected-warning {{equality comparison result unused}} \
48 // expected-note {{use '=' to turn this equality comparison into an assignment}}
49 0 == oneT<int>; // expected-warning {{equality comparison result unused}}
71 oneT<int> == 0; // expected-warning {{equality comparison result unused}} \
72 // expected-note {{use '=' to turn this equality comparison into an assignment}}
  /external/guava/guava/src/com/google/common/collect/
ForwardingObject.java 32 * Custom definitions of equality are usually based on an interface, such as
34 * cast the object being tested for equality to the custom interface. {@code
42 * ForwardingList}, to preserve equality behavior, or override {@code equals}
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
DbQueryUtils.java 33 /** Returns a WHERE clause asserting equality of a field to a value. */
38 /** Returns a WHERE clause asserting equality of a field to a value. */
43 /** Returns a WHERE clause asserting in-equality of a field to a value. */
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/utils/
DbQueryUtils.java 30 /** Returns a WHERE clause assert equality of a field to a value for the specified table . */
35 /** Returns a WHERE clause assert equality of a field to a value. */
  /external/chromium_org/printing/
page_setup.h 20 // Equality operator.
43 // Equality operator.
  /external/chromium_org/third_party/icu/source/i18n/unicode/
tmunit.h 80 * Equality operator.
87 * Non-Equality operator.
  /external/chromium_org/third_party/zlib/
zlib.gyp 101 '-Wno-parentheses-equality',
105 '-Wno-parentheses-equality',

Completed in 1766 milliseconds

1 2 3 4 5 6 7 8 91011>>