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

1 2 3 4 5 6 7 891011>>

  /external/mockito/src/test/java/org/mockitousage/basicapi/
ObjectsSerializationTest.java 26 Foo foo; field in class:ObjectsSerializationTest.Bar
29 class Foo implements Serializable {
31 Foo() {
33 bar.foo = this;
40 Foo foo = new Foo(); local
42 foo = serializeAndBack(foo);
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/
ShadowFoo.java 6 @Implements(Foo.class)
8 @RealObject Foo realFooField;
9 Foo realFooInConstructor;
11 Foo realFooCtor;
15 public ShadowFoo(Foo foo) {
16 this.realFooCtor = foo;
  /libcore/benchmarks/src/benchmarks/
ArrayListIterationBenchmark.java 25 ArrayList<Foo> mList = new ArrayList<Foo>();
27 for (int i = 0; i < 27; ++i) mList.add(new Foo());
32 ArrayList<Foo> list = mList;
42 for (Foo a : mList) {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/iterator.range/
begin-end.fail.cpp 28 namespace Foo {
46 (void) std::cbegin (Foo::FakeContainer());
47 (void) std::cend (Foo::FakeContainer());
48 (void) std::crbegin(Foo::FakeContainer());
49 (void) std::crend (Foo::FakeContainer());
  /external/clang/test/SemaCXX/
copy-initialization.cpp 24 struct foo { struct
29 void test(const foo *P) { P->bar(); } // expected-error{{'bar' not viable: 'this' argument has type 'const foo', but function is not marked const}}
32 struct Foo {
33 Foo();
34 Foo(Foo&); // expected-note{{candidate constructor not viable}}
38 operator const Foo&() const;
41 void f(Foo);
43 void g(Foo foo)
    [all...]
  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
test12-expected.cc 11 struct Foo {
15 typedef std::map<std::string, scoped_refptr<const Foo>> MyMap;
18 : public std::iterator<std::input_iterator_tag, scoped_refptr<const Foo>> {
27 const scoped_refptr<const Foo> operator*() { return it_->second; }
37 map["foo"] = new Foo;
38 map["bar"] = new Foo;
42 const Foo* item = NULL;
test12-original.cc 11 struct Foo {
15 typedef std::map<std::string, scoped_refptr<const Foo>> MyMap;
18 : public std::iterator<std::input_iterator_tag, scoped_refptr<const Foo>> {
27 const scoped_refptr<const Foo> operator*() { return it_->second; }
37 map["foo"] = new Foo;
38 map["bar"] = new Foo;
42 const Foo* item = NULL;
gtest-expected.cc 8 struct Foo : public base::RefCounted<Foo> {
13 scoped_refptr<Foo> a;
14 Foo* b;
gtest-original.cc 8 struct Foo : public base::RefCounted<Foo> {
13 scoped_refptr<Foo> a;
14 Foo* b;
  /prebuilts/go/darwin-x86/src/go/ast/
ast_test.go 18 {[]string{"// foo "}, "foo\n"},
19 {[]string{"//", "//", "// foo"}, "foo\n"},
20 {[]string{"// foo bar "}, "foo bar\n"},
21 {[]string{"// foo", "// bar"}, "foo\nbar\n"},
22 {[]string{"// foo", "//", "//", "//", "// bar"}, "foo\n\nbar\n"}
    [all...]
  /prebuilts/go/linux-x86/src/go/ast/
ast_test.go 18 {[]string{"// foo "}, "foo\n"},
19 {[]string{"//", "//", "// foo"}, "foo\n"},
20 {[]string{"// foo bar "}, "foo bar\n"},
21 {[]string{"// foo", "// bar"}, "foo\nbar\n"},
22 {[]string{"// foo", "//", "//", "//", "// bar"}, "foo\n\nbar\n"}
    [all...]
  /external/llvm/test/tools/dsymutil/X86/
modules.m 3 module Foo {
4 header "Foo.h"
13 clang -D FOO_H -E -o Foo.h modules.m
57 // CHECK: 0x0[[FOO:.*]]: DW_TAG_module
58 // CHECK-NEXT: DW_AT_name{{.*}}"Foo"
67 // CHECK-NEXT: DW_AT_name{{.*}}"Foo"
73 @interface Foo {
86 // CHECK-NEXT: DW_AT_name{{.*}}"Foo"
94 // CHECK: DW_AT_import [DW_FORM_ref_addr] (0x{{0*}}[[FOO]]
102 // CHECK: DW_AT_name{{.*}}"foo"
    [all...]
  /external/clang/test/CodeGenCXX/
reference-init.cpp 20 struct Foo { int foo; }; member in struct:Foo
21 Foo& ignoreSetMutex = *(new Foo);
2007-10-01-StructResize.cpp 10 int Foo(Bork *hdr) {
  /external/google-breakpad/src/testing/gtest/test/
gtest_list_tests_unittest_.cc 46 TEST(Foo, Bar1) {
49 TEST(Foo, Bar2) {
52 TEST(Foo, DISABLED_Bar3) {
  /external/guice/core/test/com/google/inject/
ReflectionTest.java 36 final Foo foo = new Foo(); local
40 bind(Foo.class).toInstance(foo);
44 Binding<Foo> fooBinding = injector.getBinding(Key.get(Foo.class));
45 assertSame(foo, fooBinding.getProvider().get());
48 assertEquals(Key.get(Foo.class), fooBinding.getKey());
71 bind(Key.get(Foo.class)).to(Key.get(Bar.class))
    [all...]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
LiteEqualsAndHashTest.java 35 import protobuf_unittest.lite_equals_and_hash.LiteEqualsAndHash.Foo;
61 Foo foo1a = Foo.newBuilder()
65 Foo foo1b = Foo.newBuilder()
69 Foo foo2 = Foo.newBuilder()
99 Foo fooWithOnlyValue = Foo.newBuilder()
103 Foo fooWithValueAndExtension = fooWithOnlyValue.toBuilder(
    [all...]
  /external/clang/test/Index/
evaluate-cursor.cpp 3 struct Foo {
7 void foo() { function
  /external/clang/test/Modules/Inputs/
category_bottom.h 3 @interface Foo(Bottom)
namespaces-left.h 63 class Foo;
65 Foo *getFoo();
70 class Foo;
72 Foo *getFoo();
  /external/libcxx/test/std/experimental/utilities/meta/meta.detect/
detected_t.pass.cpp 21 using callFoo = decltype(std::declval<T&>().Foo());
24 int Foo() { return 0; }
31 std::string Foo() { return ""; }
35 long Foo() { return 0; }
is_detected_convertible.pass.cpp 21 using callFoo = decltype(std::declval<T&>().Foo());
24 int Foo() { return 0; }
31 std::string Foo() { return ""; }
35 long Foo() { return 0; }
is_detected_exact.pass.cpp 21 using callFoo = decltype(std::declval<T&>().Foo());
24 int Foo() { return 0; }
31 std::string Foo() { return ""; }
35 long Foo() { return 0; }
  /external/mockito/src/test/java/org/mockitousage/debugging/
Foo.java 7 interface Foo {
  /external/v8/tools/clang/plugins/tests/
nested_class_inline_ctor.h 13 class Foo {

Completed in 1045 milliseconds

1 2 3 4 5 6 7 891011>>