HomeSort by relevance Sort by last modified time
    Searched refs:foo (Results 26 - 50 of 2620) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
modified-header-crash.h 1 int foo; variable
cxx0x-delegating-ctors.cpp 10 struct foo { struct
11 foo(int) : foo() { } function in struct:foo
12 foo();
13 foo(bool) : foo('c') { } function in struct:foo
14 foo(char) : foo(true) { } function in struct:foo
17 foo::foo() : foo(1) { } // expected-error{{creates a delegation cycle}} function in class:foo
    [all...]
  /external/clang/test/Parser/
argument_scope.c 2 typedef struct foo foo; typedef in typeref:struct:foo
4 void blah(int foo) {
5 foo = 1;
  /external/clang/test/Sema/
block-return-3.c 3 void foo() { function
text-diag.c 2 unsigned char *foo = "texto\ variable
  /external/lldb/test/functionalities/fat_archives/
a.c 1 int foo () function
  /external/mesa3d/src/glsl/glcpp/tests/
009-undef.c 1 #define foo 1 macro
2 foo
3 #undef foo macro
4 foo
010-undef-re-define.c 1 #define foo 1 macro
2 foo
3 #undef foo macro
4 foo
5 #define foo 2 macro
6 foo
024-define-chain-to-self-recursion.c 1 #define foo foo macro
2 #define bar foo
032-define-func-self-recurse.c 1 #define foo(a) foo(2*(a)) macro
2 foo(3)
034-define-func-self-compose-non-func.c 1 #define foo(bar) bar macro
2 foo(foo)
035-define-func-self-compose-non-func-multi-token-argument.c 1 #define foo(bar) bar macro
2 foo(1+foo)
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
010-undef-re-define.c 1 #define foo 1 macro
2 foo
3 #undef foo macro
4 foo
5 #define foo 2 macro
6 foo
024-define-chain-to-self-recursion.c 1 #define foo foo macro
2 #define bar foo
032-define-func-self-recurse.c 1 #define foo(a) foo(2*(a)) macro
2 foo(3)
034-define-func-self-compose-non-func.c 1 #define foo(bar) bar macro
2 foo(foo)
035-define-func-self-compose-non-func-multi-token-argument.c 1 #define foo(bar) bar macro
2 foo(1+foo)
012-define-func-no-args.c 1 #define foo() bar macro
2 foo()
  /external/clang/test/Misc/
error-limit-multiple-notes.cpp 4 void foo(int);
5 void foo(double);
6 void foo(int, int);
7 void foo(int, int, int, int);
11 foo(1, 2, 3);
18 // CHECK: 11:5: error: no matching function for call to 'foo'
  /external/clang/test/Preprocessor/
if_warning.c 6 #if foo // expected-error {{'foo' is not defined, evaluates to 0}}
9 #ifdef foo
12 #if defined(foo)
  /external/chromium_org/tools/gyp/test/ninja/solibs_avoid_relinking/
main.cc 1 extern int foo();
4 return foo();
  /external/clang/test/CodeGen/
2002-10-12-TooManyArguments.c 4 void foo() {} function
7 foo(1, 2, 3); /* Too many arguments passed */
2007-02-25-C-DotDotDot.c 3 // Make sure the call to foo is compiled as:
4 // call float @foo()
6 // call float (...)* bitcast (float ()* @foo to float (...)*)( )
8 static float foo() { return 0.0; } function
9 // CHECK: call float @foo
10 float bar() { return foo()*10.0;}
2009-07-14-VoidPtr.c 4 extern void foo;
5 void *bar = &foo;
debug-info-limited.c 3 // Ensure we emit the full definition of 'foo' even though only its declaration
5 // in whatever TU actually uses/requires the definition of 'foo'.
6 // CHECK: ; [ DW_TAG_structure_type ] [foo] {{.*}} [def]
8 struct foo { struct
11 struct foo *f;

Completed in 473 milliseconds

12 3 4 5 6 7 8 91011>>