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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/ELF/
got.s 6 movl foo@GOT, %eax
7 movl foo@GOTPCREL(%rip), %eax
invalid-symver.s 6 .symver undefined, foo@@bar
  /ndk/tests/build/import-install/jni/
main.c 3 int foo(int x) function
  /ndk/tests/build/import-static/foo/
foo.c 1 #include "foo.h"
4 int foo(int x) function
foo.h 4 extern int foo(int x);
  /ndk/tests/build/import-static/jni/
main.c 1 #include "foo.h"
5 return foo(x-5)*7;
  /external/clang/test/Sema/
compound-literal.c 3 struct foo { int a, b; }; struct
5 static struct foo t = (struct foo){0,0};
6 static struct foo t1 = __builtin_choose_expr(0, (struct foo){0,0}, (struct foo){0,0});
7 static struct foo t2 = {0,0};
8 static struct foo t3 = t2; // -expected-error {{initializer element is not a compile-time constant}}
21 extern void fooFunc(struct foo *pfoo);
25 fooFunc(&(struct foo){ 1, 2 })
    [all...]
  /external/android-mock/tests/com/google/android/testing/mocking/
ClassHasNoDefaultConstructor.java 24 public ClassHasNoDefaultConstructor(int foo) {
28 public int foo() { method in class:ClassHasNoDefaultConstructor
ClassHasOverloadedMethods.java 24 public int foo() { method in class:ClassHasOverloadedMethods
28 public void foo(int arg) { method in class:ClassHasOverloadedMethods
  /external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/
p2-noexceptions.cpp 8 class foo { virtual ~foo(); }; class
  /external/clang/test/CXX/class.access/class.friend/
p11.cpp 5 void foo() { function in namespace:test0
14 void foo() { function in namespace:test1
  /external/clang/test/CodeGen/
PR2001-bitfield-reload.c 6 static int foo(int i) { function
15 return foo(-5) == -1;
  /external/clang/test/CodeGenCXX/
asm.cpp 7 int foo(A);
12 asm("" : : "r"(foo(a)) ); // rdar://8540491
  /external/llvm/test/FrontendC/
2002-02-13-UnnamedLocal.c 14 int foo(foostruct ic);
18 foo(xqic);
2002-05-23-StaticValues.c 8 static void foo(int Z) { function
13 foo(12);
2003-08-30-AggregateInitializer.c 7 struct foo { struct
14 struct foo F = { 1, { 7 }, { 123 } , 1 };
2006-10-30-ArrayCrash.c 4 extern void foo();
16 foo();
arrayderef.c 6 struct foo { struct
11 struct foo Foo[1];
15 return &Foo->y[ix];
wchar-const.c 4 extern void foo(const wchar_t* p);
7 foo(L"This is some text");
  /external/llvm/test/FrontendC++/
2007-08-01-RestrictMethod.cpp 4 class foo { class
11 void foo::bar(int * a) __restrict {
  /external/mesa3d/src/glsl/glcpp/tests/
019-define-func-1-arg-multi.c 1 #define foo(x) (x) macro
2 foo(this is more than one word)
022-define-func-arg-with-parens.c 1 #define foo(x) (x) macro
2 foo(argument(including parens)for the win)
038-func-arg-with-commas.c 1 #define foo(x) success macro
2 foo(argument (with,embedded , commas) -- tricky)
  /external/clang/test/PCH/
method_pool.h 17 - (double)instMethod:(int)foo;
21 - (char)instMethod:(int)foo;
27 - (double)instMethod:(int)foo {
28 return foo;
33 - (char)instMethod:(int)foo {
34 return foo;
  /external/clang/test/Parser/
parenthesis-balance.cpp 4 if (int foo = f(bar)) {} // expected-error{{use of undeclared identifier 'bar'}}
5 while (int foo = f(bar)) {} // expected-error{{use of undeclared identifier 'bar'}}
6 for (int foo = f(bar);;) {} // expected-error{{use of undeclared identifier 'bar'}}
9 if (int foo = f(bar)) {}
10 while (int foo = f(bar)) {}
11 for (int foo = f(bar);;) {}

Completed in 3534 milliseconds

1 2 3 4 5 6 7 8 91011>>