Home
last modified time | relevance | path

Searched refs:KEYMS (Results 1 – 2 of 2) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDTokenKinds.def236 // KEYMS - This is a keyword if Microsoft extensions are enabled
385 KEYWORD(__FUNCDNAME__ , KEYMS)
386 KEYWORD(__FUNCSIG__ , KEYMS)
387 KEYWORD(L__FUNCTION__ , KEYMS)
388 TYPE_TRAIT_1(__is_interface_class, IsInterfaceClass, KEYMS)
389 TYPE_TRAIT_1(__is_sealed, IsSealed, KEYMS)
392 TYPE_TRAIT_1(__is_destructible, IsDestructible, KEYMS)
393 TYPE_TRAIT_1(__is_nothrow_destructible, IsNothrowDestructible, KEYMS)
473 KEYWORD(__declspec , KEYMS|KEYBORLAND)
479 KEYWORD(__forceinline , KEYMS)
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/Basic/
HDIdentifierTable.cpp99 KEYMS = 0x10, enumerator
136 if (LangOpts.MicrosoftExt && (Flags & KEYMS)) return KS_Extension; in getKeywordStatus()