Home
last modified time | relevance | path

Searched refs:_E (Results 1 – 25 of 168) sorted by relevance

1234567

/external/clang/test/CodeGenCXX/
Dcxx0x-initializer-stdinitializerlist-pr12086.cpp9 template <class _E>
12 const _E* __begin_;
14 const _E* __end_;
19 constexpr initializer_list(const _E* __b, size_t __s) in initializer_list()
29 typedef _E value_type;
30 typedef const _E& reference;
31 typedef const _E& const_reference;
34 typedef const _E* iterator;
35 typedef const _E* const_iterator;
41 const _E* begin() const {return __begin_;} in begin()
[all …]
Dcxx0x-initializer-stdinitializerlist-startend.cpp7 template <class _E>
10 const _E* __begin_;
11 const _E* __end_;
13 initializer_list(const _E* __b, const _E* __e) in initializer_list()
19 typedef _E value_type;
20 typedef const _E& reference;
21 typedef const _E& const_reference;
24 typedef const _E* iterator;
25 typedef const _E* const_iterator;
30 const _E* begin() const {return __begin_;} in begin()
[all …]
Dcxx0x-initializer-stdinitializerlist.cpp7 template <class _E>
10 const _E* __begin_;
13 initializer_list(const _E* __b, size_t __s) in initializer_list()
19 typedef _E value_type;
20 typedef const _E& reference;
21 typedef const _E& const_reference;
24 typedef const _E* iterator;
25 typedef const _E* const_iterator;
30 const _E* begin() const {return __begin_;} in begin()
31 const _E* end() const {return __begin_ + __size_;} in end()
Dmangle-exprs.cpp7 template <class _E>
10 const _E* __begin_;
13 initializer_list(const _E* __b, size_t __s) in initializer_list()
19 typedef _E value_type;
20 typedef const _E& reference;
21 typedef const _E& const_reference;
24 typedef const _E* iterator;
25 typedef const _E* const_iterator;
30 const _E* begin() const {return __begin_;} in begin()
31 const _E* end() const {return __begin_ + __size_;} in end()
/external/clang/test/Index/
Dannotate-tokens-cxx0x.cpp31 template <class _E>
34 const _E* __begin_;
37 initializer_list(const _E* __b, size_t __s) in initializer_list()
43 typedef _E value_type;
44 typedef const _E& reference;
45 typedef const _E& const_reference;
48 typedef const _E* iterator;
49 typedef const _E* const_iterator;
54 const _E* begin() const {return __begin_;} in begin()
55 const _E* end() const {return __begin_ + __size_;} in end()
/external/clang/test/SemaCXX/
Dcxx0x-initializer-scalars.cpp10 template <class _E>
13 const _E* __begin_;
16 initializer_list(const _E* __b, size_t __s) in initializer_list()
22 typedef _E value_type;
23 typedef const _E& reference;
24 typedef const _E& const_reference;
27 typedef const _E* iterator;
28 typedef const _E* const_iterator;
33 const _E* begin() const {return __begin_;} in begin()
34 const _E* end() const {return __begin_ + __size_;} in end()
Dcxx0x-initializer-stdinitializerlist.cpp12 template <class _E>
15 const _E* __begin_;
18 initializer_list(const _E* __b, size_t __s) in initializer_list()
24 typedef _E value_type;
25 typedef const _E& reference;
26 typedef const _E& const_reference;
29 typedef const _E* iterator;
30 typedef const _E* const_iterator;
35 const _E* begin() const {return __begin_;} in begin()
36 const _E* end() const {return __begin_ + __size_;} in end()
Dcxx0x-initializer-constructor.cpp10 template <class _E>
13 const _E* __begin_;
16 initializer_list(const _E* __b, size_t __s) in initializer_list()
22 typedef _E value_type;
23 typedef const _E& reference;
24 typedef const _E& const_reference;
27 typedef const _E* iterator;
28 typedef const _E* const_iterator;
33 const _E* begin() const {return __begin_;} in begin()
34 const _E* end() const {return __begin_ + __size_;} in end()
Dconstant-expression-cxx1y.cpp729 template <class _E>
732 const _E* __begin_;
735 constexpr initializer_list(const _E* __b, size_t __s) in initializer_list()
741 typedef _E value_type;
742 typedef const _E& reference;
743 typedef const _E& const_reference;
746 typedef const _E* iterator;
747 typedef const _E* const_iterator;
752 constexpr const _E* begin() const {return __begin_;} in begin()
753 constexpr const _E* end() const {return __begin_ + __size_;} in end()
DPR20334-std_initializer_list_diagnosis_assertion.cpp5 template <class _E>
Dinvalid-member-expr.cpp28 template <class _E> class initializer_list {};
Dconstant-expression-cxx11.cpp1694 template <class _E>
1697 const _E* __begin_;
1700 constexpr initializer_list(const _E* __b, size_t __s) in initializer_list()
1706 typedef _E value_type;
1707 typedef const _E& reference;
1708 typedef const _E& const_reference;
1711 typedef const _E* iterator;
1712 typedef const _E* const_iterator;
1717 constexpr const _E* begin() const {return __begin_;} in begin()
1718 constexpr const _E* end() const {return __begin_ + __size_;} in end()
/external/clang/test/CXX/drs/
Ddr15xx.cpp55 template <class _E>
58 const _E* __begin_;
61 initializer_list(const _E* __b, size_t __s) in initializer_list()
65 typedef _E value_type;
66 typedef const _E& reference;
67 typedef const _E& const_reference;
70 typedef const _E* iterator;
71 typedef const _E* const_iterator;
76 const _E* begin() const {return __begin_;} in begin()
77 const _E* end() const {return __begin_ + __size_;} in end()
Ddr14xx.cpp204 template <class _E>
207 const _E* __begin_;
210 initializer_list(const _E* __b, size_t __s) in initializer_list()
214 typedef _E value_type;
215 typedef const _E& reference;
216 typedef const _E& const_reference;
219 typedef const _E* iterator;
220 typedef const _E* const_iterator;
225 const _E* begin() const {return __begin_;} in begin()
226 const _E* end() const {return __begin_ + __size_;} in end()
/external/clang/test/Parser/
Dcxx0x-attributes.cpp8 template <class _E>
11 const _E* __begin_;
14 initializer_list(const _E* __b, size_t __s) in initializer_list()
20 typedef _E value_type;
21 typedef const _E& reference;
22 typedef const _E& const_reference;
25 typedef const _E* iterator;
26 typedef const _E* const_iterator;
31 const _E* begin() const {return __begin_;} in begin()
32 const _E* end() const {return __begin_ + __size_;} in end()
/external/clang/test/Analysis/Inputs/
Dsystem-header-simulator-cxx.h83 template <class _E>
86 const _E* __begin_;
89 initializer_list(const _E* __b, size_t __s) in initializer_list()
95 typedef _E value_type;
96 typedef const _E& reference;
97 typedef const _E& const_reference;
100 typedef const _E* iterator;
101 typedef const _E* const_iterator;
106 const _E* begin() const {return __begin_;} in begin()
107 const _E* end() const {return __begin_ + __size_;} in end()
/external/clang/test/CXX/over/over.oper/over.literal/
Dp8.cpp17 float operator ""_E(const char *);
/external/libcxx/test/support/
Dnasty_macros.hpp17 #define _E NASTY_MACRO macro
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Darm64-collect-loh.ll342 ; CHECK-NEXT: adrp [[ADRP_REG:x[0-9]+]], _E@GOTPAGE
344 ; CHECK-NEXT: ldr [[LDRGOT_REG:x[0-9]+]], {{\[}}[[ADRP_REG]], _E@GOTPAGEOFF]
357 ; CHECK-NEXT: adrp [[ADRP_REG:x[0-9]+]], _E@GOTPAGE
359 ; CHECK-NEXT: ldr [[LDRGOT_REG:x[0-9]+]], {{\[}}[[ADRP_REG]], _E@GOTPAGEOFF]
372 ; CHECK-NEXT: adrp [[ADRP_REG:x[0-9]+]], _E@GOTPAGE
374 ; CHECK-NEXT: ldr [[LDRGOT_REG:x[0-9]+]], {{\[}}[[ADRP_REG]], _E@GOTPAGEOFF]
388 ; CHECK-NEXT: adrp [[ADRP_REG:x[0-9]+]], _E@GOTPAGE
390 ; CHECK-NEXT: ldr [[LDRGOT_REG:x[0-9]+]], {{\[}}[[ADRP_REG]], _E@GOTPAGEOFF]
/external/llvm/test/CodeGen/AArch64/
Darm64-collect-loh.ll342 ; CHECK-NEXT: adrp [[ADRP_REG:x[0-9]+]], _E@GOTPAGE
344 ; CHECK-NEXT: ldr [[LDRGOT_REG:x[0-9]+]], {{\[}}[[ADRP_REG]], _E@GOTPAGEOFF]
357 ; CHECK-NEXT: adrp [[ADRP_REG:x[0-9]+]], _E@GOTPAGE
359 ; CHECK-NEXT: ldr [[LDRGOT_REG:x[0-9]+]], {{\[}}[[ADRP_REG]], _E@GOTPAGEOFF]
372 ; CHECK-NEXT: adrp [[ADRP_REG:x[0-9]+]], _E@GOTPAGE
374 ; CHECK-NEXT: ldr [[LDRGOT_REG:x[0-9]+]], {{\[}}[[ADRP_REG]], _E@GOTPAGEOFF]
388 ; CHECK-NEXT: adrp [[ADRP_REG:x[0-9]+]], _E@GOTPAGE
390 ; CHECK-NEXT: ldr [[LDRGOT_REG:x[0-9]+]], {{\[}}[[ADRP_REG]], _E@GOTPAGEOFF]
/external/libcxx/include/
Dexception223 template <class _E> void *__GetExceptionInfo(_E);
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D7d68229f69c5fd32f675bfe1c2952ce9.00004759.honggfuzz.cov46 ��Sϟ�\����9��:��횸c2o��_XTy����0I����^ �^�U�� ����v!_E��6������(�3�Ѯ�R��l�����f�E�L���(�+w1�…
91 ��Sϟ�\����9��:��횸c2o��_XTy����0I����^ �^�U�� ����v!_E��6������(�3�Ѯ�R��l�����f�E�L���(�+w1�…
136 ��Sϟ�\����9��:��횸c2o��_XTy����0I����^ �^�U�� ����v!_E��6������(�3�Ѯ�R��l�����f�E�L���(�+w1�…
Da20fd5f8761b96aa9de56a908a3ac88a.000024a2.honggfuzz.cov21 …����&��`l�V�X��S�Ǣ�pڅ���#8�&��yNQ�D�*�U����F�F�C��U����.A���Auˎ����l�_E�ˇYL`Dl#Ǜ�\K����…
/external/perfetto/docs/
Dlong-traces.md154 80.585233 Binder:1229_E
/external/honggfuzz/examples/apache-httpd/corpus_http1/
Da20fd5f8761b96aa9de56a908a3ac88a.000024a2.honggfuzz.cov21 …����&��`l�V�X��S�Ǣ�pڅ���#8�&��yNQ�D�*�U����F�F�C��U����.A���Auˎ����l�_E�ˇYL`Dl#Ǜ�\K����…

1234567