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

1 2 34 5 6 7 8 910

  /external/clang/test/Parser/
declarators.c 112 enum E2 { e2 } : 4; // ok enumerator in enum:EnumBitfield::E2
  /external/clang/test/SemaCXX/
MicrosoftExtensions.cpp 69 int e2; member in union:A::__anon6786::C2
abstract.cpp 46 C (*e2)[2]; // expected-error {{array of abstract class type 'C'}} variable
warn-sign-conversion.cpp 76 int e2 = 1 ? E : i; // expected-warning {{operand of ? changes signedness: 'test2::Named5' to 'int'}} local
enum-scoped.cpp 7 enum struct E2 {
16 static_assert(sizeof(E2) == sizeof(int), "bad size");
17 static_assert(sizeof(E2::Val1) == sizeof(int), "bad size");
19 E1 v3 = E2::Val1; // expected-error{{cannot initialize a variable}}
41 e2 = 2147483647, // ok member in class:E1::E2::E4
47 e2 // expected-error{{2147483648 is not representable in the underlying}}
51 e1 = false, e2 = true, member in class:E1::E2::E4::E6
56 e1 = false, e2 = true,
63 e1, e2, member in struct:E1::E2::E4::X
overloaded-builtin-operators.cpp 19 enum E2 { };
21 operator E2();
38 void f(Short s, Long l, Enum1 e1, Enum2 e2, Xpmf pmf) {
41 int i2 = -e2;
60 // FIXME: should pass (void)static_cast<no&>(islong(e1 % e2));
76 operator E2&();
91 E2 e2r2;
200 MyEnum e1, e2; local
201 if (e1 > e2) {}
  /external/icu4c/common/
uvector.cpp 499 UElement e2 = *static_cast<const UElement *>(right); local
500 int32_t result = (*compare)(e1, e2);
512 const UElement *e2 = static_cast<const UElement *>(right); local
513 int32_t result = e1->integer < e2->integer? -1 :
514 e1->integer == e2->integer? 0 : 1;
  /external/jdiff/src/jdiff/
JDiff.java 226 } catch (NoSuchMethodException e2) {
228 e2.printStackTrace();
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
Intersection.java 99 e2 = vars.vect6; local
116 tmp0.subtract(tmp2, e2); // tri edge 2
198 fex = FastMath.abs(e2.x);
199 fey = FastMath.abs(e2.y);
200 fez = FastMath.abs(e2.z);
202 // AXISTEST_X2(e2[Z], e2[Y], fez, fey);
203 p0 = e2.z * tmp0.y - e2.y * tmp0.z;
204 p1 = e2.z * tmp1.y - e2.y * tmp1.z
    [all...]
  /frameworks/av/media/libeffects/factory/
EffectsFactory.c 330 list_elem_t *e2; local
340 e2 = NULL;
343 if (e2) {
344 e2->next = e1->next;
352 e2 = e1;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_TransformResidual4x4_s.s 72 e2 RN 8 label
216 SHADD16 e2, trRow10,constZero ;// (f1>>1) constZero is a register holding 0
217 SHADD16 e3, trRow30,constZero ;// avoid pipeline stalls for e2 and e3
218 SSUB16 e2, e2, trRow30 ;// e2 = (d1>>1) - d3
221 SADD16 rowOp10, e1, e2 ;// f1 = e1 + e2
222 SSUB16 rowOp20, e1, e2 ;// f2 = e1 - e2
    [all...]
  /libcore/luni/src/main/java/java/util/
AbstractList.java 493 Object e1 = it1.next(), e2 = it2.next(); local
494 if (!(e1 == null ? e2 == null : e1.equals(e2))) {
DualPivotQuicksort.java 134 int e2 = e3 - sixth; local
137 int ae1 = a[e1], ae2 = a[e2], ae3 = a[e3], ae4 = a[e4], ae5 = a[e5];
162 int pivot1 = ae2; a[e2] = a[left];
412 int e2 = e3 - sixth; local
415 long ae1 = a[e1], ae2 = a[e2], ae3 = a[e3], ae4 = a[e4], ae5 = a[e5];
440 long pivot1 = ae2; a[e2] = a[left];
707 int e2 = e3 - sixth; local
710 short ae1 = a[e1], ae2 = a[e2], ae3 = a[e3], ae4 = a[e4], ae5 = a[e5];
735 short pivot1 = ae2; a[e2] = a[left];
1000 int e2 = e3 - sixth; local
1295 int e2 = e3 - sixth; local
1668 int e2 = e3 - sixth; local
2041 int e2 = e3 - sixth; local
    [all...]
Arrays.java 1581 Object e1 = array1[i], e2 = array2[i]; local
1633 Object e1 = array1[i], e2 = array2[i]; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleElement.java 296 SimpleElement e2 = SimpleElement.parseLines(lines, inOutIndex); local
297 if (e2 != null) {
298 e.addInnerElement(e2);
  /system/media/camera/tests/
camera_metadata_tests.cpp 431 camera_metadata_entry e1, e2; local
435 result = get_camera_metadata_entry(m2, i, &e2);
437 EXPECT_EQ(e1.index, e2.index);
438 EXPECT_EQ(e1.tag, e2.tag);
439 EXPECT_EQ(e1.type, e2.type);
440 EXPECT_EQ(e1.count, e2.count);
444 EXPECT_EQ(e1.data.u8[j], e2.data.u8[j]);
489 camera_metadata_entry e1, e2; local
495 result = get_camera_metadata_entry(m2, i, &e2);
497 EXPECT_EQ(e1.index, e2.index)
569 camera_metadata_entry e1, e2; local
599 camera_metadata_entry e1, e2; local
679 camera_metadata_entry e1, e2; local
708 camera_metadata_entry e1, e2; local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 70 DropBoxManager.Entry e2 = dropbox.getNextEntry("DropBoxTest", e1.getTimeMillis()); local
71 assertTrue(null == dropbox.getNextEntry("DropBoxTest", e2.getTimeMillis()));
76 assertTrue(e1.getTimeMillis() < e2.getTimeMillis());
77 assertTrue(e2.getTimeMillis() < after);
81 assertEquals("TES", e2.getText(3));
85 e2.close();
143 DropBoxManager.Entry e2 = dropbox.getNextEntry("DropBoxTest", e1.getTimeMillis());
144 DropBoxManager.Entry e3 = dropbox.getNextEntry("DropBoxTest", e2.getTimeMillis());
149 assertTrue(e2.getTimeMillis() > e1.getTimeMillis());
150 assertTrue(e3.getTimeMillis() > e2.getTimeMillis())
205 DropBoxManager.Entry e2 = dropbox.getNextEntry(null, e1.getTimeMillis()); local
363 DropBoxManager.Entry e2 = dropbox.getNextEntry(null, e1.getTimeMillis()); local
483 DropBoxManager.Entry e2 = dropbox.getNextEntry(null, e1.getTimeMillis()); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoDecoder.java 500 LocalEntry e2 = decodedLocals.get(j); local
501 if (e2.address != 0) {
504 if ((entry.reg == e2.reg) && e2.isStart) {
505 decodedLocals.set(i, e2);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEBlockCipher.java 816 catch (IllegalBlockSizeException e2)
818 throw new InvalidKeyException(e2.getMessage());
874 catch (InvalidKeySpecException e2)
876 throw new InvalidKeyException("Unknown key type " + e2.getMessage());
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DebugInfoDecoder.java 500 LocalEntry e2 = decodedLocals.get(j); local
501 if (e2.address != 0) {
504 if ((entry.reg == e2.reg) && e2.isStart) {
505 decodedLocals.set(i, e2);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
LineGraph.java 48 Point e2= g.stringExtent(this.title); local
49 return new Point(Math.max(e1.x, e2.x), e1.y+e2.y);
  /external/skia/legacy/src/animator/
SkDrawExtraPathEffect.cpp 368 SkPathEffect* e2 = effect2->getPathEffect(); local
369 SkPathEffect* composite = new SkComposePathEffect(e1, e2);
371 e2->unref();
  /external/skia/src/animator/
SkDrawExtraPathEffect.cpp 365 SkPathEffect* e2 = effect2->getPathEffect(); local
366 SkPathEffect* composite = new SkComposePathEffect(e1, e2);
368 e2->unref();
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
bandwidth_estimator.c 604 float e1, e2; local
669 e2 = weight * ptrQuantizationTable[maxInd] + r;
671 e2 = (e2 > 0)? e2:-e2;
672 if(e1 < e2)
  /frameworks/native/libs/utils/
Unicode.cpp 296 const char16_t* e2 = s2+n2; local
298 while (s1 < e1 && s2 < e2) {
315 const char16_t* e2 = s2N+n2; local
317 while (s1H < e1 && s2N < e2) {

Completed in 939 milliseconds

1 2 34 5 6 7 8 910