OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fun_type
(Results
1 - 4
of
4
) sorted by null
/external/stlport/test/unit/
fadapter.h
48
typedef void (*
fun_type
)(Arg);
typedef in class:pointer_to_unary_procedure
49
fun_type
ptr;
53
pointer_to_unary_procedure(
fun_type
x) : ptr(x) {}
65
typedef void (*
fun_type
)(Arg1, Arg2);
typedef in class:pointer_to_binary_procedure
66
fun_type
ptr;
71
pointer_to_binary_procedure(
fun_type
x) : ptr(x) {}
/ndk/tests/device/test-gnustl-full/unit/
fadapter.h
48
typedef void (*
fun_type
)(Arg);
typedef in class:pointer_to_unary_procedure
49
fun_type
ptr;
53
pointer_to_unary_procedure(
fun_type
x) : ptr(x) {}
65
typedef void (*
fun_type
)(Arg1, Arg2);
typedef in class:pointer_to_binary_procedure
66
fun_type
ptr;
71
pointer_to_binary_procedure(
fun_type
x) : ptr(x) {}
/ndk/tests/device/test-stlport/unit/
fadapter.h
48
typedef void (*
fun_type
)(Arg);
typedef in class:pointer_to_unary_procedure
49
fun_type
ptr;
53
pointer_to_unary_procedure(
fun_type
x) : ptr(x) {}
65
typedef void (*
fun_type
)(Arg1, Arg2);
typedef in class:pointer_to_binary_procedure
66
fun_type
ptr;
71
pointer_to_binary_procedure(
fun_type
x) : ptr(x) {}
/external/clang/test/SemaCXX/
rval-references.cpp
24
typedef void (
fun_type
)();
typedef
26
fun_type
&&make_fun();
54
fun_type
&&fun_ref = fun; // works because functions are special
55
fun_type
&&fun_ref2 = make_fun(); // same
56
fun_type
&fun_lref = make_fun(); // also special
Completed in 357 milliseconds