HomeSort by relevance Sort by last modified time
    Searched refs:Bar (Results 26 - 50 of 103) sorted by null

12 3 4 5

  /external/clang/test/CodeGen/
2009-03-08-ZeroEltStructCrash.c 12 static void Bar(struct Union *u) {
  /external/clang/test/Parser/
cxx-undeclared-identifier.cpp 18 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \
cxx-using-declaration.cpp 51 class Bar {};
54 void Bar(int); // expected-note{{class 'Bar' is hidden by a non-type declaration of 'Bar' here}}
55 using foo::Bar;
58 const Bar *x; // expected-error{{must use 'class' tag to refer to type 'Bar' in this scope}}
  /external/clang/test/SemaCXX/
function-redecl.cpp 38 void Bar(); // expected-note {{'Bar' declared here}}
40 friend void bar(); // expected-error {{no matching function 'bar' found in local scope; did you mean 'Bar'}}
64 class Bar {
70 void Bar::f(Foo::Inner foo) { // expected-error {{out-of-line definition of 'f' does not match any declaration in 'Bar'}}
99 // Ensure we correct the redecl of Foo::isGood to Bar::Foo::isGood and not
102 // since it is a closer match than Bar::Foo::beEvil and neither have a body
    [all...]
warn-shadow.cpp 51 int Bar;
55 double Bar = 12; // Don't warn.
copy-initialization.cpp 22 void bar(); // expected-note{{declared here}}
26 void test(const foo *P) { P->bar(); } // expected-error{{'bar' not viable: 'this' argument has type 'const foo', but function is not marked const}}
34 struct Bar {
41 f(Bar()); // expected-error{{no viable constructor copying parameter of type 'const PR6757::Foo'}}
warn-global-constructors.cpp 91 struct Bar {
92 ~Bar();
94 void bar() { function in namespace:pr8095
95 static Bar b;
unused.cpp 9 char bar; member in class:PR4103::APSInt
58 struct Bar {
  /external/clang/test/CodeGenCXX/
incomplete-types.cpp 6 struct Bar {
10 static struct Bar<int> bar[1] = { variable in typeref:struct:Bar
  /external/clang/test/SemaTemplate/
overload-uneval.cpp 12 struct Bar
20 typedef Bar<T> B;
instantiate-deeply.cpp 30 struct Bar {
34 Bar u;
class-template-decl.cpp 63 template<typename T2> class Bar;
64 typedef Bar<T1> Baz;
67 struct Bar {
68 Bar() {}
74 Foo<int>::Bar<int> y(x);
instantiate-local-class.cpp 19 void Bar() {
32 x.Bar<int>();
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 29 struct Bar;
36 int Foo(Bar *b, void (*Baz)(const T &t), T * = 0) {
41 int Quux(Bar *b, T * = 0)
  /build/tools/droiddoc/test/generics/src/com/android/generics/
FooBar.java 19 public class FooBar<K,V,L> extends Foo<V> implements Bar<K> {
33 public K bar(K arg) { method in class:FooBar
41 public FooBar<V,K,L> b(Bar<? extends K> arg) {
  /external/protobuf/gtest/test/
gtest_break_on_failure_unittest_.cc 51 TEST(Foo, Bar) {
  /external/android-mock/tests/com/google/android/testing/mocking/
ConstructorCreationTests.java 36 public static class Bar {
38 Bar(double value) { this.value = value; }
51 public TestClass(Foo foo, Bar bar) {
52 this(foo.get(), bar.get());
90 doesNotHaveConstructor(new Bar(2));
91 hasConstructor(new Foo(1), new Bar(2));
116 new Object[]{new Foo(1), new Bar(2)},
117 new Type[]{Foo.class, Bar.class});
  /external/clang/test/FixIt/
fixit.cpp 204 template<typename> typename Bar, // expected-error {{template template parameter requires 'class' after the parameter list}}
211 enum Bar { X, Y };
212 void SetBar(Bar bar);
213 Bar Bar(); // expected-note 2 {{enum 'Bar' is hidden by a non-type declaration of 'Bar' here}}
215 Bar bar_; // expected-error {{must use 'enum' tag to refer to type 'Bar' in this scope}
    [all...]
  /external/chromium/testing/gtest/test/
gtest_break_on_failure_unittest_.cc 52 TEST(Foo, Bar) {
  /external/gtest/test/
gtest_break_on_failure_unittest_.cc 52 TEST(Foo, Bar) {
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest_break_on_failure_unittest_.cc 52 TEST(Foo, Bar) {
  /ndk/tests/device/test-gabi++/jni/
test_gabixx_rtti.cpp 31 class Bar: public Foo
36 std::printf("in Bar!\n");
56 Foo* foo = new Bar();
57 Bar* bar; local
94 bar = dynamic_cast<Bar*>(foo);
95 if (bar != NULL) {
96 printf("OK: 'foo' is pointing to a Bar class instance.\n");
98 fprintf(stderr, "KO: Could not dynamically cast 'foo' to a 'Bar*'\n")
    [all...]
  /ndk/tests/device/test-stlport-rtti/jni/
test_stlport_rtti.cpp 31 class Bar: public Foo
36 std::printf("in Bar!\n");
56 Foo* foo = new Bar();
57 Bar* bar; local
94 bar = dynamic_cast<Bar*>(foo);
95 if (bar != NULL) {
96 printf("OK: 'foo' is pointing to a Bar class instance.\n");
98 fprintf(stderr, "KO: Could not dynamically cast 'foo' to a 'Bar*'\n")
    [all...]
  /external/clang/test/Analysis/inlining/
path-notes.cpp 21 class Bar {
23 ~Bar() {
31 Bar b;
34 } // expected-note {{Calling '~Bar'}}
342 // CHECK-NEXT: <string>Calling &apos;~Bar&apos;</string>
344 // CHECK-NEXT: <string>Calling &apos;~Bar&apos;</string>
530 // CHECK-NEXT: <string>Entered call from &apos;~Bar&apos;</string>
532 // CHECK-NEXT: <string>Entered call from &apos;~Bar&apos;</string>
    [all...]
  /external/chromium/testing/gmock/test/
gmock_output_test_.cc 54 MOCK_METHOD3(Bar, char(const std::string& s, int i, double x));
142 EXPECT_CALL(foo_, Bar(_, 0, _));
148 foo_.Bar("Hi", 0, 0);
156 EXPECT_CALL(foo_, Bar(_, 0, _))
164 foo_.Bar("Hi", 0, 0);
174 EXPECT_CALL(foo_, Bar(_, _, _));
183 EXPECT_CALL(foo_, Bar(Ref(s), _, Ge(0)));
185 foo_.Bar("Ho", 0, -0.1); // Mismatch arguments
186 foo_.Bar(s, 0, 0);
258 ON_CALL(*foo1, Bar(_, _, _)).WillByDefault(Return('a'))
    [all...]

Completed in 2480 milliseconds

12 3 4 5