Home | History | Annotate | Download | only in src

Lines Matching refs:cmt

40 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
42 #define FLAG_READONLY(ftype, ctype, nam, def, cmt) \
49 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
51 #define FLAG_READONLY(ftype, ctype, nam, def, cmt)
58 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
60 #define FLAG_READONLY(ftype, ctype, nam, def, cmt)
66 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
67 { Flag::TYPE_##ftype, #nam, &FLAG_##nam, &FLAGDEFAULT_##nam, cmt, false },
68 #define FLAG_READONLY(ftype, ctype, nam, def, cmt)
73 #define FLAG_FULL(ftype, ctype, nam, def, cmt)
74 #define FLAG_READONLY(ftype, ctype, nam, def, cmt)
122 #define DEFINE_bool(nam, def, cmt) FLAG(BOOL, bool, nam, def, cmt)
123 #define DEFINE_int(nam, def, cmt) FLAG(INT, int, nam, def, cmt)
124 #define DEFINE_float(nam, def, cmt) FLAG(FLOAT, double, nam, def, cmt)
125 #define DEFINE_string(nam, def, cmt) FLAG(STRING, const char*, nam, def, cmt)
126 #define DEFINE_args(nam, def, cmt) FLAG(ARGS, JSArguments, nam, def, cmt)