HomeSort by relevance Sort by last modified time
    Searched refs:foo (Results 251 - 275 of 1478) sorted by null

<<11121314151617181920>>

  /external/clang/test/Sema/
attr-decl-after-definition.c 3 void foo();
4 void foo() __attribute__((unused));
5 void foo() __attribute__((unused));
6 void foo(){} // expected-note {{previous definition is here}} function
7 void foo() __attribute__((constructor)); // expected-warning {{must precede definition}}
8 void foo();
warn-unused-value.c 8 void foo();
12 1,foo(); // expected-warning {{expression result unused}}
15 foo();
18 i,foo(); // expected-warning {{expression result unused}}
19 foo(),i; // expected-warning {{expression result unused}}
21 i,j,foo(); // expected-warning {{expression result unused}} expected-warning {{expression result unused}}
22 i,foo(),j; // expected-warning {{expression result unused}} expected-warning {{expression result unused}}
23 foo(),i,j; // expected-warning {{expression result unused}} expected-warning {{expression result unused}}
27 i++,foo();
28 foo(),i++
    [all...]
merge-decls.c 3 void foo(void);
4 void foo(void) {} function
5 void foo(void);
6 void foo(void); // expected-note {{previous declaration is here}}
8 void foo(int); // expected-error {{conflicting types for 'foo'}}
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p12.cpp 28 Opaque<0> foo(Opaque<0>);
29 Opaque<0> foo(Opaque<1>);
30 Opaque<0> foo(Opaque<2>);
35 using Base::foo;
36 Opaque<1> foo(Opaque<1>);
37 Opaque<1> foo(Opaque<3>);
39 void test0() { Opaque<0> _ = foo(Opaque<0>()); }
40 void test1() { Opaque<1> _ = foo(Opaque<1>()); }
41 void test2() { Opaque<0> _ = foo(Opaque<2>()); }
42 void test3() { Opaque<1> _ = foo(Opaque<3>());
108 template <class T> Opaque<0> foo() { return Opaque<0>(); } function in struct:test3::Base
109 template <int n> Opaque<1> foo() { return Opaque<1>(); } function in struct:test3::Base
114 template <int n> Opaque<2> foo() { return Opaque<2>(); } \/\/ expected-note {{invalid explicitly-specified argument for template parameter 'n'}} function in struct:test3::Derived1
118 template <int n> Opaque<2> foo() { return Opaque<2>(); } \/\/ expected-note {{invalid explicitly-specified argument for template parameter 'n'}} function in struct:test3::Derived2
124 template <class T> Opaque<3> foo() { return Opaque<3>(); } \/\/ expected-note {{invalid explicitly-specified argument for template parameter 'T'}} function in struct:test3::Derived3
128 template <class T> Opaque<3> foo() { return Opaque<3>(); } \/\/ expected-note {{invalid explicitly-specified argument for template parameter 'T'}} function in struct:test3::Derived4
    [all...]
p3-cxx0x.cpp 24 int foo();
28 int foo();
35 int foo();
40 using InnerNS::foo; // expected-error {{not a class}}
42 using Unrelated::foo; // expected-error {{not a base class}}
43 using C::foo; // expected-error {{refers to its own class}}
44 using Subclass::foo; // expected-error {{not a base class}}
p1.cpp 7 class foo {}; // expected-note {{candidate}} class
8 test<0> foo(foo); // expected-note {{candidate}}
11 class foo { int x; }; class in namespace:Test0
12 test<1> foo(class foo);
15 test<2> foo(class ::foo); // expected-note {{candidate}} \
19 using ::foo;
21 class foo a
    [all...]
  /external/llvm/unittests/Support/
Casting.cpp 24 struct foo *baz();
25 struct foo *caz();
26 struct foo *daz();
27 struct foo *naz();
31 struct foo { struct in namespace:llvm
39 template <> struct isa_impl<foo, bar> {
46 foo *bar::baz() {
47 return cast<foo>(this);
50 foo *bar::caz() {
51 return cast_or_null<foo>(this)
    [all...]
  /external/webkit/LayoutTests/fast/url/script-tests/
standard-url.js 4 ["http://www.google.com/foo?bar=baz#", "http://www.google.com/foo?bar=baz#"],
8 ["http:////////user:@google.com:99?foo", "http://user@google.com:99/?foo"],
12 ["http://www/foo%2Ehtml", "http://www/foo.html"],
16 ["http:\\\\\\\\www.google.com\\\\foo", "http://www.google.com/foo"],
20 ["http://foo:80/", "http://foo/"],
    [all...]
segments-from-data-url.js 5 ["http://user:pass@foo:21/bar;par?b#c", ["http:","foo","21","/bar;par","?b","#c"]],
6 ["http:foo.com", ["http:","foo.com","0","/","",""]],
7 ["\\t :foo.com \\n", [":","","0","","",""]],
8 [" foo.com ", [":","","0","","",""]],
9 ["a:\\t foo.com", ["a:","","0"," foo.com","",""]],
23 [":foo.com/", [":","","0","","",""]],
24 [":foo.com\\\\", [":","","0","","",""]]
    [all...]
  /external/clang/test/CXX/expr/expr.unary/expr.unary.op/
p4.cpp 6 void foo(void (A::*)(int)); // expected-note {{passing argument to parameter here}}
10 foo(&g<int>); // expected-error {{can't form member pointer of type 'void (test0::A::*)(int)' without '&' and class name}}
32 static int foo(short);
33 static int foo(float);
34 int foo(int);
35 int foo(double);
41 int (A::*ptr)(int) = &(A::foo); // expected-error {{can't form member pointer of type 'int (test2::A::*)(int)' without '&' and class name}}
  /external/valgrind/main/helgrind/tests/
hg05_race2.c 6 struct foo { struct
15 struct foo *f = (struct foo *)v;
24 struct foo foo; local
27 pthread_create(&a, NULL, th, &foo);
29 pthread_create(&b, NULL, th, &foo);
  /external/llvm/test/MC/COFF/
seh-section.s 2 // (e.g. .text$foo), its unwind info section also has a suffix (.xdata$foo).
6 // CHECK: Name = .xdata$foo
23 .section .text$foo,"x"
24 .globl foo
25 .def foo; .scl 2; .type 32; .endef
26 .seh_proc foo
27 foo: label
  /external/v8/test/mjsunit/
string-replace-gc.js 31 var foo = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; variable
33 foo = foo + foo;
34 foo = foo + foo;
35 foo = foo + foo;
    [all...]
  /external/clang/test/CodeGen/
asm-inout.c 3 int *foo(void);
7 // CHECK: [[REGCALLRESULT:%[a-zA-Z0-9\.]+]] = call i32* @foo()
9 asm ("foobar" : "+m"(*foo()));
14 // CHECK: [[REGCALLRESULT:%[a-zA-Z0-9\.]+]] = call i32* @foo()
18 asm ("foobar" : "+r"(*foo()));
enum.c 7 static enum { foo, bar = 1U } z; enumerator in enum:__anon4597
15 if (foo - 1 < 0)
  /external/clang/test/CodeGenCXX/
mangle-abi-examples.cpp 9 void foo (int) { function in struct:A
14 void foo () { function
24 A().foo(0);
anonymous-namespaces.cpp 32 int foo() { function in namespace:__anon4688
38 int foo() { function in namespace:__anon4688::A
45 return a + foo() + A::foo();
54 static void foo() {} function in struct:test2::A::B
64 A::B<C>::foo();
  /external/clang/test/SemaCXX/
cxx0x-defaulted-functions.cpp 4 struct foo { struct
7 foo() = default;
8 foo(const foo&) = default;
9 foo(foo&) = default;
10 foo& operator = (const foo&) = default;
11 foo& operator = (foo&) = default
    [all...]
virtual-base-used.cpp 13 virtual void foo();
16 void D::foo() { // expected-note {{implicit default destructor for 'B' first required here}} function in class:D
25 virtual void foo();
28 void G::foo() { // expected-note {{implicit default destructor for 'F' first required here}} function in class:G
38 virtual void foo();
41 void J::foo() { // expected-note {{implicit default destructor for 'H' first required here}} function in class:J
  /external/llvm/test/FrontendC/
2003-10-29-AsmRename.c 4 struct foo { int X; }; struct
7 extern int Func(struct foo*) __asm__("Func64");
10 int Func(struct foo *F) {
2007-10-01-BuildArrayRef.c 9 struct foo { struct
12 struct foo sfoo = { 0 };
16 const struct foo *fp;
  /external/llvm/test/MC/ELF/
type.s 4 .global foo
5 .type foo,%function
6 foo: label
25 // CHECK-NEXT: (('st_name', 0x00000001) # 'foo'
  /external/valgrind/main/memcheck/tests/
leak-0.c 12 register char *foo; local
16 foo = malloc(0);
22 free(foo);
  /dalvik/dx/tests/092-ssa-cfg-edge-cases/
Blort.java 4 void testMultipleIdenticalSuccessors(int foo) {
5 switch(foo) {
9 System.out.println("foo");
  /external/clang/test/Frontend/
cpp-output.c 10 #define A(foo, bar) foo bar

Completed in 411 milliseconds

<<11121314151617181920>>