OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:staticfun
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/CodeGen/
static-forward-decl-fun.c
3
static int
staticfun
(void);
4
int (*staticuse1)(void) =
staticfun
;
5
static int
staticfun
() {return 1;}
function
6
int (*staticuse2)(void) =
staticfun
;
/external/clang/test/CodeGenCXX/
inline-functions.cpp
120
static void
StaticFun
() {}
122
void NonStaticFun() {
StaticFun
(); }
Completed in 83 milliseconds