HomeSort by relevance Sort by last modified time
    Searched refs:Bar (Results 51 - 75 of 378) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
PR10447.cpp 20 void f_test2(struct Bar*) { }
21 test2::Bar *ptr;
pr13394-crash-on-invalid.cpp 21 void Bar() {} // expected-note{{'Bar' declared here}}
27 Foo::Bar(); // expected-error{{no member named 'Bar' in namespace 'Foo'; did you mean simply 'Bar'?}}
pseudo-destructors.cpp 5 typedef Foo Bar; // expected-note{{type 'Bar' (aka 'Foo') is declared here}}
28 a->~Bar(); // expected-error{{destructor type 'Bar' (aka 'Foo') in object destruction expression does not match the type 'A' of the object being destroyed}}
30 f->~Bar();
32 i->~Bar(); // expected-error{{does not match}}
34 g().~Bar(); // expected-error{{non-scalar}}
36 f->::~Bar();
39 f->::~Bar(17, 42); // expected-error{{cannot have any arguments}}
  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
const-scoped_refptr&-to-raw-adds-get-expected.cc 11 class Bar {
20 Bar b;
const-scoped_refptr&-to-raw-adds-get-original.cc 11 class Bar {
20 Bar b;
  /prebuilts/go/darwin-x86/misc/cgo/test/issue8828/
trivial.go 6 func Bar() {
  /prebuilts/go/linux-x86/misc/cgo/test/issue8828/
trivial.go 6 func Bar() {
  /build/make/tools/droiddoc/test/generics/src/com/android/generics/
Bar.java 19 public interface Bar<K> {
20 public K bar(K arg); method in interface:Bar
  /system/tools/hidl/test/vendor/1.0/
types.hal 19 enum Bar : uint32_t {
35 enum Foo : Bar {
  /external/clang/test/CodeGen/
2009-06-18-StaticInitTailPadPack.c 6 struct Bar {
12 struct Bar f1;
13 struct Bar f2;
2009-03-08-ZeroEltStructCrash.c 12 static void Bar(struct Union *u) {
  /external/clang/test/SemaTemplate/
ms-delayed-default-template-args.cpp 37 template <typename T> struct Bar { T x; };
39 template <Bar<Qux> *P>
42 Bar<int> g;
48 template <typename T> struct Bar { T x; };
49 template <typename T = Bar<Weber>> // expected-error {{use of undeclared identifier 'Weber'}}
51 static_assert(sizeof(T) == 4, "Bar should have gotten int");
60 template <typename T = ns::Bar> // expected-error {{use of undeclared identifier 'ns'}}
62 static_assert(sizeof(T) == 4, "Bar should have gotten int");
64 namespace ns { typedef int Bar; }
94 template <typename T> struct Bar { T x; }
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-explicit-cast.cpp 9 struct Bar {
11 Bar() : B(2){};
33 Bar *PB = new Bar;
41 // CHECK-DAG: !DICompositeType(tag: DW_TAG_structure_type, name: "Bar",
  /external/clang/test/Index/
complete-qualified.cpp 9 C<Foo, class Bar> c;
17 // CHECK-CC1: FieldDecl:{ResultType C<Foo, class Bar>}{TypedText c} (35)
  /hardware/interfaces/tests/bar/1.0/default/
Bar.cpp 4 #include "Bar.h"
13 namespace bar { namespace in namespace:android::hardware::tests
17 Bar::Bar() {
22 Return<void> Bar::doThis(float param) {
26 Return<int32_t> Bar::doThatAndReturnSomething(
31 Return<double> Bar::doQuiteABit(
39 Return<void> Bar::doSomethingElse(
44 Return<void> Bar::doStuffAndReturnAString(
49 Return<void> Bar::mapThisVector
    [all...]
  /external/mockito/src/test/java/org/mockitousage/packageprotected/
MockingPackageProtectedTest.java 17 class Bar {}
23 mock(Bar.class);
  /prebuilts/go/darwin-x86/src/go/ast/
ast_test.go 20 {[]string{"// foo bar "}, "foo bar\n"},
21 {[]string{"// foo", "// bar"}, "foo\nbar\n"},
22 {[]string{"// foo", "//", "//", "//", "// bar"}, "foo\n\nbar\n"},
23 {[]string{"// foo", "/* bar */"}, "foo\n bar\n"},
30 {[]string{"/* Foo Bar */"}, " Foo Bar\n"},
31 {[]string{"/* Foo*/", "/* Bar*/"}, " Foo\n Bar\n"}
    [all...]
  /prebuilts/go/linux-x86/src/go/ast/
ast_test.go 20 {[]string{"// foo bar "}, "foo bar\n"},
21 {[]string{"// foo", "// bar"}, "foo\nbar\n"},
22 {[]string{"// foo", "//", "//", "//", "// bar"}, "foo\n\nbar\n"},
23 {[]string{"// foo", "/* bar */"}, "foo\n bar\n"},
30 {[]string{"/* Foo Bar */"}, " Foo Bar\n"},
31 {[]string{"/* Foo*/", "/* Bar*/"}, " Foo\n Bar\n"}
    [all...]
  /art/test/486-checker-must-do-null-check/src/
Main.java 39 ((Main)o).$noinline$Bar();
45 ((Main)o).$noinline$Bar();
48 void $noinline$Bar() {throw new RuntimeException();}
  /external/compiler-rt/test/asan/TestCases/Linux/
init-order-dlopen.cc 15 struct Bar {
16 Bar(int val) : val(val) { printf("Bar::Bar(%d)\n", val); }
21 Bar global_bar(get_foo_val());
  /external/mockito/src/test/java/org/mockitousage/basicapi/
ObjectsSerializationTest.java 25 class Bar implements Serializable {
30 Bar bar; field in class:ObjectsSerializationTest.Foo
32 bar = new Bar();
33 bar.foo = this;
44 assertSame(foo, foo.bar.foo);
  /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}}
  /prebuilts/go/darwin-x86/test/fixedbugs/issue5259.dir/
bug.go 12 Bar()
16 return &S{F: x.Bar}
  /prebuilts/go/linux-x86/test/fixedbugs/issue5259.dir/
bug.go 12 Bar()
16 return &S{F: x.Bar}

Completed in 530 milliseconds

1 23 4 5 6 7 8 91011>>