Lines Matching refs:KS_Enabled
120 KS_Enabled, // Enabled enumerator
129 if (Flags == KEYALL) return KS_Enabled; in getKeywordStatus()
130 if (LangOpts.CPlusPlus && (Flags & KEYCXX)) return KS_Enabled; in getKeywordStatus()
131 if (LangOpts.CPlusPlus11 && (Flags & KEYCXX11)) return KS_Enabled; in getKeywordStatus()
132 if (LangOpts.C99 && (Flags & KEYC99)) return KS_Enabled; in getKeywordStatus()
136 if (LangOpts.Bool && (Flags & BOOLSUPPORT)) return KS_Enabled; in getKeywordStatus()
137 if (LangOpts.Half && (Flags & HALFSUPPORT)) return KS_Enabled; in getKeywordStatus()
138 if (LangOpts.WChar && (Flags & WCHARSUPPORT)) return KS_Enabled; in getKeywordStatus()
139 if (LangOpts.AltiVec && (Flags & KEYALTIVEC)) return KS_Enabled; in getKeywordStatus()
140 if (LangOpts.OpenCL && (Flags & KEYOPENCL)) return KS_Enabled; in getKeywordStatus()
141 if (!LangOpts.CPlusPlus && (Flags & KEYNOCXX)) return KS_Enabled; in getKeywordStatus()
142 if (LangOpts.C11 && (Flags & KEYC11)) return KS_Enabled; in getKeywordStatus()
145 if (LangOpts.ObjC2 && (Flags & KEYARC)) return KS_Enabled; in getKeywordStatus()
237 case KS_Enabled: in isKeyword()