OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cfstr
(Results
1 - 25
of
92
) sorted by null
1
2
3
4
/external/clang/test/CodeGen/
cfstring2.c
5
#define
CFSTR
(x) (CFStringRef) __builtin___CFStringMakeConstantString (x)
8
CFSTR
("Hello, World!");
12
void *G =
CFSTR
("yo joe");
cfstring.c
12
#define
CFSTR
__builtin___CFStringMakeConstantString
15
CFSTR
("Hello, World!");
19
void *G =
CFSTR
("yo joe");
22
static void* h =
CFSTR
("Goodbye, World!");
utf16-cfstrings.c
6
#define
CFSTR
__builtin___CFStringMakeConstantString
9
CFSTR
("überhund");
/external/chromium/chrome/common/
app_mode_common_mac.mm
10
const CFStringRef kAppPrefsID =
CFSTR
("com.google.Chrome");
12
const CFStringRef kAppPrefsID =
CFSTR
("org.chromium.Chromium");
15
const CFStringRef kLastRunAppBundlePathPrefsKey =
CFSTR
("LastRunAppBundlePath");
/external/chromium/base/mac/
mac_util_unittest.mm
125
CFDictionarySetValue(dict.get(),
CFSTR
("key"),
CFSTR
("value"));
127
EXPECT_TRUE(CFEqual(
CFSTR
("value"),
129
dict,
CFSTR
("key"), CFStringGetTypeID())));
130
EXPECT_FALSE(GetValueFromDictionary(dict,
CFSTR
("key"), CFNumberGetTypeID()));
132
dict,
CFSTR
("no-exist"), CFStringGetTypeID()));
/external/chromium/base/
file_version_info_mac.mm
58
return GetString16Value(
CFSTR
("CFBundleGetInfoString"));
62
return GetString16Value(
CFSTR
("CFBundleShortVersionString"));
90
return GetString16Value(
CFSTR
("SVNRevision"));
/external/chromium_org/base/
file_version_info_mac.mm
59
return GetString16Value(
CFSTR
("CFBundleGetInfoString"));
69
return GetString16Value(
CFSTR
("CFBundleVersion"));
71
return GetString16Value(
CFSTR
("CFBundleShortVersionString"));
100
return GetString16Value(
CFSTR
("SCMRevision"));
/external/clang/test/SemaCXX/
builtins.cpp
3
#define
CFSTR
__builtin___CFStringMakeConstantString
6
(void)CFStringRef(
CFSTR
("Hello"));
/external/chromium/third_party/libjingle/source/talk/base/
macconversion.cc
36
const CFStringRef
cfstr
, std::string& cppstr) {
40
if (NULL !=
cfstr
) {
43
if (CFGetTypeID(
cfstr
) == CFStringGetTypeID()) {
45
// (The
cfstr
owns this buffer; it came from somewhere else,
46
// so someone else gets to take care of getting rid of the
cfstr
,
48
unsigned length = CFStringGetLength(
cfstr
);
50
if (CFStringGetCString(
cfstr
, buf, 1 + length, kCFStringEncodingASCII)) {
/external/chromium_org/third_party/libjingle/source/talk/base/
macconversion.cc
36
const CFStringRef
cfstr
, std::string& cppstr) {
40
if (NULL !=
cfstr
) {
43
if (CFGetTypeID(
cfstr
) == CFStringGetTypeID()) {
45
// (The
cfstr
owns this buffer; it came from somewhere else,
46
// so someone else gets to take care of getting rid of the
cfstr
,
48
unsigned length = CFStringGetLength(
cfstr
);
50
if (CFStringGetCString(
cfstr
, buf, 1 + length, kCFStringEncodingASCII)) {
/external/chromium_org/third_party/mozilla/
NSWorkspace+Utils.m
47
NSArray* apps = [(NSArray*)LSCopyAllHandlersForURLScheme(
CFSTR
("https")) autorelease];
59
NSArray* apps = [(NSArray*)LSCopyAllHandlersForURLScheme(
CFSTR
("feed")) autorelease];
71
NSString* defaultBundleId = [(NSString*)LSCopyDefaultHandlerForURLScheme(
CFSTR
("http")) autorelease];
81
return [(NSString*)LSCopyDefaultHandlerForURLScheme(
CFSTR
("feed")) autorelease];
102
LSSetDefaultHandlerForURLScheme(
CFSTR
("http"), (CFStringRef)bundleID);
103
LSSetDefaultHandlerForURLScheme(
CFSTR
("https"), (CFStringRef)bundleID);
110
LSSetDefaultHandlerForURLScheme(
CFSTR
("feed"), (CFStringRef)bundleID);
/external/chromium_org/base/mac/
foundation_util_unittest.mm
52
CFTypeRef test_str_const =
CFSTR
("hello");
278
CFStringRef keys[] = {
CFSTR
("one"),
CFSTR
("two"),
CFSTR
("three") };
295
GetValueFromDictionary<CFNumberRef>(test_dict,
CFSTR
("one")));
297
GetValueFromDictionary<CFNumberRef>(test_dict,
CFSTR
("two")));
299
GetValueFromDictionary<CFNumberRef>(test_dict,
CFSTR
("three")));
302
EXPECT_FALSE(GetValueFromDictionary<CFNumberRef>(test_dict,
CFSTR
("four")));
303
EXPECT_FALSE(GetValueFromDictionary<CFStringRef>(test_dict,
CFSTR
("one")));
/development/ide/xcode/ports/
skia_mac.cp
58
err = CreateNibReference(
CFSTR
("main"), &nibRef);
63
err = SetMenuBarFromNib(nibRef,
CFSTR
("MenuBar"));
68
err = CreateWindowFromNib(nibRef,
CFSTR
("MainWindow"), &window);
/external/chromium/chrome/browser/importer/
firefox_importer_utils_mac.mm
27
CFSTR
("org.mozilla.firefox"),
/external/chromium_org/rlz/mac/lib/
machine_id_mac.cc
42
primary_interface,
CFSTR
(kIOPrimaryInterface), kCFBooleanTrue);
44
matching_dict,
CFSTR
(kIOPropertyMatchKey), primary_interface);
75
CFSTR
(kIOMACAddress),
107
CFSTR
(kIOPlatformSerialNumberKey),
/system/core/adb/
get_my_path_darwin.c
27
CFSTR
("CFBundleExecutable"));
/external/qemu/distrib/sdl-1.2.15/src/joystick/darwin/
SDL_sysjoystick.c
239
refType = CFDictionaryGetValue (refElement,
CFSTR
(kIOHIDElementCookieKey));
242
refType = CFDictionaryGetValue (refElement,
CFSTR
(kIOHIDElementMinKey));
245
refType = CFDictionaryGetValue (refElement,
CFSTR
(kIOHIDElementMaxKey));
251
refType = CFDictionaryGetValue (refElement,
CFSTR
(kIOHIDElementScaledMinKey));
254
refType = CFDictionaryGetValue (refElement,
CFSTR
(kIOHIDElementScaledMaxKey));
257
refType = CFDictionaryGetValue (refElement,
CFSTR
(kIOHIDElementSizeKey));
260
refType = CFDictionaryGetValue (refElement,
CFSTR
(kIOHIDElementIsRelativeKey));
263
refType = CFDictionaryGetValue (refElement,
CFSTR
(kIOHIDElementIsWrappingKey));
266
refType = CFDictionaryGetValue (refElement,
CFSTR
(kIOHIDElementIsNonLinearKey));
269
refType = CFDictionaryGetValue (refElement,
CFSTR
(kIOHIDElementHasPreferedStateKey))
[
all
...]
/external/clang/test/Analysis/
CFContainers.mm
93
#define
CFSTR
(cStr) ((CFStringRef) __builtin___CFStringMakeConstantString ("" cStr ""))
118
keys[0] =
CFSTR
("January"); values[0] = CFNumberCreate(kCFAllocatorDefault, kCFNumberShortType, &days31);
119
keys[1] =
CFSTR
("February"); values[1] = CFNumberCreate(kCFAllocatorDefault, kCFNumberShortType, &days28);
120
keys[2] =
CFSTR
("March"); values[2] = CFNumberCreate(kCFAllocatorDefault, kCFNumberShortType, &days31);
121
keys[3] =
CFSTR
("April"); values[3] = CFNumberCreate(kCFAllocatorDefault, kCFNumberShortType, &days30);
122
keys[4] =
CFSTR
("May"); values[4] = CFNumberCreate(kCFAllocatorDefault, kCFNumberShortType, &days31);
123
keys[5] =
CFSTR
("June"); values[5] = CFNumberCreate(kCFAllocatorDefault, kCFNumberShortType, &days30);
/external/opencv/otherlibs/highgui/
grfmt_imageio.cpp
257
imageUTI =
CFSTR
( "com.microsoft.bmp" );
259
imageUTI =
CFSTR
( "com.ilm.openexr-image" );
261
imageUTI =
CFSTR
( "public.jpeg" );
263
imageUTI =
CFSTR
( "public.jpeg-2000" );
265
imageUTI =
CFSTR
( "com.adobe.pdf" );
267
imageUTI =
CFSTR
( "public.png" );
269
imageUTI =
CFSTR
( "public.tiff" );
/external/chromium_org/gpu/config/
gpu_info_collector_mac.mm
60
gpu.vendor_id = GetEntryProperty(dsp_port,
CFSTR
("vendor-id"));
61
gpu.device_id = GetEntryProperty(dsp_port,
CFSTR
("device-id"));
81
if (GetEntryProperty(entry,
CFSTR
("class-code")) != 0x30000) {
85
gpu.vendor_id = GetEntryProperty(entry,
CFSTR
("vendor-id"));
86
gpu.device_id = GetEntryProperty(entry,
CFSTR
("device-id"));
/external/clang/test/Sema/
builtins.c
26
#define
CFSTR
__builtin___CFStringMakeConstantString
29
X =
CFSTR
("\242"); // expected-warning {{input conversion stopped}}
30
X =
CFSTR
("\0"); // no-warning
31
X =
CFSTR
(242); // expected-error {{CFString literal is not a string constant}} expected-warning {{incompatible integer to pointer conversion}}
32
X =
CFSTR
("foo", "bar"); // expected-error {{too many arguments to function call}}
/external/stlport/test/eh/
mwerks_console_OS_X.c
86
theErr = __msl_CreateFrameworkBundleFromName(
CFSTR
("System.framework"),
99
CFBundleGetFunctionPointerForName(__msl_os_x.theBundle,
CFSTR
("read"));
101
CFBundleGetFunctionPointerForName(__msl_os_x.theBundle,
CFSTR
("write"));
/external/chromium_org/chrome/common/mac/
mock_launchd.cc
149
CFStringRef program =
CFSTR
(LAUNCH_JOBKEY_PROGRAM);
150
CFStringRef program_pid =
CFSTR
(LAUNCH_JOBKEY_PID);
169
CFStringRef program =
CFSTR
(LAUNCH_JOBKEY_PROGRAM);
170
CFStringRef program_args =
CFSTR
(LAUNCH_JOBKEY_PROGRAMARGUMENTS);
190
CFStringRef socket_key =
CFSTR
(LAUNCH_JOBKEY_SOCKETS);
230
CFStringRef socket_dict_key =
CFSTR
("ServiceProcessSocket");
/external/chromium_org/content/common/
plugin_list_mac.mm
75
CFSTR
("WebPluginMIMETypesFilename"));
106
bundle,
CFSTR
("BP_CreatePluginMIMETypesPreferences"));
121
CFSTR
("WebPluginMIMETypes"));
161
CFSTR
("WebPluginName"));
164
CFSTR
("CFBundleShortVersionString"));
167
CFSTR
("WebPluginDescription"));
/external/chromium_org/media/audio/mac/
aggregate_device_manager.cc
147
CFStringRef bundle_name =
CFSTR
("com.apple.audio.CoreAudio");
188
CFSTR
("ChromeAggregateAudioDevice");
190
CFSTR
("com.google.chrome.AggregateAudioDevice");
195
CFSTR
(kAudioAggregateDeviceNameKey),
199
CFSTR
(kAudioAggregateDeviceUIDKey),
213
CFSTR
(kAudioAggregateDeviceIsPrivateKey),
Completed in 701 milliseconds
1
2
3
4