HomeSort by relevance Sort by last modified time
    Searched refs:Foo (Results 301 - 325 of 895) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/test/fixedbugs/issue5470.dir/
a.go 7 type Foo interface {
11 func Test1() Foo { return make(tst1) }
17 func Test2() Foo { return make(tst2, 0) }
23 func Test3() Foo { return make(tst3) }
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug005.go 10 Foo: {
13 goto Foo;
16 bug5.go:4: Foo undefined
issue16016.go 13 func (*T) Foo(vals []interface{}) {
23 Foo([]interface{})
30 defer q.Foo([]interface{}{"meow"})
issue5056.go 11 type Foo int16
13 func (f Foo) Esc() *int{
26 var x Foo
  /prebuilts/go/linux-x86/test/fixedbugs/
bug005.go 10 Foo: {
13 goto Foo;
16 bug5.go:4: Foo undefined
  /hardware/interfaces/tests/baz/1.0/
IBase.hal 24 struct Foo {
86 someOtherBaseMethod(Foo foo) generates (Foo result);
87 someMethodWithFooArrays(Foo[2] fooInput) generates (Foo[2] fooOutput);
88 someMethodWithFooVectors(vec<Foo> fooInput) generates (vec<Foo> fooOutput);
  /hardware/interfaces/tests/foo/1.0/default/
Foo.cpp 4 #include "Foo.h"
13 namespace foo { namespace in namespace:android::hardware::tests
17 // Methods from ::android::hardware::tests::foo::V1_0::IFoo follow.
18 Return<void> Foo::doThis(float param) {
19 LOG(INFO) << "SERVER(Foo) doThis(" << param << ")";
24 Return<int32_t> Foo::doThatAndReturnSomething(
26 LOG(INFO) << "SERVER(Foo) doThatAndReturnSomething(" << param << ")";
31 Return<double> Foo::doQuiteABit(
36 LOG(INFO) << "SERVER(Foo) doQuiteABit("
49 Return<void> Foo::doSomethingElse
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/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")
36 class Foo(unittest.TestCase):
42 test_do_skip = Foo("test_skip")
43 test_dont_skip = Foo("test_dont_skip")
58 class Foo(unittest.TestCase):
63 test = Foo("test_1")
70 class Foo(unittest.TestCase):
    [all...]
  /external/guice/core/test/com/google/inject/
PerformanceComparison.java 69 static final Callable<Foo> springFactory = new Callable<Foo>() {
88 RootBeanDefinition foo = new RootBeanDefinition(Foo.class, false);
94 foo.setPropertyValues(fooValues);
96 beanFactory.registerBeanDefinition("foo", foo);
101 public Foo call() throws Exception {
102 return (Foo) beanFactory.getBean("foo");
146 Foo foo = t.call(); local
    [all...]
  /external/clang/test/SemaCXX/
warn-unused-local-typedef.cpp 4 typedef int Foo; // no diag
8 typedef int Foo; // no diag
42 typedef int Foo; // no diag
50 S2::Foo s2foo;
60 N::Foo nfoo;
80 typedef int foo; // expected-warning {{unused typedef 'foo'}} typedef
85 typedef int foo; // expected-warning {{unused typedef 'foo'}} typedef
90 typedef int Foo; // no dia
    [all...]
warn-range-loop-analysis.cpp 19 struct Foo {};
21 Bar(Foo);
39 // Foo => Bar
50 // Foo => Bar
56 // Foo => Foo
57 // Foo => Bar
194 Container<Foo> E;
208 Container<Foo&> F;
212 // expected-note-re@-2 {{'Bar'{{.*}}'const Foo &'}
    [all...]
linkage-spec.cpp 20 extern "C" int foo; variable
21 extern "C" int foo; variable
33 int foo(int x) { return x; } function in struct:N0::X0
161 class Foo;
162 extern "C" int bar3(Foo *y);
163 class Foo {
165 friend int bar3(Foo *y);
171 extern "C" int bar3(Foo *y) {
pseudo-destructors.cpp 4 enum Foo { F };
5 typedef Foo Bar; // expected-note{{type 'Bar' (aka 'Foo') is declared here}}
13 typedef Foo Wibble;
22 void f(A* a, Foo *f, int *i, double *d, int ii) {
26 a->~foo(); // expected-error{{identifier 'foo' in object destruction expression does not name a type}}
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}}
31 f->~Foo();
  /external/guice/core/test/com/google/inject/spi/
ToolStageInjectorTest.java 25 Foo.s = null;
26 Foo.sm = null;
63 final Foo foo = new Foo(); local
67 requestStaticInjection(Foo.class);
68 requestInjection(foo);
71 assertNull(Foo.s);
72 assertNull(Foo.sm);
73 assertNull(foo.f)
78 final Foo foo = new Foo(); local
    [all...]
  /external/guice/jdk8-tests/test/com/google/inject/jdk8/
DefaultMethodInterceptionTest.java 63 public interface Foo {
67 return "Foo";
71 /** Foo implementation that does not override the default method. */
72 public static class NonOverridingFoo implements Foo {
84 bind(Foo.class).to(NonOverridingFoo.class);
88 Foo foo = injector.getInstance(Foo.class); local
89 assertEquals("Foo", foo.defaultMethod())
103 NonOverridingFoo foo = injector.getInstance(NonOverridingFoo.class); local
133 Foo foo = injector.getInstance(Foo.class); local
168 Foo foo = injector.getInstance(Foo.class); local
    [all...]
  /art/test/616-cha-proxy-method-inline/src/
Main.java 22 static Class<?>[] interfaces = {Foo.class};
26 Foo.class.getClassLoader(),
55 public static void call(Foo foo) {
56 if (foo == null) {
59 foo.bar(null);
64 Foo foo = (Foo)DebugProxy.newInstance(null); local
66 call(foo);
    [all...]
  /external/guice/extensions/jmx/test/com/google/inject/tools/jmx/
JmxTest.java 34 interface Foo {}
36 static class FooImpl implements Foo {}
39 static class TransactionalFoo implements Foo {}
53 bind(Foo.class).to(FooImpl.class);
55 bind(Foo.class)
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p4.cpp 63 static void Foo (int = 0);
67 friend void B::Foo (int);
72 A::B::Foo ();
  /external/clang/test/CXX/temp/temp.decls/temp.mem/
p5.cpp 33 class Foo {
52 template float Foo::As();
53 template double Foo::As2();
  /external/clang/test/Index/
annotate-tokens-cxx0x.cpp 19 virtual void foo(Int);
23 virtual void foo(Int) override;
59 struct Foo {
60 Foo(std::initializer_list<int> il);
64 Foo{10};
81 // CHECK-WITH-OVERRIDE: Keyword: "virtual" [19:2 - 19:9] CXXMethod=foo:19:15 (virtual)
82 // CHECK-WITH-OVERRIDE: Keyword: "void" [19:10 - 19:14] CXXMethod=foo:19:15 (virtual)
83 // CHECK-WITH-OVERRIDE: Identifier: "foo" [19:15 - 19:18] CXXMethod=foo:19:15 (virtual)
84 // CHECK-WITH-OVERRIDE: Punctuation: "(" [19:18 - 19:19] CXXMethod=foo:19:15 (virtual
    [all...]
  /external/clang/test/SemaTemplate/
derived.cpp 8 template<typename T> void Foo(vector<const T*> V) {} // expected-note {{candidate template ignored: cannot deduce a type for 'T' that would make 'const T' equal 'int'}}
12 Foo(vector<int*>()); // expected-error{{no matching function for call to 'Foo'}}
36 IncompleteClass Foo; // expected-error{{field has incomplete type}}
recovery-crash.cpp 49 class Foo;
51 void MemberFunction(ArraySlice<Foo>, int);
54 void NonTemplateClass::MemberFunction(ArraySlice<Foo> resource_data,
56 // expected-note@+1 {{in instantiation of function template specialization 'test1::NonTemplateClass::MemberFuncTemplate<test1::Foo>'}}
  /external/mockito/src/test/java/org/concurrentmockito/
VerificationInOrderFromMultipleThreadsTest.java 19 final Foo testInf = mock(Foo.class);
42 public interface Foo {
  /external/v8/tools/clang/plugins/tests/
auto_raw_pointer.cpp 5 class Foo {
7 void foo() {} function in class:Foo
14 Foo foo; local
27 auto raw_foo_ptr = &foo;
28 const auto const_raw_foo_ptr = &foo;
29 const auto& const_raw_foo_ptr_ref = &foo;
31 auto* raw_foo_ptr_valid = &foo;
32 const auto* const_raw_foo_ptr_valid = &foo;
41 auto method_ptr = &Foo::foo
    [all...]
  /external/snakeyaml/src/test/java/examples/
CustomBeanResolverTest.java 37 Foo foo = (Foo) yaml.load("bar: 50\nbaz: 35%\nbas: 1250"); local
38 assertEquals(50.0, foo.bar);
39 assertEquals("0.35", foo.baz.toString());
40 assertEquals("1250", foo.bas);
45 Foo foo = (Foo) yaml.load("bar: 50%\nbaz: 35%\nbas: 1250%\nbaw: 35"); local
46 assertEquals(0.5, foo.bar)
    [all...]

Completed in 1563 milliseconds

<<11121314151617181920>>