HomeSort by relevance Sort by last modified time
    Searched refs:Foo (Results 276 - 300 of 1017) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGenCXX/
array-value-initialize.cpp 11 struct Foo {
12 Foo(void) : bar_(), dbar_(), sbar_() {
26 Foo a;
debug-info-decl-nested.cpp 13 class Foo;
23 OuterClass(const Foo *); // line 10
30 OuterClass::OuterClass(const Foo *meta) { } // line 13
debug-info-explicit-cast.cpp 4 struct Foo {
6 Foo() : A(1){};
37 return reinterpret_cast<Foo *>(PB)->A + reinterpret_cast<Quux *>(0)->E;
40 // CHECK-DAG: !DICompositeType(tag: DW_TAG_structure_type, name: "Foo",
member-expressions.cpp 24 enum E { Foo };
30 A::E e1 = a->Foo;
33 A::E e2 = g()->Foo;
36 A::E e3 = A().Foo;
41 static int foo();
44 return A().foo();
54 void foo();
68 c_ptr->B::foo();
pr24097.cpp 4 virtual void Foo();
  /external/clang/test/SemaCXX/
i-c-e-cxx.cpp 27 class Foo {
32 const int Foo::kBar = 20;
35 char str[Foo::kBar];
54 int foo() { return A::B; } function in namespace:rdar9204520
  /external/clang/test/SemaTemplate/
instantiate-deeply.cpp 26 class Foo {
28 Foo() {}
37 template class Foo<int>;
  /external/compiler-rt/test/asan/TestCases/Linux/
init-order-dlopen.cc 26 struct Foo {
27 Foo() : val(42) { printf("Foo::Foo()\n"); }
31 Foo global_foo;
  /external/mockito/src/test/java/org/mockitousage/bugs/varargs/
VarargsErrorWhenCallingRealMethodTest.java 16 class Foo {
24 Foo foo = mock(Foo.class); local
26 when(foo.blah(anyString(), anyString())).thenCallRealMethod();
28 assertEquals(1, foo.blah("foo", "bar"));
  /external/protobuf/gtest/test/
gtest_list_tests_unittest_.cc 46 TEST(Foo, Bar1) {
49 TEST(Foo, Bar2) {
52 TEST(Foo, DISABLED_Bar3) {
  /external/robolectric-shadows/sandbox/src/test/java/org/robolectric/testing/
ShadowFoo.java 8 @Implements(Foo.class)
10 @RealObject public Foo realFooField;
11 public Foo realFooInConstructor;
  /external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
ManyConstructorsTest.java 40 Foo noIndex = factory.create("no index");
43 Foo index = factory.create("index", 1);
56 Foo noIndex = factory.create("no index");
59 Foo index = factory.create(1, "index");
62 Foo index2 = factory.create("index", 2);
72 .implement(Bar.class, Foo.class)
93 Foo noIndex = factory.create("no index");
104 Foo index = factory2.create("index", 1);
115 .implement(Foo.class, TooManyMatches.class)
137 Asserts.assertContains(expected.getMessage(), "1) " + Foo.class.getName(
    [all...]
  /external/python/cpython3/Lib/unittest/test/
test_skipping.py 9 class Foo(unittest.TestCase):
14 test = Foo("test_skip_me")
20 class Foo(unittest.TestCase):
26 test = Foo("test_nothing")
33 class Foo(unittest.TestCase):
42 test = Foo("test_skip_me")
61 class Foo(unittest.TestCase):
67 test_do_skip = Foo("test_skip")
68 test_dont_skip = Foo("test_dont_skip")
83 class Foo(unittest.TestCase)
    [all...]
  /external/clang/include/clang/Sema/
SemaFixItUtils.h 62 ConversionFixItGenerator(TypeComparisonFuncTy Foo): NumConversionsFixed(0),
64 CompareTypes(Foo) {}
71 void setConversionChecker(TypeComparisonFuncTy Foo) {
72 CompareTypes = Foo;
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3.cpp 33 void Foo(R (*fp)());
36 Foo(Func<int>);
49 int Foo(Bar *b, void (*Baz)(const T &t), T * = 0) {
56 return Foo<T>(b, quuz);
  /external/clang/test/Index/
print-type.cpp 4 struct Foo {
17 Bar(outer::Foo<bool>* foo) { }
27 Baz<int, 1, Foo> baz;
28 Qux<int, char*, Foo<int>> qux;
43 void foo(int i, int incomplete_array[]) { int variable_array[i]; } function
61 // CHECK: ClassTemplate=Foo:4:8 (Definition) [type=] [typekind=Invalid] [isPOD=0]
71 // CHECK: CXXConstructor=Bar:17:3 (Definition) (converting constructor) [type=void (outer::Foo<bool> *){{.*}}] [typekind=FunctionProto] [canonicaltype=void (outer::Foo<bool> *){{.*}}] [canonicaltypekind=FunctionProto] [resulttype=void] [resulttypekind=Void] [args= [outer::Foo<bool> *] [Pointer]] [isPOD=0
    [all...]
  /external/clang/test/Misc/
diag-aka-types.cpp 16 // There are two classes named Foo::foo here. Make sure the message gives
18 namespace Foo {
19 class foo {}; class in namespace:Foo
23 namespace Foo {
24 class foo;
26 void f(Foo::foo* x); // expected-note{{passing argument to parameter 'x' here}}
29 void test(Foo::foo* x)
    [all...]
  /external/clang/test/Parser/
cxx-undeclared-identifier.cpp 18 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \
  /external/mockito/src/test/java/org/mockito/internal/stubbing/defaultanswers/
ForwardsInvocationsTest.java 14 interface Foo {
18 private static final class FooImpl implements Foo {
28 assertEquals(4, forwardsInvocations.answer(invocationOf(Foo.class, "bar", "b", new Object[] {12, "3", 4.5})));
34 assertEquals(1, forwardsInvocations.answer(invocationOf(Foo.class, "bar", "b", new Object[] {})));
  /external/mockito/src/test/java/org/mockitousage/spies/
StubbingSpiesDoesNotYieldNPETest.java 18 class Foo {
34 Foo foo = new Foo(); local
35 Foo spy = spy(foo);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowRemoteCallbackListTest.java 17 RemoteCallbackList<Foo> fooRemoteCallbackList = new RemoteCallbackList<>();
18 Foo callback = new Foo();
26 public static class Foo implements IInterface {
  /external/v8/tools/clang/plugins/tests/system/
windows.h 15 #define SYSTEM_INLINE_VIRTUAL virtual int Foo() { return 4; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
SemaFixItUtils.h 62 ConversionFixItGenerator(TypeComparisonFuncTy Foo): NumConversionsFixed(0),
64 CompareTypes(Foo) {}
71 void setConversionChecker(TypeComparisonFuncTy Foo) {
72 CompareTypes = Foo;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Sema/
SemaFixItUtils.h 62 ConversionFixItGenerator(TypeComparisonFuncTy Foo): NumConversionsFixed(0),
64 CompareTypes(Foo) {}
71 void setConversionChecker(TypeComparisonFuncTy Foo) {
72 CompareTypes = Foo;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Sema/
SemaFixItUtils.h 62 ConversionFixItGenerator(TypeComparisonFuncTy Foo): NumConversionsFixed(0),
64 CompareTypes(Foo) {}
71 void setConversionChecker(TypeComparisonFuncTy Foo) {
72 CompareTypes = Foo;

Completed in 1458 milliseconds

<<11121314151617181920>>