Home
last modified time | relevance | path

Searched refs:CFArrayRef (Results 1 – 25 of 46) sorted by relevance

12

/external/clang/test/Analysis/
DCFContainers.mm20 typedef const struct __CFArray * CFArrayRef; typedef
21 CFArrayRef CFArrayCreate(CFAllocatorRef allocator, const void **values, CFIndex numValues, const CF…
86 const void *CFArrayGetValueAtIndex(CFArrayRef theArray, CFIndex idx);
88 CFIndex CFArrayGetCount(CFArrayRef theArray);
101CFArrayRef foo = CFArrayCreate(kCFAllocatorDefault, (const void **) x, sizeof(x) / sizeof(x[0]), 0…
103CFArrayRef fooNoWarn = CFArrayCreate(kCFAllocatorDefault, (const void **) xNoWarn, sizeof(xNoWarn)…
104CFArrayRef fooNoWarn2 = CFArrayCreate(kCFAllocatorDefault, 0, sizeof(xNoWarn) / sizeof(xNoWarn[0])…
105CFArrayRef fooNoWarn3 = CFArrayCreate(kCFAllocatorDefault, NULL, sizeof(xNoWarn) / sizeof(xNoWarn[…
108 CFArrayRef* pairs = new CFArrayRef[count];
134 CFArrayRef array;
[all …]
DCFContainers-invalid.c5 typedef const struct __CFArray * CFArrayRef; typedef
12 CFArrayRef CFArrayCreate(CFAllocatorRef);
Dretain-release.mm64 typedef const struct __CFArray * CFArrayRef; typedef
68 CFArrayRef CFArrayCreate(CFAllocatorRef allocator, const void **values, CFIndex numValues, const CF…
69 extern const void *CFArrayGetValueAtIndex(CFArrayRef theArray, CFIndex idx);
265 CFArrayRef colors, const CGFloat locations[]);
398 - (CFArrayRef)test {
399 static CFArrayRef array = ::CFArrayCreate(0, 0, 0, 0);
Dretain-release-inline.m43 typedef const struct __CFArray * CFArrayRef; typedef
46 extern const void *CFArrayGetValueAtIndex(CFArrayRef theArray, CFIndex idx);
242 CFArrayRef colors, const CGFloat locations[]);
/external/webrtc/webrtc/base/
Dmacwindowpicker.cc30 typedef CFArrayRef(*CGWindowListCopyWindowInfoProc)(CGWindowListOption,
35 typedef CFArrayRef(*CGWindowListCreateDescriptionFromArrayProc)(CFArrayRef);
80 CFArrayRef window_id_array = in IsVisible()
83 CFArrayRef window_array = in IsVisible()
115 CFArrayRef window_id_array = in MoveToFront()
118 CFArrayRef window_array = in MoveToFront()
216 CFArrayRef window_array = in GetWindowList()
/external/webrtc/webrtc/modules/desktop_capture/mac/
Dfull_screen_chrome_window_detector.cc31 CFArrayRef window_id_array = in IsWindowMinimized()
33 CFArrayRef window_array = in IsWindowMinimized()
80 CFArrayRef window_id_array = in GetWindowTitle()
82 CFArrayRef window_array = in GetWindowTitle()
102 CFArrayRef window_id_array = in GetWindowOwnerPid()
104 CFArrayRef window_array = in GetWindowOwnerPid()
130 CFArrayRef window_array = CGWindowListCopyWindowInfo( in FindFullScreenWindowWithSamePidAndTitle()
Dwindow_list_utils.cc21 CFArrayRef window_array = CGWindowListCopyWindowInfo( in GetWindowList()
/external/python/cpython2/Mac/Modules/cf/
Dpycfbridge.h2 extern PyObject *PyCF_CF2Python_sequence(CFArrayRef src);
8 extern int PyCF_Python2CF_sequence(PyObject *src, CFArrayRef *dst);
Dpycfbridge.c26 return PyCF_CF2Python_sequence((CFArrayRef)src); in PyCF_CF2Python()
33 PyCF_CF2Python_sequence(CFArrayRef src) { in PyCF_CF2Python_sequence()
152 return PyCF_Python2CF_sequence(src, (CFArrayRef *)dst); in PyCF_Python2CF()
159 PyCF_Python2CF_sequence(PyObject *src, CFArrayRef *dst) { in PyCF_Python2CF_sequence()
Dcfsupport.py236 CFArrayRef = OpaqueByValueType("CFArrayRef", "CFArrayRefObj") variable
238 CFArrayRef = OpaqueByValueType("CFArrayRef", "CFArrayRefObj") variable
D_CFmodule.c43 extern PyObject *_CFArrayRefObj_New(CFArrayRef);
44 extern int _CFArrayRefObj_Convert(PyObject *, CFArrayRef *);
484 CFArrayRef ob_itself;
488 PyObject *CFArrayRefObj_New(CFArrayRef itself) in CFArrayRefObj_New()
504 int CFArrayRefObj_Convert(PyObject *v, CFArrayRef *p_itself) in CFArrayRefObj_Convert()
532 CFArrayRef _rv; in CFArrayRefObj_CFArrayCreateCopy()
608 CFArrayRef itself; in CFArrayRefObj_tp_init()
794 CFArrayRef otherArray; in CFMutableArrayRefObj_CFArrayAppendArray()
2066 CFArrayRef _rv; in CFStringRefObj_CFStringCreateArrayWithFindResults()
2170 CFArrayRef _rv; in CFStringRefObj_CFStringCreateArrayBySeparatingStrings()
[all …]
/external/webrtc/webrtc/modules/desktop_capture/
Dwindow_capturer_mac.mm34 CFArrayRef window_id_array =
36 CFArrayRef window_array =
84 CFArrayRef window_array = CGWindowListCopyWindowInfo(
138 CFArrayRef window_id_array =
141 CFArrayRef window_array =
Dscreen_capturer_mac.mm92 // caller should release the returned CFArrayRef.
93 CFArrayRef CreateWindowListWithExclusion(CGWindowID window_to_exclude) {
97 CFArrayRef all_windows = CGWindowListCopyWindowInfo(
141 CFArrayRef window_id_array =
143 CFArrayRef window_array =
170 CFArrayRef window_list,
668 CFArrayRef window_list = CreateWindowListWithExclusion(excluded_window_);
/external/libcups/cups/
Dtls-darwin.c65 static CFArrayRef http_cdsa_copy_server(const char *common_name);
170 CFArrayRef ca_o_dn = CFArrayCreate(kCFAllocatorDefault, ca_o, 2, NULL); in cupsMakeServerCredentials()
171 CFArrayRef ca_cn_dn = CFArrayCreate(kCFAllocatorDefault, ca_cn, 2, NULL); in cupsMakeServerCredentials()
177 CFArrayRef subject = CFArrayCreate(kCFAllocatorDefault, ca_dn_array, 2, NULL); in cupsMakeServerCredentials()
869 CFArrayRef list; /* Keychain list */ in httpLoadCredentials()
986 CFArrayRef list; /* Keychain list */ in httpSaveCredentials()
1169 CFArrayRef dn_array; /* CF distinguished names array */ in _httpTLSStart()
1802 static CFArrayRef /* O - Array of certificates or NULL */
1809 CFArrayRef certificates = NULL; in http_cdsa_copy_server()
1815 CFArrayRef list = NULL; /* Keychain list */ in http_cdsa_copy_server()
Dtestlang.c166 CFArrayRef locales; /* Locales */ in main()
176 CFArrayRef country_codes; /* Country codes */ in main()
Dhttp-private.h119 extern SecCertificateRef SecGenerateSelfSignedCertificate(CFArrayRef subject, CFDictionaryRef param…
224 typedef CFArrayRef http_tls_credentials_t;
/external/python/cpython2/Include/
Dpymactoolbox.h217 extern PyObject *CFArrayRefObj_New(CFArrayRef);
218 extern int CFArrayRefObj_Convert(PyObject *, CFArrayRef *);
/external/skqp/src/ports/
DSkFontHost_mac.cpp1683 SkUniqueCFRef<CFArrayRef> cgAxes(CGFontCopyVariationAxes(cgFont.get())); in onGetAdvancedMetrics()
1889 CFArrayRef cgAxes;
1950 SkUniqueCFRef<CFArrayRef> cgAxes(CGFontCopyVariationAxes(cgFont.get())); in get_variations()
2006 CFArrayRef ctAxes) { in ct_variation_from_cg_variation()
2050 SkUniqueCFRef<CFArrayRef> ctAxes(CTFontCopyVariationAxes(fFontRef.get())); in onGetVariationDesignPosition()
2158 SkUniqueCFRef<CFArrayRef> cfArray( in onGetTableTags()
2482 SkUniqueCFRef<CFArrayRef> fArray;
2506 SkUniqueCFRef<CFArrayRef> fNames;
2530 static SkUniqueCFRef<CFArrayRef> CopyAvailableFontFamilyNames() { in CopyAvailableFontFamilyNames()
2532 return SkUniqueCFRef<CFArrayRef>(CFArrayCreate(nullptr, nullptr, 0, nullptr)); in CopyAvailableFontFamilyNames()
[all …]
/external/skia/src/ports/
DSkFontHost_mac.cpp1684 SkUniqueCFRef<CFArrayRef> cgAxes(CGFontCopyVariationAxes(cgFont.get())); in onGetAdvancedMetrics()
1890 CFArrayRef cgAxes;
1951 SkUniqueCFRef<CFArrayRef> cgAxes(CGFontCopyVariationAxes(cgFont.get())); in get_variations()
2007 CFArrayRef ctAxes) { in ct_variation_from_cg_variation()
2051 SkUniqueCFRef<CFArrayRef> ctAxes(CTFontCopyVariationAxes(fFontRef.get())); in onGetVariationDesignPosition()
2159 SkUniqueCFRef<CFArrayRef> cfArray( in onGetTableTags()
2502 SkUniqueCFRef<CFArrayRef> fArray;
2526 SkUniqueCFRef<CFArrayRef> fNames;
2550 static SkUniqueCFRef<CFArrayRef> CopyAvailableFontFamilyNames() { in CopyAvailableFontFamilyNames()
2552 return SkUniqueCFRef<CFArrayRef>(CFArrayCreate(nullptr, nullptr, 0, nullptr)); in CopyAvailableFontFamilyNames()
[all …]
/external/clang/test/ARCMT/
Dobjcmt-arc-cf-annotations.m.result94 typedef const struct __CFArray * CFArrayRef;
97 extern const void *CFArrayGetValueAtIndex(CFArrayRef theArray, CFIndex idx) CF_RETURNS_NOT_RETAINED;
330 CFArrayRef colors, const CGFloat locations[]) CF_RETURNS_RETAINED;
1679 CFArrayRef camelcase_create_1() {
1683 CFArrayRef camelcase_createno() {
1687 CFArrayRef camelcase_copy() {
1691 CFArrayRef camelcase_copying() {
1695 CFArrayRef copyCamelCase() {
1699 CFArrayRef __copyCamelCase() {
1703 CFArrayRef __createCamelCase() {
[all …]
Dobjcmt-arc-cf-annotations.m88 typedef const struct __CFArray * CFArrayRef; typedef
91 extern const void *CFArrayGetValueAtIndex(CFArrayRef theArray, CFIndex idx);
312 CFArrayRef colors, const CGFloat locations[]);
1631 CFArrayRef camelcase_create_1() {
1635 CFArrayRef camelcase_createno() {
1639 CFArrayRef camelcase_copy() {
1643 CFArrayRef camelcase_copying() {
1647 CFArrayRef copyCamelCase() {
1651 CFArrayRef __copyCamelCase() {
1655 CFArrayRef __createCamelCase() {
[all …]
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcuda_diagnostics.cc130 CFArrayRef kext_id_query = CFArrayCreate(nullptr, (const void **)kext_ids, 1, in LogDiagnosticInformation()
324 CFArrayRef kext_id_query = CFArrayCreate(nullptr, (const void **)kext_ids, 1, in FindKernelDriverVersion()
/external/python/cpython2/Python/
Dmactoolboxglue.c460 GLUE_CONVERT(CFArrayRef, CFArrayRefObj_Convert, "Carbon.CF")
461 GLUE_NEW(CFArrayRef, CFArrayRefObj_New, "Carbon.CF")
/external/python/cpython2/Tools/bgen/bgen/
Dmacsupport.py97 CFArrayRef = OpaqueByValueType("CFArrayRef", "CFArrayRefObj") variable
/external/python/cpython2/Mac/Modules/
D_scproxy.c53 CFArrayRef anArray = NULL; in get_proxy_settings()

12