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

12 3

  /external/protobuf/python/google/protobuf/internal/
service_reflection_test.py 80 self.assertEqual('Method Bar not implemented.',
87 def Bar(self, rpc_controller, request, done):
  /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/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1.cpp 84 class Bar {
91 void X2<T>::Bar<F>::Func() {}
  /external/clang/test/SemaCXX/
friend.cpp 39 class Bar {
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'}}
using-decl-1.cpp 86 namespace ns1 { struct Bar : ns0::Foo {}; }
89 namespace ns2 { struct Baz : ns1::Bar {}; }
warn-global-constructors.cpp 91 struct Bar {
92 ~Bar();
94 void bar() { function in namespace:pr8095
95 static Bar b;
warn-missing-noreturn.cpp 111 struct Bar {
121 Bar b;
warn-shadow.cpp 51 int Bar;
55 double Bar = 12; // Don't warn.
warn-enum-compare.cpp 4 enum Bar { BarD, BarE, BarF };
23 Bar getBar();
27 Bar y = BarD;
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')}}
91 while (FooB == y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
    [all...]
virtual-override.cpp 195 class Bar : public Foo {
conditional-expr.cpp 246 struct Bar {
253 (void)(true ? Bar() : Foo1()); // okay
254 (void)(true ? Bar() : Foo2()); // okay
255 (void)(true ? Bar() : Foo3()); // expected-error{{no viable constructor copying temporary}}
warn-thread-safety-analysis.cpp 631 LRBar Bar;
635 Bar.aa_elr_fun();
641 Bar.aa_elr_fun_s();
647 Bar.aa_elr_fun_s();
670 Bar.le_fun();
682 Bar.aa_elr_fun_s();
687 Bar.aa_elr_fun_s();
692 Bar.aa_elr_fun_s();
696 Bar.aa_elr_fun(); // \
702 Bar.aa_elr_fun(); //
860 static int bar(int i) { function in namespace:thread_annot_lock_27_modified
945 Bar bar; local
1090 Bar *bar; member in namespace:thread_annot_lock_30_modified
1161 void Foo::bar() function in class:thread_annot_lock_13::Foo
1318 void Foo::bar(int y) { function in class:thread_annot_lock_36_modified::Foo
    [all...]
warn-thread-safety-parsing.cpp 59 class Bar {
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 18 void Bar() {
31 x.Bar<int>();
temp_explicit.cpp 120 struct Bar
126 struct Foo<int>::Bar<void>
deduction.cpp 144 class Bar {
temp_arg_nontype.cpp 72 float bar(float);
73 int bar(int);
81 A6<&Z::bar> *a17_2;
129 struct Bar {};
133 Bar<bool(ns::Foo<int>::value)> x;
250 void bar() { foo <0x80000000> (); } // expected-warning{{non-type template argument value '2147483648' truncated to '-2147483648' for template parameter of type 'int'}} function in namespace:PR8372
305 bar, enumerator in enum:PR10579::__anon5332::testenum::type
  /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/CXX/temp/temp.spec/temp.expl.spec/
examples.cpp 132 class Bar
145 typedef First::Bar<Second::Foo> Special;
  /external/clang/test/Analysis/
misc-ps-region-store.cpp 187 struct Bar;
188 Bar* bar_;
205 bool Bar();
209 bool Foo2<T>::Bar() {
218 void Bar();
224 void Foo3<T>::Bar() {
268 struct Rdar9212495_C { virtual void bar() const; };
275 val.bar(); // FIXME: This should eventually be a null dereference.
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc 318 message1.add_repeated_nested_enum(unittest::TestAllTypes::BAR);
323 message2.set_optional_nested_enum(unittest::TestAllTypes::BAR);
334 EXPECT_EQ(unittest::TestAllTypes::BAR, message1.optional_nested_enum());
359 EXPECT_EQ(unittest::TestAllTypes::BAR, message2.repeated_nested_enum(1));
754 unittest::TestAllTypes::NestedEnum a = unittest::TestAllTypes::BAR;
759 case unittest::TestAllTypes::BAR:
    [all...]
  /external/gtest/test/
gtest_unittest.cc 635 EXPECT_FALSE(null == "bar"); // NOLINT
640 EXPECT_FALSE(empty == "bar"); // NOLINT
645 EXPECT_FALSE(foo == "bar"); // NOLINT
654 EXPECT_TRUE(null != "bar"); // NOLINT
659 EXPECT_TRUE(empty != "bar"); // NOLINT
664 EXPECT_TRUE(foo != "bar"); // NOLINT
670 EXPECT_TRUE(String("foobar").EndsWith("bar"));
680 EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive("BAR"));
681 EXPECT_TRUE(String("foobaR").EndsWithCaseInsensitive("bar"));
    [all...]
  /external/protobuf/gtest/test/
gtest_unittest.cc     [all...]

Completed in 923 milliseconds

12 3