OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CFSTR
(Results
1 - 5
of
5
) sorted by null
/external/clang/test/CodeGen/
utf16-cfstrings.c
6
#define
CFSTR
__builtin___CFStringMakeConstantString
9
CFSTR
("überhund");
cfstring.c
12
#define
CFSTR
__builtin___CFStringMakeConstantString
15
CFSTR
("Hello, World!");
19
void *G =
CFSTR
("yo joe");
22
static void* h =
CFSTR
("Goodbye, World!");
cfstring2.c
5
#define
CFSTR
(x) (CFStringRef) __builtin___CFStringMakeConstantString (x)
8
CFSTR
("Hello, World!");
12
void *G =
CFSTR
("yo joe");
/external/clang/test/SemaCXX/
builtins.cpp
3
#define
CFSTR
__builtin___CFStringMakeConstantString
6
(void)CFStringRef(
CFSTR
("Hello"));
/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}}
Completed in 70 milliseconds