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

1 2 3 4 5 6 7

  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p9.cpp 4 template<char C1, char C2>
9 template<int C1>
10 struct X<C1, C1> {
21 template<unsigned char C1, unsigned char C3>
22 struct int_values<C1, 12, C3> {
  /external/clang/test/SemaTemplate/
dependent-class-member-operator.cpp 4 template<class T> struct C1 { void operator()(T); };
8 foo(&C1<int>::operator());
9 foo(&C1<int>::operator+); // expected-error {{no member named 'operator+' in 'C1<int>'}}
class-template-id-2.cpp 12 class C1 : public N::A<int> { };
  /external/clang/test/Modules/Inputs/wildcard-submodule-exports/
C_one.h 4 long *C1;
  /external/clang/test/SemaCXX/
PR12481.cpp 3 class C1 { };
14 BinaryTrie<C1> c1_trie_;
ambiguous-builtin-unary-operator.cpp 27 struct C1 : B1, A1 { };
29 void test(C1 c) {
out-of-line-def-mismatch.cpp 7 class C1 {};
11 void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaration does not match definition ('const N2::S1 *' vs 'const N2::N1::S1 *')}}
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
builtin-ptrtomember-overload-1.cpp 33 struct C1 : B1 {
37 void foo1(C1 c1, int A::* pmf) {
38 int i = c1->*pmf;
39 c1->*pmf = 10;
42 void foo1(C1 c1, int E::* pmf) {
43 int i = c1->*pmf; // expected-error {{use of overloaded operator '->*' is ambiguous}} \
44 // expected-note {{because of ambiguity in conversion of 'C1' to 'E *'}} \
vtable-instantiation.cc 4 template<class T1> struct C1 {
5 virtual void c1() { function in struct:PR8640::C1
12 new C1<T2>(); // expected-note {{in instantiation of member function}}
namespace-alias.cpp 92 class C1;
95 class C1;
97 C1 *pc1 = 0;
cstyle-cast.cpp 46 struct C1 : public virtual B {}; // Single virtual base.
48 struct D : public C1, public C2 {}; // Diamond
50 struct F : public C1 {}; // Single path to B with virtual.
87 (void)(const B*)((C1*)0);
88 (void)(B&)(*((C1*)0));
125 (void)(C1*)((A*)0); // expected-error {{cannot cast 'A *' to 'C1 *' via virtual base 'B'}}
126 (void)(C1&)(*((A*)0)); // expected-error {{cannot cast 'A' to 'C1 &' via virtual base 'B'}}
static-cast.cpp 4 struct C1 : public virtual B {}; // Single virtual base.
6 struct D : public C1, public C2 {}; // Diamond
8 struct F : public C1 {}; // Single path to B with virtual.
45 (void)static_cast<const B*>((C1*)0);
46 (void)static_cast<B&>(*((C1*)0));
83 (void)static_cast<C1*>((A*)0); // expected-error {{cannot cast 'A *' to 'C1 *' via virtual base 'B'}}
84 (void)static_cast<C1&>(*((A*)0)); // expected-error {{cannot cast 'A' to 'C1 &' via virtual base 'B'}}
  /external/clang/test/CodeGenCXX/
vtable-layout-extreme.cpp 10 class C1
17 , virtual public C1
23 , virtual public C1
42 , public C1
52 , public C1
71 , public C1
111 // CHECK-NEXT: -- (Test1::C1, 64) vtable address --
122 // CHECK-NEXT: -- (Test1::C1, 104) vtable address --
132 // CHECK-NEXT: -- (Test1::C1, 152) vtable address --
164 // CHECK-NEXT: -- (Test1::C1, 224) vtable address -
    [all...]
vtt-layout.cpp 33 class C1 : public virtual V1 { int i; };
37 class D : public C1, public C2, public C3 { int i; };
52 class C1 : public virtual V1 { int i; };
56 class D : public C1, public C2, public C3 { int i; };
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
deduction.cpp 32 template<int C1, char C3>
33 struct char_values<C1, 12, C3> {
43 template<unsigned char C1, unsigned char C3>
44 struct int_values<C1, 12, C3> {
  /bionic/libm/src/
k_cosf.c 30 C1 = 0x155553e1053a42.0p-57, /* 0.0416666233237390631894 */
46 return ((one+z*C0) + w*C1) + (w*z)*r;
k_cos.c 30 * cos(x) ~ 1 - x*x/2 + C1*x + ... + C6*x
34 * |cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +C5*x +C6*x )| <= 2
38 * 4. let r = C1*x +C2*x +C3*x +C4*x +C5*x +C6*x , then
62 C1 = 4.16666666666666019037e-02, /* 0x3FA55555, 0x5555554C */
75 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
  /external/clang/test/CXX/temp/temp.param/
p12.cpp 37 class C1 {};
39 C1<> c1; // expected-note{{while checking a default template argument}} variable
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
TimeUnit.java 16 public long toMicros(long d) { return d/(C1/C0); }
26 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); }
28 public long toMillis(long d) { return d/(C2/C1); }
29 public long toSeconds(long d) { return d/(C3/C1); }
30 public long toMinutes(long d) { return d/(C4/C1); }
31 public long toHours(long d) { return d/(C5/C1); }
32 public long toDays(long d) { return d/(C6/C1); }
34 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); }
38 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1));
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 45 public long toMicros(long d) { return d/(C1/C0); }
55 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); }
57 public long toMillis(long d) { return d/(C2/C1); }
58 public long toSeconds(long d) { return d/(C3/C1); }
59 public long toMinutes(long d) { return d/(C4/C1); }
60 public long toHours(long d) { return d/(C5/C1); }
61 public long toDays(long d) { return d/(C6/C1); }
63 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); }
67 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1));
    [all...]
  /external/clang/test/Modules/
wildcard-submodule-exports.cpp 9 long *C1_ptr = C1;
  /external/bluetooth/bluez/sbc/
sbc_tables.h 380 #define C1 1.3056875580
386 F(5.36548976E-04 * C1), F(2.73370904E-03 * C1),
390 F(2.04385087E-02 * C1), F(3.21939290E-02 * C1),
394 F(1.94987841E-01 * C1), F(2.81828203E-01 * C1),
398 -F(7.76463494E-02 * C1), F(6.13245186E-03 * C1),
402 -F(3.06012286E-03 * C1), F(3.89205149E-03 * C1)
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
p2-0x.cpp 89 class C1 {
91 using C1 = C1; // expected-error {{name defined in alias declaration must be an identifier}}
94 using C0 = C1; // ok
149 class C1 {
153 C1::U w; // ok
  /external/llvm/include/llvm/
Constants.h     [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp     [all...]

Completed in 539 milliseconds

1 2 3 4 5 6 7