Home
last modified time | relevance | path

Searched refs:MK (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DNSAPI.cpp43 Selector NSAPI::getNSStringSelector(NSStringMethodKind MK) const { in getNSStringSelector()
44 if (NSStringSelectors[MK].isNull()) { in getNSStringSelector()
46 switch (MK) { in getNSStringSelector()
71 return (NSStringSelectors[MK] = Sel); in getNSStringSelector()
74 return NSStringSelectors[MK]; in getNSStringSelector()
77 Selector NSAPI::getNSArraySelector(NSArrayMethodKind MK) const { in getNSArraySelector()
78 if (NSArraySelectors[MK].isNull()) { in getNSArraySelector()
80 switch (MK) { in getNSArraySelector()
131 return (NSArraySelectors[MK] = Sel); in getNSArraySelector()
134 return NSArraySelectors[MK]; in getNSArraySelector()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMoveChecker.cpp76 static bool misuseCausesCrash(MisuseKind MK) { in misuseCausesCrash() argument
77 return MK == MK_Dereference; in misuseCausesCrash()
136 bool shouldWarnAbout(ObjectKind OK, MisuseKind MK) const { in shouldWarnAbout()
142 OK.StdKind != SK_SmartPtr || MK == MK_Dereference); in shouldWarnAbout()
152 const CXXRecordDecl *RD, MisuseKind MK) const;
159 const CXXRecordDecl *RD, MisuseKind MK) in MovedBugVisitor() argument
160 : Chk(Chk), Region(R), RD(RD), MK(MK), Found(false) {} in MovedBugVisitor()
183 const MisuseKind MK; member in __anona0b2285a0211::MoveChecker::MovedBugVisitor
211 const CXXRecordDecl *RD, MisuseKind MK,
218 CheckerContext &C, MisuseKind MK) const;
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DNSAPI.h56 Selector getNSStringSelector(NSStringMethodKind MK) const;
89 Selector getNSArraySelector(NSArrayMethodKind MK) const;
114 Selector getNSDictionarySelector(NSDictionaryMethodKind MK) const;
131 Selector getNSSetSelector(NSSetMethodKind MK) const;
196 Selector getNSNumberLiteralSelector(NSNumberLiteralMethodKind MK,
199 bool isNSNumberLiteralSelector(NSNumberLiteralMethodKind MK, in isNSNumberLiteralSelector() argument
201 return Sel == getNSNumberLiteralSelector(MK, false) || in isNSNumberLiteralSelector()
202 Sel == getNSNumberLiteralSelector(MK, true); in isNSNumberLiteralSelector()
/freebsd/tools/build/make_check/
H A Dcheck.mk3 ${MK} ${MK_ARG}
6 MK= ${.OBJDIR}/../../../usr.bin/make/make
8 ${MK} ${MK_ARG} 2>&1 | tee out-new
14 MK= make
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPContext.cpp153 MatchKind MK = MK_ALL; in isVariantApplicableInContextHelper() local
158 MK = MK_ANY; in isVariantApplicableInContextHelper()
161 MK = MK_NONE; in isVariantApplicableInContextHelper()
166 auto HandleTrait = [MK](TraitProperty Property, in isVariantApplicableInContextHelper()
170 if (MK == MK_ANY) { in isVariantApplicableInContextHelper()
178 if ((WasFound && MK == MK_ALL) || (!WasFound && MK == MK_NONE)) in isVariantApplicableInContextHelper()
183 if (MK == MK_ALL) in isVariantApplicableInContextHelper()
187 if (MK == MK_NONE) in isVariantApplicableInContextHelper()
253 if (MK == MK_ANY) { in isVariantApplicableInContextHelper()
/freebsd/contrib/file/magic/Magdir/
H A Dluks39 # key-bytes; number of key bytes; key-bytes*8=MK-bits
42 >112 ubequad x \b, MK digest %#16.16llx
46 >132 ubequad x \b, MK salt %#16.16llx
51 >164 ubelong x \b, %u MK iterations
/freebsd/contrib/llvm-project/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp779 NSAPI::NSNumberLiteralMethodKind MK = *MKOpt; in rewriteToNumberLiteral() local
784 switch (MK) { in rewriteToNumberLiteral()
987 NSAPI::NSNumberLiteralMethodKind MK = *MKOpt; in rewriteToNumericBoxedExpression() local
1007 if (MK == NSAPI::NSNumberWithBool && OrigTy->isBooleanType()) in rewriteToNumericBoxedExpression()
1011 if ((MK == NSAPI::NSNumberWithInteger || in rewriteToNumericBoxedExpression()
1012 MK == NSAPI::NSNumberWithUnsignedInteger) && in rewriteToNumericBoxedExpression()
1016 if ((MK==NSAPI::NSNumberWithInteger) == OrigTy->isSignedIntegerType() && in rewriteToNumericBoxedExpression()
/freebsd/contrib/bmake/mk/
H A Dsys.clean-env.mk46 MK \
H A Dmk-files.txt104 MAKE_SAVE_ENV_PREFIX += SB MK MAKE MACHINE NEED_ CCACHE DISTCC USE_ SSH
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndexDiscovery.cpp24 MethodKind MK = getMethodKind(Attrs); in isIntroVirtual() local
25 return MK == MethodKind::IntroducingVirtual || in isIntroVirtual()
26 MK == MethodKind::PureIntroducingVirtual; in isIntroVirtual()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjC.cpp1012 NSAPI::NSArrayMethodKind MK = *MKOpt; in GetNSMutableArrayArgumentIndex() local
1014 switch (MK) { in GetNSMutableArrayArgumentIndex()
1045 NSAPI::NSDictionaryMethodKind MK = *MKOpt; in GetNSMutableDictionaryArgumentIndex() local
1047 switch (MK) { in GetNSMutableDictionaryArgumentIndex()
1079 NSAPI::NSSetMethodKind MK = *MKOpt; in GetNSSetArgumentIndex() local
1081 switch (MK) { in GetNSSetArgumentIndex()
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp61 static void enumeration(IO &IO, MethodKind &MK) { in enumeration()
62 IO.enumCase(MK, "Class", MethodKind::Class); in enumeration()
63 IO.enumCase(MK, "Instance", MethodKind::Instance); in enumeration()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h728 OneMethodRecord(TypeIndex Type, MemberAccess Access, MethodKind MK, in OneMethodRecord() argument
731 Attrs(Access, MK, Options), VFTableOffset(VFTableOffset), Name(Name) {} in OneMethodRecord()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DFrontendActions.cpp819 static StringRef ModuleKindName(Module::ModuleKind MK) { in ModuleKindName() argument
820 switch (MK) { in ModuleKindName()
/freebsd/share/misc/
H A Diso3166152 MK MKD 807 Macedonia (the former Yugoslav Republic of)
H A Dusb_vendors12902 0064 MK-225 Driver
12903 0065 MK-225C Driver
12904 0066 MK-225C Driver
12905 0067 MK-425C Driver
12906 0078 MK-37 Driver
12907 0079 MK-37C Driver
12908 007a MK-37C Driver
12910 008d MK-249C Driver
12911 008e MK-249C MIDI Keyboard
12912 008f MK-449C Driver
[all …]
/freebsd/usr.sbin/tzsetup/
H A Dbaseline353 MK:Macedonia (the former Yugoslav Republic of)
/freebsd/contrib/tzdata/
H A Dzone1970.tab265 RS,BA,HR,ME,MK,SI +4450+02030 Europe/Belgrade
H A Dzone.tab263 MK +4159+02126 Europe/Skopje
/freebsd/contrib/sendmail/contrib/
H A Dmail.local.linux35 MK$$:]"@(D4Z:1J4@L*F<G2&1<5`=:PUGUJ'&OL"=<<HM%9",KB54'*LXZAB@
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZScheduleZEC12.td642 def : InstRW<[WLat30, MCD], (instregex "ED(MK)?$")>;
H A DSystemZScheduleZ196.td629 def : InstRW<[WLat30, MCD], (instregex "ED(MK)?$")>;
H A DSystemZScheduleZ13.td672 def : InstRW<[WLat30, MCD], (instregex "ED(MK)?$")>;
H A DSystemZScheduleZ14.td692 def : InstRW<[WLat30, MCD], (instregex "ED(MK)?$")>;
H A DSystemZScheduleZ15.td708 def : InstRW<[WLat30, MCD], (instregex "ED(MK)?$")>;

12