Home
last modified time | relevance | path

Searched refs:cfn (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/base/
Dmacconversion.cc46 bool p_convertCFNumberToInt(CFNumberRef cfn, int* i) { in p_convertCFNumberToInt() argument
50 if (NULL != cfn) { in p_convertCFNumberToInt()
53 if (CFGetTypeID(cfn) == CFNumberGetTypeID()) { in p_convertCFNumberToInt()
54 CFNumberType ntype = CFNumberGetType(cfn); in p_convertCFNumberToInt()
58 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8)); in p_convertCFNumberToInt()
63 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16)); in p_convertCFNumberToInt()
68 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32)); in p_convertCFNumberToInt()
73 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64)); in p_convertCFNumberToInt()
78 converted = CFNumberGetValue(cfn, ntype, in p_convertCFNumberToInt()
84 converted = CFNumberGetValue(cfn, ntype, in p_convertCFNumberToInt()
[all …]
Dmacconversion.h32 bool p_convertCFNumberToInt(CFNumberRef cfn, int* i);
35 bool p_isCFNumberTrue(CFNumberRef cfn);
/external/clang/test/SemaCXX/
Dfunction-type-qual.cpp7 typedef void cfn() const; typedef
8 cfn f2; // expected-error {{non-member function of type 'cfn' (aka 'void () const') cannot have 'co…
12 cfn f2;
14 …static cfn f4; // expected-error {{static member function of type 'cfn' (aka 'void () const') cann…
28 cfn C::*mpg;
/external/icu/icu4c/source/tools/genren/
Dgenren.pl191 } elsif ( my ($cfn) = m/^([A-Za-z0-9_]*)\(.*/ ) {
192 &verbose ( "$ARGV[0]: got global C++ function $cfn with '$_'\n" );
193 $CFuncs{$cfn}++;
/external/openssh/
Dchannels.c776 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx) in channel_register_filter() argument
787 c->filter_cleanup = cfn; in channel_register_filter()