HomeSort by relevance Sort by last modified time
    Searched defs:e2 (Results 76 - 100 of 851) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
class-names.cpp 50 enum E e2; variable in typeref:enum:E
52 enum E2 { E2 };
switch.cpp 27 enum E { e1, e2 }; enumerator in enum:E
expressions.cpp 105 e2 = A && 7 // expected-warning {{use of logical '&&' with constant operand}} \ enumerator in enum:S::__anon8950
  /external/dagger2/producers/src/test/java/dagger/producers/
ProducedTest.java 52 RuntimeException e2 = new CancellationException(); local
57 .addEqualityGroup(Produced.failed(e2), Produced.failed(e2))
  /external/nanopb-c/examples/using_double_on_avr/
test_conversions.c 33 uint64_t e2 = *(uint64_t*)&expected_double; local
42 if (g2 != e2)
46 (unsigned long long)e2);
  /frameworks/base/libs/androidfw/tests/
TypeWrappers_test.cpp 51 ResTable_entry e2; local
52 memset(&e2, 0, sizeof(e2));
53 e2.size = sizeof(e2);
54 e2.key.index = 1;
55 t.header.size += sizeof(e2);
71 memcpy(p, &e2, sizeof(e2));
72 p += sizeof(e2);
    [all...]
  /cts/tests/tests/app.usage/src/android/app/usage/cts/
UsageStatsTest.java 253 UsageEvents.Event e2 = new UsageEvents.Event(); local
256 reparceledEvents.getNextEvent(e2);
257 assertEquals(e1.getPackageName(), e2.getPackageName());
258 assertEquals(e1.getClassName(), e2.getClassName());
259 assertEquals(e1.getConfiguration(), e2.getConfiguration());
260 assertEquals(e1.getEventType(), e2.getEventType());
261 assertEquals(e1.getTimeStamp(), e2.getTimeStamp());
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 27 enum {e2}; // expected-note 2{{unnamed type used in template argument was declared here}} enumerator in enum:N0::__anon7991
36 int (*fp1)(int, __typeof__(e2)) = f1; // expected-warning{{template argument uses unnamed type}}
37 f1(e2); // expected-warning{{template argument uses unnamed type}}
38 f1(e2);
  /external/clang/test/CodeGenCXX/
constructor-destructor-return-this.cpp 126 E* e2 = gete(); local
127 e2->~E();
  /external/clang/test/Modules/Inputs/
DebugCXX.h 17 e2 = '2' enumerator in enum:DebugCXX::__anon8560
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRoot.java 47 RuntimeException e2 = null; typedefs
56 e2 = new MissingResourceException(
60 e2 = e;
63 exception = e2;
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRoot.java 45 RuntimeException e2 = null; typedefs
54 e2 = new MissingResourceException(
58 e2 = e;
61 exception = e2;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
SmallSet.java 44 // if e1 is null, e2 must be null; otherwise e2 must be different from e1
46 Object e1, e2; field in class:SmallSet
50 SmallSet(final Object e1, final Object e2) {
52 this.e2 = e2;
60 return new SmallSet(e1, e2);
64 return e1 == null ? 0 : (e2 == null ? 1 : 2);
77 e1 = e2;
78 e2 = null;
    [all...]
  /external/opencv/ml/src/
mltestset.cpp 53 const CvDI* e2 = (const CvDI*) b; local
55 return (e1->d < e2->d) ? -1 : (e1->d > e2->d);
  /external/opencv3/modules/rsobjdetect/src/
innerloop.cpp 55 sp<const Element> e2 = Element::BOOLEAN(rs); local
56 Type::Builder tb2(rs, e2);
  /external/snakeyaml/src/test/java/org/pyyaml/
PyEmitterTest.java 96 NodeEvent e2 = (NodeEvent) newEvent; local
97 assertEquals(e1.getAnchor(), e2.getAnchor());
101 CollectionStartEvent e2 = (CollectionStartEvent) newEvent; local
102 assertEquals(e1.getTag(), e2.getTag());
106 ScalarEvent e2 = (ScalarEvent) newEvent; local
107 if (e1.getImplicit().bothFalse() && e2.getImplicit().bothFalse()) {
108 assertEquals(e1.getTag(), e2.getTag());
110 assertEquals(e1.getValue(), e2.getValue());
257 NodeEvent e2 = (NodeEvent) newEvent; local
258 assertEquals(e1.getAnchor(), e2.getAnchor())
262 CollectionStartEvent e2 = (CollectionStartEvent) newEvent; local
267 ScalarEvent e2 = (ScalarEvent) newEvent; local
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
partition.c 79 struct partition_elem *e2; local
100 e2 = &(elements[elem2]);
104 += elements[e2->class_element].class_count;
107 e2->class_element = class_element;
108 for (p = e2->next; p != e2; p = p->next)
114 e1->next = e2->next;
115 e2->next = old_next;
127 int e2 = * (const int *) elem2; local
128 if (e1 < e2)
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p1.cpp 34 ScopedEnum1<double>::E e2 = decltype(e2)::e; // expected-note {{in instantiation of enumeration 'ScopedEnum::ScopedEnum1<double>::E' requested here}} member in struct:ScopedEnum::ScopedEnum1::ScopedEnum2::UnscopedEnum3
  /external/clang/test/Parser/
MicrosoftExtensions.c 41 enum __declspec(deprecated) E2 { i, j, k }; /* expected-note {{'E2' has been explicitly marked deprecated here}} */
46 enum E2 e1; /* expected-warning {{'E2' is deprecated}} */
47 enum E3 e2; /* No warning expected, the deprecation follows the variable */ local
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
TimeLineGraphItem.java 58 Point e2= g.stringExtent(this.title); local
59 return new Point(Math.max(e1.x, e2.x), e1.y+e2.y);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_FwdTransformResidual4x4.c 61 int e2 = d1 + d2; local
63 int f0 = e0 + e2;
65 int f2 = e0 - e2;
armVCM4P10_TransformResidual4x4.c 62 int e2 = (d1>>1) - d3; local
65 int f1 = e1 + e2;
66 int f2 = e1 - e2;
  /frameworks/base/tools/aapt2/util/
StringPiece.h 184 const char* e2 = b2 + rhs.mLength; local
186 while (b1 < e1 && b2 < e2) {
  /ndk/tests/device/test-stlport_shared-exception/jni/
ia64-2.cpp 17 struct E { D *e1; B *e2; }; member in struct:E
37 B b = *x.e2;
  /ndk/tests/device/test-stlport_static-exception/jni/
ia64-2.cpp 17 struct E { D *e1; B *e2; }; member in struct:E
37 B b = *x.e2;

Completed in 665 milliseconds

1 2 34 5 6 7 8 91011>>