OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:STRINGIZE
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/base/strings/
stringize_macros.h
27
//
STRINGIZE
(A) produces "FOO"
28
//
STRINGIZE
(B(y)) produces "myobj->FunctionCall(y)"
29
#define
STRINGIZE
(x) STRINGIZE_NO_EXPANSION(x)
/external/chromium/base/
stringize_macros.h
28
//
STRINGIZE
(A) produces "FOO"
29
//
STRINGIZE
(B(y)) produces "myobj->FunctionCall(y)"
30
#define
STRINGIZE
(x) STRINGIZE_NO_EXPANSION(x)
40
// L version of
STRINGIZE
(). For examples above,
/external/clang/test/Preprocessor/
pp-record.c
5
#define
STRINGIZE
(text) STRINGIZE_I(text)
10
#include
STRINGIZE
(INC)
ucn-pp-identifier.c
42
#define
STRINGIZE
(X) # X
44
extern int check_size[sizeof(
STRINGIZE
(\u0112)) == 3 ? 1 : -1];
/external/chromium_org/third_party/WebKit/Source/wtf/
StdLibExtras.h
73
//
STRINGIZE
: Can convert any value to quoted string, even expandable macros
74
#define
STRINGIZE
(exp) #exp
75
#define STRINGIZE_VALUE_OF(exp)
STRINGIZE
(exp)
Completed in 228 milliseconds