/external/vulkan-validation-layers/libs/glm/detail/ |
D | _swizzle.hpp | 51 template <typename T, precision P, typename V, int E0, int E1, int E2, int E3, int N> 62 template <typename T, precision P, typename V, int E0, int E1, int E2> 63 struct _swizzle_base1<T, P, V,E0,E1,E2,-1,3> : public _swizzle_base0<T, 3> 65 …FUNC_QUALIFIER V operator ()() const { return V(this->elem(E0), this->elem(E1), this->elem(E2)); } in operator ()() 68 template <typename T, precision P, typename V, int E0, int E1, int E2, int E3> 69 struct _swizzle_base1<T, P, V,E0,E1,E2,E3,4> : public _swizzle_base0<T, 4> 71 … operator ()() const { return V(this->elem(E0), this->elem(E1), this->elem(E2), this->elem(E3)); } in operator ()() 86 …template <typename ValueType, precision P, typename VecType, int N, int E0, int E1, int E2, int E3… 87 struct _swizzle_base2 : public _swizzle_base1<ValueType, P, VecType,E0,E1,E2,E3,N> 145 const int offset_dst[4] = { E0, E1, E2, E3 }; in operator []() [all …]
|
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/ |
D | p2.cpp | 69 struct E2 { struct 70 …E2() noexcept(false) = default; // expected-error {{exception specification of explicitly defaulte… 71 …E2(const E2&) noexcept(false) = default; // expected-error {{exception specification of explicitly… 72 …E2(E2&&) noexcept(false) = default; // expected-error {{exception specification of explicitly defa… 73 …E2 &operator=(const E2&) noexcept(false) = default; // expected-error {{exception specification of… 74 …E2 &operator=(E2&&) noexcept(false) = default; // expected-error {{exception specification of expl… 75 …~E2() noexcept(false) = default; // expected-error {{exception specification of explicitly default…
|
/external/clang/test/SemaCXX/ |
D | ref-init-ambiguous.cpp | 3 enum E2 { }; enum 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 initializ… in test() 20 void foo(const E2 &);// expected-note{{passing argument to parameter here}} 22 const E2 & re(C c) { in re()
|
D | member-name-lookup.cpp | 21 enum E2 { enumerator2 }; enum 48 D::E2 e2 = D::enumerator2; // okay in test_lookup() 64 E2 e2 = enumerator2; // okay in test_lookup() 72 enum E2 { enumerator2 }; enum 104 D2::E2 e2 = D2::enumerator2; // okay in test_virtual_lookup() 123 E2 e2 = enumerator2; // okay in test_virtual_lookup()
|
D | derived-to-base-ambig.cpp | 17 class E2 : public D2, public C2, public virtual A2 { }; // expected-warning{{direct base 'C2' is in… class 18 class F2 : public E2, public A2 { }; // expected-warning{{direct base 'A2' is inaccessible due to a… 20 void g(E2* e2, F2* f2) { in g() 29 void overload_okay(E2*);
|
D | enum-scoped.cpp | 7 enum struct E2 { enum 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}} 260 enum class E2 : T; member 307 typedef E E2; typedef 308 E2 f1() { return E::a; } in f1()
|
D | overloaded-builtin-operators.cpp | 21 enum E2 { }; enum 23 operator E2(); 84 operator E2&(); 99 E2 e2r2; in g()
|
D | class-names.cpp | 52 enum E2 { E2 }; enum
|
D | overloaded-operator.cpp | 66 struct E2 { struct 67 E2(Enum2); 71 float& operator==(E1, E2); // expected-note{{candidate function}} 73 void enum_test(Enum1 enum1, Enum2 enum2, E1 e1, E2 e2, Enum1 next_enum1) { in enum_test()
|
/external/clang/INPUTS/ |
D | c99-intconst-1.c | 41 #define first_of2p(T1, E1, T2, E2) type_comb2(type_if(T1, (E1)), \ argument 42 type_if(T2, (!(E1) && (E2)))) 44 #define first_of3p(T1, E1, T2, E2, T3, E3) \ argument 46 type_if(T2, (!(E1) && (E2))), \ 47 type_if(T3, (!(E1) && !(E2) && (E3)))) 50 #define first_of4p(T1, E1, T2, E2, T3, E3, T4, E4) \ argument 52 type_if(T2, (!(E1) && (E2))), \ 53 type_if(T3, (!(E1) && !(E2) && (E3))), \ 54 type_if(T4, (!(E1) && !(E2) && !(E3) && (E4)))) 57 #define first_of6p(T1, E1, T2, E2, T3, E3, T4, E4, T5, E5, T6, E6) \ argument [all …]
|
/external/opencv3/modules/calib3d/src/ |
D | polynom_solver.cpp | 126 double D2, E2; in solve_deg4() local 130 D2 = E2 = -1; in solve_deg4() 134 E2 = D2 - 4 * sqrt_temp; in solve_deg4() 141 E2 = u - v; in solve_deg4() 154 if (E2 >= 0) { in solve_deg4() 155 double E = sqrt(E2); in solve_deg4()
|
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/ |
D | p3.cpp | 32 enum E2 { two }; enum 37 A operator >= (E1, const E2); 40 E2 b;
|
/external/clang/test/CXX/special/class.copy/ |
D | p23-cxx11.cpp | 146 struct E2 : AmbiguousMoveAssign { // expected-note {{base class 'AmbiguousMoveAssign' has multiple … struct 147 E2 &operator=(E2 &&) = default; // expected-note {{here}} 158 template struct MoveAssign<E2>; // expected-note {{here}}
|
/external/llvm/test/CodeGen/X86/ |
D | avx512vl-nontemporal.ll | 10 %E2 = add <4 x i64> %E, %EE 11 store <4 x i64> %E2, <4 x i64>* %cast1, align 64, !nontemporal !0 26 %E2 = add <2 x i64> %E, %EE 27 store <2 x i64> %E2, <2 x i64>* %cast1, align 64, !nontemporal !0
|
D | avx512-nontemporal.ll | 10 %E2 = add <8 x i64> %E, %EE 11 store <8 x i64> %E2, <8 x i64>* %cast1, align 64, !nontemporal !0
|
D | avx2-nontemporal.ll | 10 %E2 = add <4 x i64> %E, <i64 1, i64 2, i64 3, i64 4> 11 store <4 x i64> %E2, <4 x i64>* %cast1, align 32, !nontemporal !0
|
D | nontemporal.ll | 10 %E2 = add <2 x i64> %E, <i64 1, i64 2> 11 store <2 x i64> %E2, <2 x i64>* %cast1, align 16, !nontemporal !0
|
/external/clang/test/Modules/ |
D | macro-hiding.cpp | 96 #ifdef E2 100 #if defined(A1) || defined(B2) || defined(C1) || defined(D1) || defined(E1) || defined(E2)
|
/external/clang/include/clang/Analysis/Analyses/ |
D | ThreadSafetyCommon.h | 43 inline bool equals(const til::SExpr *E1, const til::SExpr *E2) { in equals() argument 44 return til::EqualsComparator::compareExprs(E1, E2); in equals() 47 inline bool matches(const til::SExpr *E1, const til::SExpr *E2) { in matches() argument 52 return isa<til::Wildcard>(E2); in matches() 53 if (isa<til::Wildcard>(E2)) in matches() 56 return til::MatchComparator::compareExprs(E1, E2); in matches() 59 inline bool partiallyMatches(const til::SExpr *E1, const til::SExpr *E2) { in partiallyMatches() argument 63 const auto *PE2 = dyn_cast_or_null<til::Project>(E2); in partiallyMatches()
|
D | ThreadSafetyTraverse.h | 289 bool compareByCase(const SExpr *E1, const SExpr* E2) { in compareByCase() argument 293 return cast<X>(E1)->compare(cast<X>(E2), *self()); in compareByCase() 316 bool compare(const SExpr *E1, const SExpr* E2) { in compare() argument 317 if (E1->opcode() != E2->opcode()) in compare() 319 return compareByCase(E1, E2); in compare() 330 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs() argument 332 return Eq.compare(E1, E2); in compareExprs() 352 bool compare(const SExpr *E1, const SExpr* E2) { in compare() argument 354 if (E1->opcode() == COP_Wildcard || E2->opcode() == COP_Wildcard) in compare() 357 if (E1->opcode() != E2->opcode()) in compare() [all …]
|
/external/clang/test/SemaTemplate/ |
D | instantiate-non-type-template-parameter.cpp | 40 enum E { E1, E2, E3 }; enumerator 42 template<typename T, E e = E2>
|
/external/clang/test/Sema/ |
D | warn-duplicate-enum.c | 31 E2 = E1, enumerator 32 E3 = E2
|
/external/caliper/examples/src/main/java/examples/ |
D | EnumSetContainsBenchmark.java | 39 return new Object[] { RegularSize.E1, RegularSize.E2, RegularSize.E20, in testValues() 58 E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12, E13, E14, E15, E16, E17, enumConstant 64 E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12, E13, E14, E15, E16, E17, enumConstant
|
/external/compiler-rt/test/cfi/ |
D | simple-pass.cpp | 71 struct E2 : virtual E { struct 117 e = new E2; in main()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | UndefBranchChecker.cpp | 42 if (const Expr *E2 = FindExpr(ExI)) in FindExpr() local 43 return E2; in FindExpr()
|