Home
last modified time | relevance | path

Searched defs:_ (Results 1 – 25 of 227) sorted by relevance

12345678910

/llvm-project/clang/test/SemaCXX/
H A Dcxx2c-placeholder-vars.cpp4 static int _; // expected-note {{previous definition is here}} \ in static_var() local
6 static int _; // expected-error {{redefinition of '_'}} in static_var() local
7 int _; // expected-warning {{placeholder variables are incompatible with C++ standards before C++2c}} \ in static_var() local
13 int _; // expected-note {{previous definition is here}} in static_var_2() local
14 static int _; // expected-error {{redefinition of '_'}} in static_var_2() local
58 int _ = 12; lambda() local
64 int _; // expected-note {{previous definition is here}} global() variable
65 int _; // expected-error {{redefinition of '_'}} global() variable
69 int _; // expected-note {{previous definition is here}} global() variable
70 int _; // expected-error {{redefinition of '_'}} global() variable
78 void _() {} // expected-note {{previous definition is here}} _() function
79 void _() {} // expected-error {{redefinition of '_'}} _() function
80 void _(int){} _() function
83 typedef int _; global() typedef
84 typedef int _; // Type redeclaration, nothing to do with placeholders global() typedef
89 int _; //expected-note {{candidate}} extern_test() local
95 int _; // expected-note 2{{placeholder declared here}} global() member
96 int _; // expected-warning{{placeholder variables are incompatible with C++ standards before C++2c}} \ global() member
105 int _; // expected-note {{target of using declaration}} global() variable
107 int _; // expected-note {{conflicting declaration}} f() local
115 test_param(int _) test_param() argument
133 f(S a,S _) f() argument
138 int _ = 12; // placeholder variable, no unused-but-set warning unused_warning() local
140 int _ = 12; // expected-warning {{placeholder variables are incompatible with C++ standards before C++2c}} unused_warning() local
144 int _; global() member
146 int _; f() local
153 int _, _; // expected-warning {{placeholder variables are incompatible with C++ standards before C++2c}} \ global() member
162 int _, _; // expected-note 2{{placeholder declared here}} \ global() member
167 int _; // expected-note {{placeholder declared here}} global() member
168 union { int _; int _; }; // expected-note 2 {{placeholder declared here}} \ global() member
175 struct Union { union { int _, _, _; }; }; // expected-note 3{{placeholder declared here}} \ global() member
184 union {int _, _;}; // expected-warning {{placeholder variables are incompatible with C++ standards before C++2c}} \ AnonymousLocals() member
186 union {int _, _;}; // expected-warning 2{{placeholder variables are incompatible with C++ standards before C++2c}} \ AnonymousLocals() member
193 static union { int _ = 42; }; // expected-note {{previous declaration is here}} global() member
194 static union { int _ = 43; }; // expected-error {{member of anonymous union redeclares '_'}} global() member
197 static union { int _{}; }; // expected-note {{previous declaration is here}} StaticUnion() member
198 static union { int _{}; }; // expected-error {{member of anonymous union redeclares '_'}} StaticUnion() member
206 int _, _, _; // expected-warning 2{{placeholder variables are incompatible with C++ standards before C++2c}} global() member
210 int _, _, _; // expected-warning 2{{placeholder variables are incompatible with C++ standards before C++2c}} global() member
218 int _, _; // expected-warning {{placeholder variables are incompatible with C++ standards before C++2c}} \ global() member
240 int _, _; // expected-warning {{placeholder variables are incompatible with C++ standards before C++2c}} \ global() member
245 int _, _; // expected-warning {{placeholder variables are incompatible with C++ standards before C++2c}} \ global() member
[all...]
/llvm-project/third-party/benchmark/test/
H A Dreporter_output_test.cc71 for (auto _ : state) { in BM_basic() local
97 for (auto _ : state) { in BM_bytes_per_second() local
129 for (auto _ : state) { in BM_items_per_second() local
161 for (auto _ : state) { in BM_label() local
190 for (auto _ : state) { in BM_time_label_nanosecond() local
213 for (auto _ : state) { in BM_time_label_microsecond() local
236 for (auto _ : state) { in BM_time_label_millisecond() local
259 for (auto _ : state) { in BM_time_label_second() local
286 for (auto _ : state) { in BM_error() local
310 for (auto _ : state) { in BM_no_arg_name() local
[all …]
H A Dbasic_test.cc7 for (auto _ : state) { in BM_empty() local
16 for (auto _ : state) { in BM_spin_empty() local
29 for (auto _ : state) { in BM_spin_pause_before() local
39 for (auto _ : state) { in BM_spin_pause_during() local
54 for (auto _ : state) { in BM_pause_during() local
65 for (auto _ : state) { in BM_spin_pause_after() local
81 for (auto _ : state) { in BM_spin_pause_before_and_after() local
94 for (auto _ : state) { in BM_empty_stop_start() local
138 for (auto _ : state) { in BM_RangedFor() local
150 for (auto _ : state) { in BM_OneTemplateFunc() local
[all …]
H A Dbenchmark_test.cc58 for (auto _ : state) fac_42 = Factorial(8); in BM_Factorial() local
69 for (auto _ : state) pi = CalculatePi(static_cast<int>(state.range(0))); in BM_CalculatePiRange() local
78 for (auto _ : state) { in BM_CalculatePi() local
89 for (auto _ : state) { in BM_SetInsert() local
109 for (auto _ : state) { in BM_Sequential() local
129 for (auto _ : state) { in BM_StringCompare() local
142 for (auto _ : state) { in BM_SetupTeardown() local
158 for (auto _ : state) { in BM_LongTest() local
175 for (auto _ : state) { in BM_ParallelMemset() local
195 for (auto _ : state) { in BM_ManualTiming() local
[all …]
H A Duser_counters_test.cc26 for (auto _ : state) { in BM_Counters_Simple() local
68 for (auto _ : state) { in BM_Counters_WithBytesAndItemsPSec() local
120 for (auto _ : state) { in BM_Counters_Rate() local
164 for (auto _ : state) { in BM_Invert() local
205 for (auto _ : state) { in BM_Counters_InvertedRate() local
252 for (auto _ : state) { in BM_Counters_Threads() local
292 for (auto _ : state) { in BM_Counters_AvgThreads() local
334 for (auto _ : state) { in BM_Counters_AvgThreadsRate() local
379 for (auto _ : state) { in BM_Counters_IterationInvariant() local
422 for (auto _ : state) { in BM_Counters_kIsIterationInvariantRate() local
[all …]
H A Duser_counters_tabular_test.cc65 for (auto _ : state) { in BM_Counters_Tabular() local
376 for (auto _ : state) { in BM_CounterRates_Tabular() local
435 for (auto _ : state) { in BM_CounterSet0_Tabular() local
475 for (auto _ : state) { in BM_CounterSet1_Tabular() local
519 for (auto _ : state) { in BM_CounterSet2_Tabular() local
H A Doptions_test.cc12 for (auto _ : state) { in BM_basic() local
18 for (auto _ : state) { in BM_basic_slow() local
70 for (auto _ : state) { in BM_explicit_iteration_count() local
H A Dfilter_test.cc43 for (auto _ : state) { in NoPrefix() local
49 for (auto _ : state) { in BM_Foo() local
55 for (auto _ : state) { in BM_Bar() local
61 for (auto _ : state) { in BM_FooBar() local
67 for (auto _ : state) { in BM_FooBa() local
/llvm-project/libcxxabi/test/
H A Ddynamic_cast.pass.cpp34 struct C3 { virtual ~C3() {} Pad1 _; }; in ~C3() member
35 struct C5 : protected virtual C3 { Pad2 _; }; member
36 struct C6 : virtual C5 { Pad3 _; }; member
37 struct C7 : virtual C3 { Pad4 _; }; member
38 struct C9 : C6, C7 { Pad5 _; }; member
58 struct Src { virtual ~Src() {} Pad1 _; }; in ~Src() member
59 struct Mask : protected virtual Src { Pad2 _; }; member
60 struct Dest : Mask { Pad3 _; }; member
61 struct Root : Dest, virtual Src { Pad4 _; }; member
80 struct Class1 { virtual ~Class1() {} Pad1 _; }; in ~Class1() member
[all …]
H A Ddynamic_cast3.pass.cpp31 char _[43981]; member
39 char _[34981]; member
47 char _[93481]; member
84 char _[43981]; member
92 char _[34981]; member
101 char _[93481]; member
135 char _[43981]; member
143 char _[34981]; member
152 char _[93481]; member
186 char _[43981]; member
[all …]
H A Ddynamic_cast5.pass.cpp25 char _[43981]; member
33 char _[34981]; member
43 char _[93481]; member
55 char _[13489]; member
68 char _[13489]; member
169 char _[43981]; member
177 char _[34981]; member
187 char _[93481]; member
199 char _[13489]; member
212 char _[13489]; member
[all …]
/llvm-project/lldb/docs/use/
H A Dlinks.rst75 Dancing in the Debugger — A Waltz with LLDB (2014)`DerekSelander/LLDB`_ global() argument
76 LLDB: Beyond “po” (2019)`DerekSelander/LLDB`_ global() argument
77 Advanced Debugging with Xcode and LLDB (2018)`DerekSelander/LLDB`_ global() argument
78 Debugging with LLDB (2012)`DerekSelander/LLDB`_ global() argument
79 Migrating from GDB to LLDB (2011)`DerekSelander/LLDB`_ global() argument
80 Advanced Apple Debugging & Reverse Engineering (2018)`DerekSelander/LLDB`_ global() argument
81 facebook/chisel`DerekSelander/LLDB`_ global() argument
82 DerekSelander/LLDB`DerekSelander/LLDB`_ global() argument
/llvm-project/llvm/docs/
H A Dindex.rst36 .. __: https://llvm.org/pubs/2008-10-04-ACAT-LLVM-Intro.html target in LLVM Design & Overview
42 .. __: http://www.aosabook.org/en/llvm.html target in LLVM Design & Overview
48 .. __: https://llvm.org/pubs/2004-01-30-CGO-LLVM.html target in LLVM Design & Overview
53 .. __: https://llvm.org/pubs/2002-12-LattnerMSThesis.html target in LLVM Design & Overview
H A DGettingInvolved.rst106 .. __: https://discourse.llvm.org/ global() target in Forums & Mailing Lists
115 .. __: http://lists.llvm.org/pipermail/llvm-commits/ global() target in Forums & Mailing Lists
121 .. __: http://lists.llvm.org/pipermail/llvm-bugs/ global() target in Forums & Mailing Lists
126 .. __: https://discourse.llvm.org/c/announce/46 global() target in Forums & Mailing Lists
/llvm-project/clang/test/CXX/special/class.copy/
H A Dp25-0x.cpp30 using _ = trivially_assignable<Trivial>; typedef
37 using _ = not_trivially_assignable<UserProvided>; typedef
50 using _ = not_trivially_assignable<NonConstCopy>; typedef
80 using _ = trivially_assignable<DefaultedSpecialMembers>; typedef
87 using _ = not_trivially_assignable<VFn>; typedef
91 using _ = not_trivially_assignable<VBase>; typedef
97 using _ = trivially_assignable<TemplateCtor>; typedef
101 using _ = trivially_assignable<TemplateCtorMember>; typedef
176 using _ = trivially_assignable<MultipleTrivial>; typedef
H A Dp12-0x.cpp19 using _ = trivially_copyable<Trivial>; typedef
25 using _ = not_trivially_copyable<UserProvided>; typedef
34 using _ = not_trivially_copyable<NonConstCopy>; typedef
49 using _ = trivially_copyable<DefaultedSpecialMembers>; typedef
56 using _ = not_trivially_copyable<VFn>; typedef
60 using _ = not_trivially_copyable<VBase>; typedef
66 using _ = trivially_copyable<TemplateCtor>; typedef
70 using _ = trivially_copyable<TemplateCtorMember>; typedef
/llvm-project/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp12.cpp12 template <unsigned n> void expect(Opaque<n> _) {} // expected-note 4 {{candidate function template … in expect()
41 void test0() { Opaque<0> _ = foo(Opaque<0>()); } in test0() local
42 void test1() { Opaque<1> _ = foo(Opaque<1>()); } in test1() local
43 void test2() { Opaque<0> _ = foo(Opaque<2>()); } in test2() local
44 void test3() { Opaque<1> _ = foo(Opaque<3>()); } in test3() local
53 void test0() { Opaque<0> _ = foo(Opaque<0>()); } in test0() local
54 void test1() { Opaque<1> _ = foo(Opaque<1>()); } in test1() local
55 void test2() { Opaque<0> _ = foo(Opaque<2>()); } in test2() local
56 void test3() { Opaque<1> _ = foo(Opaque<3>()); } in test3() local
66 void test0() { Opaque<1> _ = foo(Opaque<0>()); } in test0() local
[all …]
/llvm-project/llvm/tools/opt-viewer/
H A Dopt-diff.py64 all_remarks1, _, _ = optrecord.gather_results(files1, args.jobs, print_progress) variable
65 all_remarks2, _, _ = optrecord.gather_results(files2, args.jobs, print_progress) variable
/llvm-project/libcxx/benchmarks/algorithms/
H A Dfill.bench.cpp
H A Dranges_contains.bench.cpp
H A Dfind.bench.cpp
H A Dequal.bench.cpp
/llvm-project/compiler-rt/test/tsan/
H A Dsignal_in_read.c16 static void Handler(int _) { assert(write(SignalPipeFd[1], ".", 1) == 1); } in Handler()
18 static void *ThreadFunc(void *_) { in ThreadFunc()
51 void *_ = 0; in main() local
/llvm-project/clang-tools-extra/pseudo/benchmarks/
H A DBenchmark.cpp
/llvm-project/llvm/test/Bindings/OCaml/
H A Dext_exc.ml15 let _ = function
21 let _ = function

12345678910