/external/lldb/tools/debugserver/source/ |
D | RNBServices.h | 20 #define DTSERVICES_APP_FRONTMOST_KEY CFSTR("isFrontApp") 21 #define DTSERVICES_APP_PATH_KEY CFSTR("executablePath") 22 #define DTSERVICES_APP_ICON_PATH_KEY CFSTR("iconPath") 23 #define DTSERVICES_APP_DISPLAY_NAME_KEY CFSTR("displayName") 24 #define DTSERVICES_APP_PID_KEY CFSTR("pid")
|
/external/clang/test/CodeGen/ |
D | cfstring.c | 12 #define CFSTR __builtin___CFStringMakeConstantString macro 15 CFSTR("Hello, World!"); in f() 19 void *G = CFSTR("yo joe"); 22 static void* h = CFSTR("Goodbye, World!"); in h()
|
D | cfstring2.c | 5 #define CFSTR(x) (CFStringRef) __builtin___CFStringMakeConstantString (x) macro 8 CFSTR("Hello, World!"); in f() 12 void *G = CFSTR("yo joe");
|
D | utf16-cfstrings.c | 6 #define CFSTR __builtin___CFStringMakeConstantString macro 9 CFSTR("überhund"); in foo()
|
/external/opencv/otherlibs/highgui/ |
D | grfmt_imageio.cpp | 257 imageUTI = CFSTR( "com.microsoft.bmp" ); in FilenameToUTI() 259 imageUTI = CFSTR( "com.ilm.openexr-image" ); in FilenameToUTI() 261 imageUTI = CFSTR( "public.jpeg" ); in FilenameToUTI() 263 imageUTI = CFSTR( "public.jpeg-2000" ); in FilenameToUTI() 265 imageUTI = CFSTR( "com.adobe.pdf" ); in FilenameToUTI() 267 imageUTI = CFSTR( "public.png" ); in FilenameToUTI() 269 imageUTI = CFSTR( "public.tiff" ); in FilenameToUTI()
|
/external/clang/test/Sema/ |
D | builtins.c | 26 #define CFSTR __builtin___CFStringMakeConstantString macro 29 X = CFSTR("\242"); // expected-warning {{input conversion stopped}} in test7() 30 X = CFSTR("\0"); // no-warning in test7() 31 …X = CFSTR(242); // expected-error {{CFString literal is not a string constant}} expected-warning {… in test7() 32 X = CFSTR("foo", "bar"); // expected-error {{too many arguments to function call}} in test7()
|
/external/clang/test/SemaObjC/ |
D | format-strings-objc.m | 35 #define CFSTR(cStr) ((CFStringRef) __builtin___CFStringMakeConstantString ("" cStr "")) macro 62 …CFStringCreateWithFormat(CFSTR("%i"),test); // expected-warning{{format specifies type 'int' but t… 83 …MyCFStringCreateWithFormat(CFSTR("%@")); // expected-warning {{more '%' conversions than data argu… category 175 CFStringCreateWithFormat(CFSTR("%@"), x); // no-warning 178 CFStringCreateWithFormat(CFSTR("%@"), y); // no-warning 225 …NSLog(@"no specifiers", dict[CFSTR("abc")]); // expected-error{{indexing expression is invalid bec… 226 …NSLog(@"%@", dict[CFSTR("abc")]); // expected-error{{indexing expression is invalid because subscr… 227 …NSLog(@"%@ %@", dict[CFSTR("abc")]); // expected-error{{indexing expression is invalid because sub… 229 …[Foo fooWithFormat:@"no specifiers", dict[CFSTR("abc")]]; // expected-error{{indexing expression i… 230 …[Foo fooWithFormat:@"%@", dict[CFSTR("abc")]]; // expected-error{{indexing expression is invalid b… [all …]
|
D | format-ostrace-warning.m | 16 CFStringRef CFSTR ( const char *cStr ); function 50 …os_trace("testing %@, %s, %d, %@, %m", CFSTR("object"), "string", 3, "it"); // expected-warning {{… 52 os_trace("testing %@, %s, %d, %@, %m", CFSTR("object"), "string", 3, @"ok");
|
/external/lldb/source/Host/macosx/ |
D | Symbols.cpp | 372 …_src_cfpath = static_cast<CFStringRef>(::CFDictionaryGetValue (uuid_dict, CFSTR("DBGSourcePath"))); in LocateMacOSXFilesUsingDebugSymbols() 375 …_src_cfpath = static_cast<CFStringRef>(::CFDictionaryGetValue (uuid_dict, CFSTR("DBGBuildSourcePat… in LocateMacOSXFilesUsingDebugSymbols() 398 …xec_cf_path = static_cast<CFStringRef>(::CFDictionaryGetValue (uuid_dict, CFSTR("DBGSymbolRichExec… in LocateMacOSXFilesUsingDebugSymbols() 584 …cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGSymbolRichExecu… in GetModuleSpecInfoFromUUIDDictionary() 591 … cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGDSYMPath")); in GetModuleSpecInfoFromUUIDDictionary() 601 …cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGArchitecture")); in GetModuleSpecInfoFromUUIDDictionary() 611 …cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGBuildSourcePath… in GetModuleSpecInfoFromUUIDDictionary() 617 … cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("DBGSourcePath")); in GetModuleSpecInfoFromUUIDDictionary() 646 …CFTypeRef defaults_setting = CFPreferencesCopyAppValue (CFSTR ("DBGShellCommands"), CFSTR ("com.ap… in DownloadObjectAndSymbolFile()
|
D | Host.mm | 1040 CFStringRef product_version_key = CFSTR("ProductVersion"); 1388 CFStringRef prompt = CFSTR("Xcode is trying to take control of a root process."); 1389 CFStringRef keys[] = { CFSTR("en") }; 1393 …CFStringRef keys1[] = { CFSTR("class"), CFSTR("group"), CFSTR("comment"), CFSTR("def… 1394 …CFTypeRef values1[] = { CFSTR("user"), CFSTR("admin"), CFSTR(LaunchUsingXPCRightName), promptDict…
|
/external/clang/test/SemaCXX/ |
D | builtins.cpp | 3 #define CFSTR __builtin___CFStringMakeConstantString macro 6 (void)CFStringRef(CFSTR("Hello")); in f()
|
/external/clang/test/Analysis/ |
D | CFContainers.mm | 93 #define CFSTR(cStr) ((CFStringRef) __builtin___CFStringMakeConstantString ("" cStr "")) macro 118 …keys[0] = CFSTR("January"); values[0] = CFNumberCreate(kCFAllocatorDefault, kCFNumberShortType, &… 119 …keys[1] = CFSTR("February"); values[1] = CFNumberCreate(kCFAllocatorDefault, kCFNumberShortType, &… 120 …keys[2] = CFSTR("March"); values[2] = CFNumberCreate(kCFAllocatorDefault, kCFNumberShortType, &day… 121 …keys[3] = CFSTR("April"); values[3] = CFNumberCreate(kCFAllocatorDefault, kCFNumberShortType, &day… 122 …keys[4] = CFSTR("May"); values[4] = CFNumberCreate(kCFAllocatorDefault, kCFNumberShortType, &days3… 123 …keys[5] = CFSTR("June"); values[5] = CFNumberCreate(kCFAllocatorDefault, kCFNumberShortType, &days…
|
/external/lldb/test/functionalities/data-formatter/rdar-3534688/ |
D | main.m | 23 CFBagSetValue(mutable_bag_ref, CFSTR("Hello world")); 32 CFBinaryHeapAddValue(binheap_ref, CFSTR("Hello world"));
|
/external/lldb/test/functionalities/data-formatter/data-formatter-objc/ |
D | main.m | 403 CFStringAppend(mutable_string_ref, CFSTR("Wish ya knew")); 405 CFStringRef cfstring_ref = CFSTR("HELLO WORLD"); 506 CFURLRef cfurl_ref = CFURLCreateWithString(NULL, CFSTR("http://www.foo.bar/"), NULL); 507 CFURLRef cfchildurl_ref = CFURLCreateWithString(NULL, CFSTR("page.html"), cfurl_ref); 508 CFURLRef cfgchildurl_ref = CFURLCreateWithString(NULL, CFSTR("?whatever"), cfchildurl_ref); 575 CFSTR("PST"), 579 CFSTR("Europe/Rome"), 583 CFSTR("CET"),
|
/external/lldb/tools/lldb-perf/lib/ |
D | Results.cpp | 60 dict.AddValueCString(CFSTR("description"), result->GetDescription()); in AddResultToArray() 131 dict.AddValueCString(CFSTR("description"), result->GetDescription()); in AddResultToDictionary()
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_mac_test.cc | 207 CFStringRef str = CFSTR("Hello world!\n"); in TEST()
|
/external/google-breakpad/src/client/mac/handler/ |
D | minidump_generator.cc | 130 CFSTR("/System/Library/CoreServices/SystemVersion.plist"); in GatherSystemInformation() 156 (CFDictionaryGetValue(list, CFSTR("ProductBuildVersion"))); in GatherSystemInformation() 158 (CFDictionaryGetValue(list, CFSTR("ProductVersion"))); in GatherSystemInformation()
|
/external/harfbuzz_ng/src/ |
D | hb-coretext.cc | 719 # define kCTLanguageAttributeName CFSTR ("NSLanguage") in _hb_coretext_shape()
|
/external/mdnsresponder/mDNSShared/ |
D | DebugServices.c | 907 path = CFSTR( "/System/Library/Frameworks/System.framework" ); in DebugMacOSXLogInit() 917 functionName = CFSTR( "printf" ); in DebugMacOSXLogInit()
|
/external/libusb/libusb/os/ |
D | darwin_usb.c | 229 …locationCF = IORegistryEntryCreateCFProperty (device, CFSTR(kUSBDevicePropertyLocationID), kCFAllo… in darwin_devices_detached()
|