Searched defs:Bar (Results 51 - 75 of 93) sorted by relevance

1234

/external/clang/test/SemaCXX/
H A Dwarn-range-loop-analysis.cpp20 struct Bar { struct
21 Bar(Foo);
22 Bar(int);
37 // int <=> Bar
38 // double => Bar
39 // Foo => Bar
45 // int => Bar
47 // Bar => Bar
48 // Bar
[all...]
H A Dwarn-shadow.cpp51 int Bar; member in struct:rdar8900456::Foo
55 double Bar = 12; // Don't warn. local
H A Dfunction-redecl.cpp40 void Bar(); // expected-note {{'Bar' declared here}}
42 friend void bar(); // expected-error {{no matching function 'bar' found in local scope; did you mean 'Bar'}}
66 class Bar { class
72 void Bar::f(Foo::Inner foo) { // expected-error {{out-of-line definition of 'f' does not match any declaration in 'Bar'}}
101 // Ensure we correct the redecl of Foo::isGood to Bar::Foo::isGood and not
104 // since it is a closer match than Bar::Foo::beEvil and neither have a body.
110 namespace Bar { namespace in namespace:redecl_typo
112 bool isGood(); // expected-note {{'Bar
[all...]
H A Dwarn-enum-compare.cpp4 enum Bar { BarD, BarE, BarF }; enum
23 Bar getBar();
27 Bar y = BarD;
43 while (AnonBB == y); // expected-warning {{comparison of constant 'AnonBB' (45) with expression of type 'Bar' is always false}}
84 while (x == y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
85 while (x != y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
86 while (x >= y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
87 while (x <= y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
88 while (x > y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
89 while (x < y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
[all...]
H A Dwarn-global-constructors.cpp91 struct Bar { struct in namespace:pr8095
92 ~Bar();
95 static Bar b;
H A Dwarn-missing-noreturn.cpp111 struct Bar { struct in namespace:PR10801
121 Bar b;
H A Dwarn-thread-safety-negative.cpp49 class Bar { class in namespace:SimpleTest
85 Bar b;
H A Dwarn-unused-result.cpp105 Status Bar();
110 void Bar() { function in namespace:PR17587
112 f.Bar(); // expected-warning {{ignoring return value}}
H A Dusing-decl-1.cpp87 namespace ns1 { struct Bar : ns0::Foo {}; } struct in namespace:test1::ns1
90 namespace ns2 { struct Baz : ns1::Bar {}; }
H A Dvirtual-override.cpp196 class Bar : public Foo { class in namespace:PR5920
H A Dwarn-unused-local-typedef.cpp105 typedef int Bar; // expected-warning {{unused typedef 'Bar'}} typedef in struct:Local
H A DMicrosoftCompatibility.cpp229 struct Bar { struct in namespace:IntToNullPtrConv
233 Bar g_bar = { (Foo::MemberFcnPtr)Foo::ZERO };
H A Dfriend.cpp39 class Bar { class in namespace:test2
/external/clang/test/SemaTemplate/
H A Dms-sizeof-missing-typename.cpp33 // expected-warning@+1 {{missing 'typename' prior to dependent type name 'Bar::InnerType'}}
35 // expected-warning@+1 {{missing 'typename' prior to dependent type name 'Bar::InnerType'}}
43 struct Bar { struct in namespace:nested_sizeof
49 template struct Foo<Bar>; // expected-note-re {{in instantiation {{.*}} requested here}}
H A Dtemp_explicit.cpp120 struct Bar struct in struct:Foo
126 struct Foo<int>::Bar<void> struct in class:Foo
H A Dclass-template-decl.cpp72 template<typename T2> class Bar;
73 typedef Bar<T1> Baz;
76 struct Bar { struct in struct:PR8001::Foo
77 Bar() {} function in struct:PR8001::Foo::Bar
83 Foo<int>::Bar<int> y(x);
H A Ddeduction.cpp144 class Bar { class in namespace:test3
H A Dinstantiate-local-class.cpp18 void Bar() { function in struct:PR5764::X
31 x.Bar<int>();
H A Dtypename-specifier.cpp178 template <class T> struct Bar {}; // expected-note 1+ {{template parameter is declared here}} struct in namespace:missing_typename_and_base
183 Bar<TypeInBase> x; // expected-error {{use of undeclared identifier 'TypeInBase'}}
190 Bar<T::TypeInBase> y;
197 Bar<T::NestedRD::TypeInNestedRD> z;
H A Dfriend-template.cpp269 struct Bar { struct in namespace:PR12557
275 Bar<int> b;
/external/clang/test/Sema/
H A Dfunction.c117 void const Bar (void); // ok on decl
119 void const Bar (void) // expected-warning {{function cannot return qualified void type 'const void'}} function
/external/clang/test/Analysis/inlining/
H A Dpath-notes.cpp21 class Bar { class
23 ~Bar() {
31 Bar b;
34 } // expected-note {{Calling '~Bar'}}
447 // CHECK-NEXT: <string>Calling &apos;~Bar&apos;</string>
449 // CHECK-NEXT: <string>Calling &apos;~Bar&apos;</string>
635 // CHECK-NEXT: <string>Entered call from &apos;~Bar&apos;</string>
637 // CHECK-NEXT: <string>Entered call from &apos;~Bar&apos;</string>
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DBarRenderer.java33 * Renders a point as a Bar
137 Bar b = new Bar(series,i,plotArea);
188 // Determine the exact left and right X for the Bar Group
231 for (Bar b : barGroup.bars) {
252 for (Bar b : barGroup.bars) {
273 for (Bar b : barGroup.bars) {
301 private class Bar { class in class:BarRenderer
309 public Bar(XYSeries series, int seriesIndex, RectF plotArea) { method in class:BarRenderer.Bar
333 public ArrayList<Bar> bar
[all...]
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dexamples.cpp132 class Bar class in namespace:PR9668::First
145 typedef First::Bar<Second::Foo> Special;
/external/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp125 const uint64_t ExpectedBar = Sema.expectMatcher("Bar");
127 Sema.parse(" Foo ( Bar ( 17), Baz( \n \"B A,Z\") ) .bind( \"Yo!\") ");
140 const MockSema::MatcherInfo Bar = Sema.Matchers[0]; local
141 EXPECT_EQ("Bar", Bar.MatcherName);
142 EXPECT_TRUE(matchesRange(Bar.NameRange, 1, 1, 8, 17));
143 EXPECT_EQ(1ULL, Bar.Args.size());
144 EXPECT_EQ(17U, Bar.Args[0].Value.getUnsigned());

Completed in 5968 milliseconds

1234