Lines Matching refs:CFArrayGetValueAtIndex
86 const void *CFArrayGetValueAtIndex(CFArrayRef theArray, CFIndex idx); function
136 const void *s1 = CFArrayGetValueAtIndex(array, 0); // no warning
137 const void *s2 = CFArrayGetValueAtIndex(array, S-1); // no warning
138 …const void *s3 = CFArrayGetValueAtIndex(array, S); // expected-warning {{Index is out of bounds}}
144 const void *s1 = CFArrayGetValueAtIndex(array, 0); // no warning
145 const void *s2 = CFArrayGetValueAtIndex(array, 2); // no warning
146 const void *s3 = CFArrayGetValueAtIndex(array, 5); // expected-warning {{Index is out of bounds}}
151 const void *s = CFArrayGetValueAtIndex(array, sIndex);
159 const void *s1 = CFArrayGetValueAtIndex(array, 0); // expected-warning {{Index is out of bounds}}
165 const void *s1 = CFArrayGetValueAtIndex(A, sIndex);
166 const void *s2 = CFArrayGetValueAtIndex(A, sCount);// expected-warning {{Index is out of bounds}}
190 const void *s1 = CFArrayGetValueAtIndex(A, undefVal);
194 const void *s2 = CFArrayGetValueAtIndex(B, 2);
199 const void *s1 = CFArrayGetValueAtIndex(B, 2);
204 CFArrayGetValueAtIndex(0, 0);
216 CFArrayGetValueAtIndex(a, aLen);
225 CFArrayGetValueAtIndex(a, aLen); // expected-warning {{Index is out of bounds}}