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

1 2 3 4 5 6 78 91011>>

  /external/clang/test/Analysis/
analyzer-config.cpp 5 void foo() { function
13 class Foo {
16 void foo() { bar(); } function in class:Foo
  /external/clang/test/CodeGen/
2008-08-07-GEPIntToPtr.c 12 const struct A Foo = {
sparc-vaarg.c 13 struct Foo {
17 struct Foo dest;
20 // CHECK: [[RESULT:%[a-z_0-9]+]] = va_arg {{.*}}, %struct.Foo*{{$}}
24 dest = va_arg(*args, struct Foo);
  /external/clang/test/Modules/Inputs/
namespaces-right.h 58 class Foo;
60 void consumeFoo(Foo*);
65 class Foo;
67 void consumeFoo(Foo*);
category_right_sub.h 1 @interface Foo(RightSub) <P2>
5 @interface Foo() {
16 @interface Foo(LeftP4) <P4>
  /external/clang/test/SemaTemplate/
overload-uneval.cpp 6 struct Foo
8 Foo *next;
22 static inline B *concrete(Foo *node) {
30 Foo *i;
  /external/sfntly/cpp/src/test/
smart_pointer_test.cc 24 class Foo : public RefCounted<Foo> {
27 int foo() { return foo_; } function in class:Foo
33 Ptr<Foo> p1;
34 p1 = new Foo();
36 EXPECT_EQ(size_t(1), RefCounted<Foo>::object_counter_);
38 Ptr<Foo> p2;
42 EXPECT_EQ(size_t(1), RefCounted<Foo>::object_counter_);
44 Ptr<Foo> p3;
49 EXPECT_EQ(size_t(1), RefCounted<Foo>::object_counter_)
    [all...]
  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
logging-checks-expected.cc 8 struct Foo : public base::RefCounted<Foo> {
17 scoped_refptr<Foo> a;
18 Foo* b;
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;
  /system/tools/hidl/test/vendor/1.0/
types.hal 35 enum Foo : Bar {
41 enum FooToo : Foo {
  /external/clang/test/SemaCXX/
cxx0x-class.cpp 20 float foo(); // expected-note {{here}}
24 static const float y = foo(); // expected-warning {{requires 'constexpr'}} expected-note {{add 'constexpr'}}
26 static constexpr float y2 = foo(); // expected-error {{must be initialized by a constant expression}} expected-note {{non-constexpr function 'foo'}}
31 namespace Foo {
32 // Regression test -- forward declaration of Foo should not cause error about
34 class Foo;
35 class Foo {
pr13394-crash-on-invalid.cpp 19 namespace Foo {
25 struct Derived : public Foo::Base {
27 Foo::Bar(); // expected-error{{no member named 'Bar' in namespace 'Foo'; did you mean simply 'Bar'?}}
pass-object-size.cpp 4 int Foo(void *const p __attribute__((pass_object_size(0))));
10 static int Foo(void *const p __attribute__((pass_object_size(0))));
17 int Foo(void *const p __attribute__((pass_object_size(0))));
23 int (*A)(void *) = &Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_object_size attribute}}
24 int (*B)(void *) = Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_object_size attribute}}
29 int (*E)(void *) = &Statics::Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_object_size attribute}}
32 int (*G)(void *) = &Members::Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_object_size (…)
    [all...]
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/mockito/src/test/java/org/mockitousage/bugs/
NPEOnAnyClassMatcherAutounboxTest.java 16 interface Foo {
22 Foo f = mock(Foo.class);
  /toolchain/binutils/binutils-2.25/gold/testsuite/
icf_virtual_function_folding_test.cc 23 // Foo::fn1 is folded into fn2 with ICF. Since this file is linked as a
26 // the call to Foo::fn1 works correctly after the folding.
48 class Foo : public Bar
53 int Foo::fn1()
60 Bar *f = new Foo();
  /external/libcxx/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/mockito/src/test/java/org/mockito/internal/util/reflection/
FieldReaderTest.java 16 class Foo {
24 FieldReader reader = new FieldReader(new Foo(), Foo.class.getDeclaredField("isNull"));
32 FieldReader reader = new FieldReader(new Foo(), Foo.class.getDeclaredField("notNull"));
  /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/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...]
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/tests/
test_guard.cpp 11 class Foo {
13 Foo() { mValue++; }
19 int Foo::mValue;
21 static Foo* getInstance(void)
26 static Foo _instance;
30 static Foo* sInstances[MAX_THREADS];
52 Foo* foo = getInstance(); local
54 if (foo == NULL) {
55 fprintf(stderr, "ERROR: Foo instance is NULL!\n")
    [all...]

Completed in 1185 milliseconds

1 2 3 4 5 6 78 91011>>