Lines Matching refs:CFArrayRef
20 typedef const struct __CFArray * CFArrayRef; typedef
21 CFArrayRef CFArrayCreate(CFAllocatorRef allocator, const void **values, CFIndex numValues, const CF…
85 const void *CFArrayGetValueAtIndex(CFArrayRef theArray, CFIndex idx);
87 CFIndex CFArrayGetCount(CFArrayRef theArray);
100 …CFArrayRef foo = CFArrayCreate(kCFAllocatorDefault, (const void **) x, sizeof(x) / sizeof(x[0]), 0…
102 …CFArrayRef fooNoWarn = CFArrayCreate(kCFAllocatorDefault, (const void **) xNoWarn, sizeof(xNoWarn)…
103 …CFArrayRef fooNoWarn2 = CFArrayCreate(kCFAllocatorDefault, 0, sizeof(xNoWarn) / sizeof(xNoWarn[0])…
104 …CFArrayRef fooNoWarn3 = CFArrayCreate(kCFAllocatorDefault, NULL, sizeof(xNoWarn) / sizeof(xNoWarn[…
107 CFArrayRef* pairs = new CFArrayRef[count];
133 CFArrayRef array;
141 CFArrayRef array;
155 CFArrayRef array;
161 void TestGetCount(CFArrayRef A, CFIndex sIndex) {
187 void TestUndef(CFArrayRef A, CFIndex sIndex, void* x[]) {
192 CFArrayRef B = CFArrayCreate(0, (const void **) &x, undefVal2, 0);
196 void TestConst(CFArrayRef A, CFIndex sIndex, void* x[]) {
197 CFArrayRef B = CFArrayCreate(0, (const void **) &x, 4, 0);