OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:foo
(Results
51 - 75
of
3019
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/mesa3d/src/glsl/glcpp/tests/
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/Preprocessor/
if_warning.c
6
#if
foo
// expected-error {{'
foo
' is not defined, evaluates to 0}}
9
#ifdef
foo
12
#if defined(
foo
)
macro_arg_keyword.c
3
#define
foo
(return) return-return
macro
5
foo
(xxx)
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
012-define-func-no-args.c
1
#define
foo
() bar
macro
2
foo
()
033-define-func-self-compose.c
1
#define
foo
(a)
foo
(2*(a))
macro
2
foo
(
foo
(3))
/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;
kr-style-block.c
3
void
foo
(void(^)());
7
foo
(
2003-08-29-HugeCharConst.c
3
void
foo
() {
function
/external/clang/test/CodeGenCXX/
apple-kext-no-staticinit-section.C
9
class
foo
{
class
11
foo
();
12
virtual ~
foo
();
15
foo
a;
16
foo
b;
17
foo
c;
18
foo
::~
foo
() {}
/external/clang/test/SemaCXX/
cxx0x-delegating-ctors.cpp
3
struct
foo
{
struct
5
foo
();
6
foo
(int);
7
foo
(int, int);
8
foo
(bool);
9
foo
(char);
10
foo
(const float*);
11
foo
(const float&);
12
foo
(void*);
16
foo
::foo (int i) : i(i)
function in class:foo
19
foo
::
foo
() :
foo
(-1) {
function in class:foo
22
foo
::
foo
(int, int) :
foo
() {
function in class:foo
25
foo
::
foo
(bool) :
foo
(true) { \/\/ expected-error{{creates a delegation cycle}}
function in class:foo
29
foo
::
foo
(const float* f) :
foo
(*f) { \/\/ expected-note{{it delegates to}}
function in class:foo
32
foo
::
foo
(const float &f) :
foo
(&f) { \/\/expected-error{{creates a delegation cycle}} \\
function in class:foo
36
foo
::
foo
(char) :
function in class:foo
42
foo
::
foo
(void*) :
foo
(4.0f) {
function in class:foo
[
all
...]
/ndk/tests/build/absolute-src-file-paths/src/
main.c
1
extern int
foo
(int);
4
return
foo
(18);
/ndk/tests/build/flto/jni/
flto.c
1
int
foo
() {
function
7
return
foo
();
/ndk/tests/build/thin-archives/jni/
bar.c
1
extern int
foo
(void);
4
return
foo
();
/art/test/003-omnibus-opcodes/src/
UnresClass.java
8
int
foo
;
field in class:UnresClass
/dalvik/tests/003-omnibus-opcodes/src/
UnresClass.java
8
int
foo
;
field in class:UnresClass
/development/ndk/tests/prebuilt-library/jni/
foo-user.c
1
#include "
foo
.h"
5
return
foo
();
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
externdef.asm
1
extern
foo
2
foo
:
label
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elfglobext2.asm
1
global
foo
2
extern
foo
/external/clang/test/Analysis/
stats.c
4
void
foo
() {
function
Completed in 1315 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>