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

1 2 3

  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p2.cpp 81 struct E3 {
82 E3() = default;
83 E3(const E3&) = default;
84 E3(E3&&) = default;
85 E3 &operator=(const E3&) = default;
86 E3 &operator=(E3&&) = default
89 E3 e3; variable
90 static_assert(noexcept(E3(), E3(E3()), E3(e3), e3 = E3(), e3 = e3), ""); variable
    [all...]
  /external/clang/test/SemaCXX/
member-name-lookup.cpp 23 enum E3 { enumerator3 }; // expected-note 2{{member found by ambiguous name lookup}}
30 enum E3 { enumerator3_2 }; // expected-note 2{{member found by ambiguous name lookup}}
50 D::E3 e3; // expected-error{{multiple base classes}} local
66 E3 e3; // expected-error{{member 'E3' found in multiple base classes of different types}} local
74 enum E3 { enumerator3 }; // expected-note 2 {{member found by ambiguous name lookup}}
81 enum E3 { enumerator3_2 }; // expected-note 2{{member found by ambiguous name lookup}}
106 D2::E3 e3; // expected-error{{member 'E3' found in multiple base classes of different types} local
125 E3 e3; \/\/ expected-error{{member 'E3' found in multiple base classes of different types}} local
    [all...]
enum-bitfield.cpp 12 enum E3 : Integer;
enum-scoped.cpp 22 enum E3 : char {
26 E3 v4 = Val2;
29 static_assert(sizeof(E3) == 1, "bad size");
42 e3 = 2147483648 // expected-error{{enumerator value evaluates to 2147483648, which cannot be narrowed to type 'int'}} member in class:E1::E2::E4
52 e3 // expected-error{{2 is not representable in the underlying}}
57 e3 // expected-error{{2 is not representable in the underlying}}
64 e3 // expected-error{{2 is not representable in the underlying}}
  /external/clang/test/ASTMerge/Inputs/
enum1.c 16 enum E3 {
enum2.c 16 enum E3 {
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/
tuple_element.fail.cpp 31 using E3 = typename std::tuple_element<4, T const>::type;
  /device/linaro/bootloader/edk2/EmulatorPkg/BootModePei/
BootModePei.inf 21 FILE_GUID = 64196C76-58E3-0B4D-9484-B54F7C4349CA
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
124-preprocessing-numbers.c 31 .23E3-MUST_EXPAND
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/
VgaClassDxe.inf 21 FILE_GUID = BF89F10D-B205-474f-96E3-7A7BB1B4A407
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DormandPrince54Integrator.java 80 private static final double E3 = -71.0 / 16695.0;
141 final double errSum = E1 * yDotK[0][j] + E3 * yDotK[2][j] +
  /external/clang/test/Parser/
MicrosoftExtensions.c 45 __declspec(deprecated) enum E3 { a, b, c } e; /* expected-note {{'e' has been explicitly marked deprecated here}} */
50 enum E3 e2; /* No warning expected, the deprecation follows the variable */
51 enum E3 e3 = e; /* expected-warning {{'e' is deprecated}} */ local
  /external/clang/INPUTS/
c99-intconst-1.c 43 /* (T1 *) if E1, otherwise (T2 *) if E2, otherwise (T3 *) if E3. */
44 #define first_of3p(T1, E1, T2, E2, T3, E3) \
47 type_if(T3, (!(E1) && !(E2) && (E3))))
48 /* (T1 *) if E1, otherwise (T2 *) if E2, otherwise (T3 *) if E3, otherwise
50 #define first_of4p(T1, E1, T2, E2, T3, E3, T4, E4) \
53 type_if(T3, (!(E1) && !(E2) && (E3))), \
54 type_if(T4, (!(E1) && !(E2) && !(E3) && (E4))))
55 /* (T1 *) if E1, otherwise (T2 *) if E2, otherwise (T3 *) if E3, otherwise
57 #define first_of6p(T1, E1, T2, E2, T3, E3, T4, E4, T5, E5, T6, E6) \
60 type_if(T3, (!(E1) && !(E2) && (E3))), \
    [all...]
  /external/clang/test/Sema/
warn-duplicate-enum.c 32 E3 = E2
attr-mode-enums.c 16 typedef enum E3 __attribute__((mode(V2SI))) RejectedType3; // expected-error{{mode 'V2SI' is not supported for enumeration types}}
  /external/clang/test/SemaTemplate/
instantiate-non-type-template-parameter.cpp 40 enum E { E1, E2, E3 };
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/PciHostBridgeDxe/
PciHostBridgeDxe.inf 20 FILE_GUID = B0E61270-263F-11E3-8224-0800200C9A66
  /device/linaro/bootloader/edk2/EdkShellPkg/
EdkShellPkg.dsc 20 PLATFORM_GUID = 761BEE8B-58E3-4014-B8F5-0214A8DFA7EE
  /cts/apps/CameraITS/tests/scene0/
test_metadata.py 91 pixel_pitch_h = (sensor_size["height"] / fmts[0]["height"] * 1E3)
92 pixel_pitch_w = (sensor_size["width"] / fmts[0]["width"] * 1E3)
  /device/linaro/bootloader/edk2/OvmfPkg/Library/XenHypercallLib/
XenHypercallLib.inf 18 FILE_GUID = B5EE9A32-CA5A-49A8-82E3-ADA4CCB77C7C
  /external/clang/test/CXX/special/class.copy/
p23-cxx11.cpp 149 struct E3 : DeletedCopyAssign {}; // expected-note {{base class 'DeletedCopyAssign' has a deleted copy}}
159 template struct CopyAssign<E3>; // expected-note {{here}}
  /external/caliper/examples/src/main/java/examples/
EnumSetContainsBenchmark.java 58 E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12, E13, E14, E15, E16, E17,
64 E1, E2, E3, E4, E5, E6, E7, E8, E9, E10, E11, E12, E13, E14, E15, E16, E17,
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p5.cpp 16 enum alignas(4) E3 { e3 = 0 }; // ok
  /frameworks/av/media/libstagefright/
HTTPBase.cpp 66 (mTotalTransferBytes * 8E3 / mTotalTransferTimeUs);
  /cts/apps/CameraITS/tests/scene4/
test_multi_camera_alignment.py 448 print ' x_w, y_w (mm): %.2f, %.2f' % (x_w[i]*1.0E3, y_w[i]*1.0E3)
454 print 'Center location err (mm): %.2f' % (err*1E3)
456 msg += ' val=%.2fmm, THRESH=%.fmm' % (err*1E3, ALIGN_TOL_MM*1E3)

Completed in 830 milliseconds

1 2 3