HomeSort by relevance Sort by last modified time
    Searched defs:e2 (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /external/clang/test/SemaCXX/
ref-init-ambiguous.cpp 3 enum E2 { };
6 operator E2&(); // expected-note 3 {{candidate function}}
10 operator E2&(); // expected-note 3 {{candidate function}}
17 const E2 &e2 = c; // expected-error {{reference initialization of type 'const E2 &' with initializer of type 'C' is ambiguous}} local
20 void foo(const E2 &);// expected-note{{passing argument to parameter here}}
22 const E2 & re(C c) {
23 foo(c); // expected-error {{reference initialization of type 'const E2 &' with initializer of type 'C' is ambiguous}}
25 return c; // expected-error {{reference initialization of type 'const E2 &' with initializer of type 'C' is ambiguous}
    [all...]
class-names.cpp 50 enum E e2; variable in typeref:enum:E
52 enum E2 { E2 };
expressions.cpp 100 e2 = A && 7 // expected-warning {{use of logical '&&' with constant operand}} \ enumerator in enum:S::__anon5750
switch.cpp 27 enum E { e1, e2 }; enumerator in enum:E
  /external/clang/test/CodeGen/
2007-04-11-PR1321.c 6 unsigned int e2 : 17; member in struct:X
  /external/chromium/third_party/modp_b64/
modp_b64_data.h 74 static const char e2[256] = { variable
  /external/clang/test/CXX/dcl.decl/dcl.init/
p14-0x.cpp 33 Explicit e2 = 42; // expected-error {{no viable conversion}} member in class:S
  /external/clang/test/CodeGenCXX/
member-expressions.cpp 33 A::E e2 = g()->Foo; local
  /external/openssl/crypto/des/
des3s.cpp 40 unsigned long s1,s2,e1,e2; local
59 GetTSC(e2);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
dess.cpp 40 unsigned long s1,s2,e1,e2; local
59 GetTSC(e2);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
  /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::__anon5188
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/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/openssl/crypto/md4/
md4s.cpp 45 unsigned long s1,s2,e1,e2; local
71 GetTSC(e2);
75 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);
  /external/openssl/crypto/md5/
md5s.cpp 45 unsigned long s1,s2,e1,e2; local
71 GetTSC(e2);
75 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);
  /external/openssl/crypto/rc4/
rc4s.cpp 41 unsigned long s1,s2,e1,e2; local
65 GetTSC(e2);
70 e1-s1,e2-s2,(e1-s1)-(e2-s2));
  /external/openssl/crypto/ripemd/asm/
rips.cpp 47 unsigned long s1,s2,e1,e2; local
75 GetTSC(e2);
79 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);
  /sdk/androidprefs/src/com/android/prefs/
AndroidLocation.java 68 AndroidLocationException e2 = new AndroidLocationException(String.format( local
72 e2.initCause(e);
73 throw e2;
  /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 52 enum __declspec(deprecated) E2 { i, j, k };
58 enum E2 e1; // expected-warning {{'E2' is deprecated}}
59 enum E3 e2; // No warning expected, the deprecation follows the variable local
  /external/clang/test/Sema/
attr-aligned.c 38 char e2[__alignof__(e.member) == 2 ?: -1] = {0}; variable
  /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);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SampleElements.java 32 public final E e2; field in class:SampleElements
36 public SampleElements(E e0, E e1, E e2, E e3, E e4) {
39 this.e2 = e2;
70 Helpers.mapEntry(keys.e2, values.e2),
  /external/openssl/crypto/aes/
aes_wrap.c 208 static const unsigned char e2[] = { local
246 ret = AES_wrap_unwrap_test(kek, 192, NULL, e2, key, 16);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_FwdTransformResidual4x4.c 46 int e2 = d1 + d2; local
48 int f0 = e0 + e2;
50 int f2 = e0 - e2;
armVCM4P10_TransformResidual4x4.c 47 int e2 = (d1>>1) - d3; local
50 int f1 = e1 + e2;
51 int f2 = e1 - e2;

Completed in 1395 milliseconds

1 2 3 4 5 6