Lines Matching refs:CFArrayRef
23 typedef const struct __CFArray * CFArrayRef; typedef
24 CFArrayRef CFArrayCreate(CFAllocatorRef allocator, const void **values, CFIndex numValues, const CF…
89 const void *CFArrayGetValueAtIndex(CFArrayRef theArray, CFIndex idx);
91 CFIndex CFArrayGetCount(CFArrayRef theArray);
104 …CFArrayRef foo = CFArrayCreate(kCFAllocatorDefault, (const void **) x, sizeof(x) / sizeof(x[0]), 0…
108 …CFArrayRef fooNoWarn = CFArrayCreate(kCFAllocatorDefault, (const void **) xNoWarn, sizeof(xNoWarn)…
109 …CFArrayRef fooNoWarn2 = CFArrayCreate(kCFAllocatorDefault, 0, sizeof(xNoWarn) / sizeof(xNoWarn[0])…
110 …CFArrayRef fooNoWarn3 = CFArrayCreate(kCFAllocatorDefault, NULL, sizeof(xNoWarn) / sizeof(xNoWarn[…
115 CFArrayRef* pairs = new CFArrayRef[count];
146 CFArrayRef array;
155 CFArrayRef array;
170 CFArrayRef array;
177 void TestGetCount(CFArrayRef A, CFIndex sIndex) {
208 void TestUndef(CFArrayRef A, CFIndex sIndex, void* x[]) {
213 CFArrayRef B = CFArrayCreate(0, (const void **) &x, undefVal2, 0);
217 void TestConst(CFArrayRef A, CFIndex sIndex, void* x[]) {
218 CFArrayRef B = CFArrayCreate(0, (const void **) &x, 4, 0);
228 void ArrayRefEscape(CFArrayRef a);
243 // ArrayRefEscape is declared to take a CFArrayRef (i.e, an immutable array)