HomeSort by relevance Sort by last modified time
    Searched refs:NE (Results 1 - 25 of 309) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava-tests/test/com/google/common/collect/
MultisetsImmutableEntryTest.java 33 private static final String NE = null;
50 assertEquals("null", entry(NE, 1).toString());
51 assertEquals("null x 2", entry(NE, 2).toString());
64 assertEquals(control(NE, 1), entry(NE, 1));
65 assertFalse(control(NE, 1).equals(entry(NE, 2)));
66 assertFalse(entry(NE, 1).equals(control("bar", 1)));
67 assertFalse(entry(NE, 1).equals(new Object()));
68 assertFalse(entry(NE, 1).equals(null))
    [all...]
  /external/clang/test/Preprocessor/
macro_with_initializer_list.cpp 74 #define NE(x,y) (void)(x != y) // expected-note 6{{defined here}}
80 NE(F,F);
82 NE(F,Foo());
84 NE(F,Foo({1,2,3}));
86 NE((Foo{1,2,3}),(Foo{1,2,3}));
89 NE(F,Foo{1,2,3});
93 NE(Foo{1,2,3},F);
97 NE(Foo{1,2,3},Foo{1,2,3});
102 NE(Foo{1,2,3} + Foo{1,2,3}, F);
106 NE(F, Foo({1,2,3}) + Foo{1,2,3})
    [all...]
  /external/clang/test/CodeGen/
2005-04-09-ComplexOps.c 8 _Bool NE(double __complex A, double __complex B) { return A != B; }
  /art/runtime/interpreter/mterp/arm/
op_cmp_long.S 15 sbcs ip, r1, r3 @ Sets correct CCs for checking LT (but not EQ/NE)
18 cmpeq r0, r2 @ For correct EQ/NE, we may need to repeat the first CMP
  /external/dexmaker/src/main/java/com/google/dexmaker/
Comparison.java 64 NE() {
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tkconstants.py 14 NE='ne'
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkconstants.py 14 NE='ne'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 14 NE='ne'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 14 NE='ne'
  /external/llvm/lib/Target/NVPTX/
NVPTX.h 36 NE,
144 NE,
  /external/valgrind/none/tests/s390x/
cgij.c 21 #define NE 6
132 CGIJ(7,NE,8,2a) "\n\t" /* 0x2a == 42 */
cij.c 21 #define NE 6
132 CIJ(7,NE,8,2a) "\n\t" /* 0x2a == 42 */
clgij.c 21 #define NE 6
132 CLGIJ(7,NE,8,2a) "\n\t" /* 0x2a == 42 */
clij.c 21 #define NE 6
132 CLIJ(7,NE,8,2a) "\n\t" /* 0x2a == 42 */
cgrj.c 21 #define NE 6
147 CGRJ(7,8,8,NE) "\n\t"
clgrj.c 21 #define NE 6
147 CLGRJ(7,8,8,NE) "\n\t"
clrj.c 21 #define NE 6
147 CLRJ(7,8,8,NE) "\n\t"
crj.c 21 #define NE 6
147 CRJ(7,8,8,NE) "\n\t"
  /external/v8/src/parsing/
token.h 90 T(NE, "!=", 9) \
241 return op == NE || op == NE_STRICT;
252 case EQ: return NE;
253 case NE: return EQ;
270 case NE: return NE;
  /external/eigen/lapack/
ilaclc.f 107 ELSE IF( A(1, N).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN
113 IF( A(I, ILACLC).NE.ZERO ) RETURN
iladlc.f 107 ELSE IF( A(1, N).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN
113 IF( A(I, ILADLC).NE.ZERO ) RETURN
ilaslc.f 107 ELSE IF( A(1, N).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN
113 IF( A(I, ILASLC).NE.ZERO ) RETURN
ilazlc.f 107 ELSE IF( A(1, N).NE.ZERO .OR. A(M, N).NE.ZERO ) THEN
113 IF( A(I, ILAZLC).NE.ZERO ) RETURN
  /frameworks/av/include/media/stagefright/foundation/
ADebug.h 76 MAKE_COMPARATOR(NE,!=)
96 #define CHECK_NE(x,y) CHECK_OP(x,y,NE,!=)
  /prebuilts/go/darwin-x86/test/bench/shootout/
meteor-contest.c 86 #define NE 10
92 { SE, E, NE, E},
95 { SE, E, NE, S},
97 { E, SE, SE, NE},
174 case NE:
219 case NE:
325 if(!out_of_bounds(index, NE))
326 fill_contiguous_space(board, shift(index, NE));

Completed in 289 milliseconds

1 2 3 4 5 6 7 8 91011>>