Searched refs:BT (Results 26 - 50 of 70) sorted by relevance

123

/external/clang/lib/AST/
H A DType.cpp637 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
638 return BT->getKind() >= BuiltinType::Bool &&
639 BT->getKind() <= BuiltinType::Int128;
650 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
651 return BT->getKind() >= BuiltinType::Bool &&
652 BT->getKind() <= BuiltinType::Int128;
667 if (const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType))
668 return BT->getKind() == BuiltinType::Char_U ||
669 BT->getKind() == BuiltinType::UChar ||
670 BT
697 const BuiltinType *BT = dyn_cast<BuiltinType>(CanonicalType); local
[all...]
H A DNSAPI.cpp290 const BuiltinType *BT = T->getAs<BuiltinType>(); local
291 if (!BT)
305 switch (BT->getKind()) {
H A DASTContext.cpp1269 const BuiltinType *BT = T->getAs<BuiltinType>(); local
1270 assert(BT && "Not a floating point type!");
1271 switch (BT->getKind()) {
4453 if (const BuiltinType *BT = Promotable->getAs<BuiltinType>()) {
4460 if (BT->getKind() == BuiltinType::WChar_S ||
4461 BT->getKind() == BuiltinType::WChar_U ||
4462 BT->getKind() == BuiltinType::Char16 ||
4463 BT->getKind() == BuiltinType::Char32) {
4464 bool FromIsSigned = BT->getKind() == BuiltinType::WChar_S;
4465 uint64_t FromSize = getTypeSize(BT);
5174 const BuiltinType *BT = Enum->getIntegerType()->castAs<BuiltinType>(); local
5204 const BuiltinType *BT = T->castAs<BuiltinType>(); local
5406 const BlockPointerType *BT = T->castAs<BlockPointerType>(); local
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h74 BugType& BT; member in class:clang::ento::BugReport
147 : BT(bt), DeclWithIssue(nullptr), Description(desc), ErrorNode(errornode),
152 : BT(bt), DeclWithIssue(nullptr), ShortDescription(shortDesc),
157 : BT(bt), DeclWithIssue(nullptr), Description(desc), Location(l),
169 : BT(bt), DeclWithIssue(nullptr), Description(desc),
177 const BugType& getBugType() const { return BT; }
178 BugType& getBugType() { return BT; }
457 void Register(BugType *BT);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundCheckerV2.cpp31 mutable std::unique_ptr<BuiltinBug> BT; member in class:__anon18149::ArrayBoundCheckerV2
189 if (!BT)
190 BT.reset(new BuiltinBug(this, "Out-of-bound access"));
210 checkerContext.emitReport(new BugReport(*BT, os.str(), errorNode));
H A DBasicObjCFoundationChecks.cpp99 mutable std::unique_ptr<APIMisuse> BT; member in class:__anon18151::NilArgChecker
207 if (!BT)
208 BT.reset(new APIMisuse(this, "nil argument"));
210 BugReport *R = new BugReport(*BT, Msg, N);
346 mutable std::unique_ptr<APIMisuse> BT; member in class:__anon18152::CFNumberCreateChecker
516 if (!BT)
517 BT.reset(new APIMisuse(this, "Bad use of CFNumberCreate"));
519 BugReport *report = new BugReport(*BT, os.str(), N);
531 mutable std::unique_ptr<APIMisuse> BT; member in class:__anon18153::CFRetainReleaseChecker
553 if (!BT) {
629 mutable std::unique_ptr<BugType> BT; member in class:__anon18154::ClassReleaseChecker
688 mutable std::unique_ptr<BugType> BT; member in class:__anon18155::VariadicMethodTypeChecker
[all...]
H A DMacOSKeychainAPIChecker.cpp32 mutable std::unique_ptr<BugType> BT; member in class:__anon18200::MacOSKeychainAPIChecker
93 if (!BT)
94 BT.reset(new BugType(this, "Improper use of SecKeychain API",
272 BugReport *Report = new BugReport(*BT, os.str(), N);
313 BugReport *Report = new BugReport(*BT, os.str(), N);
365 BugReport *Report = new BugReport(*BT,
431 BugReport *Report = new BugReport(*BT,
540 BugReport *Report = new BugReport(*BT, os.str(), N, LocUsedForUniqueing,
H A DObjCSelfInitChecker.cpp65 mutable std::unique_ptr<BugType> BT; member in class:__anon18220::ObjCSelfInitChecker
160 if (!BT)
161 BT.reset(new BugType(this, "Missing \"self = [(super or self) init...]\"",
163 BugReport *report = new BugReport(*BT, errorStr, N);
H A DUnixAPIChecker.cpp60 void LazyInitialize(std::unique_ptr<BugType> &BT, const char *name) const { argument
61 if (BT)
63 BT.reset(new BugType(this, name, categories::UnixAPI));
H A DGenericTaintChecker.cpp45 mutable std::unique_ptr<BugType> BT; member in class:__anon18192::GenericTaintChecker
47 if (!BT)
48 BT.reset(new BugType(this, "Use of Untrusted Data", "Untrusted Data"));
645 BugReport *report = new BugReport(*BT, Msg, N);
/external/llvm/lib/Target/Mips/
H A DMipsInstrInfo.cpp92 BranchType BT = AnalyzeBranch(MBB, TBB, FBB, Cond, AllowModify, BranchInstrs); local
94 return (BT == BT_None) || (BT == BT_Indirect);
/external/clang/lib/Analysis/
H A DFormatString.cpp282 if (const BuiltinType *BT = argTy->getAs<BuiltinType>())
283 switch (BT->getKind()) {
303 if (const BuiltinType *BT = argTy->getAs<BuiltinType>())
304 switch (BT->getKind()) {
337 if (const BuiltinType *BT = pointeeTy->getAs<BuiltinType>())
338 switch (BT->getKind()) {
H A DScanfFormatString.cpp408 const BuiltinType *BT = PT->getAs<BuiltinType>(); local
409 if (!BT)
432 switch (BT->getKind()) {
H A DPrintfFormatString.cpp459 const BuiltinType *BT = QT->getAs<BuiltinType>(); local
460 if (!BT)
464 switch (BT->getKind()) {
/external/clang/lib/Serialization/
H A DASTCommon.cpp26 serialization::TypeIdxFromBuiltin(const BuiltinType *BT) { argument
28 switch (BT->getKind()) {
/external/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp256 IntegerType *BT = IntegerType::get(J->getContext(), BI->second); local
258 MadeChange |= reuseOrInsertFastDiv(F, I, J, BT, UseDivOp,
/external/clang/include/clang/AST/
H A DType.h5038 if (const BuiltinType *BT = getAs<BuiltinType>())
5039 if (BT->getKind() == (BuiltinType::Kind) K)
5045 if (const BuiltinType *BT = dyn_cast<BuiltinType>(this))
5046 return BT->isPlaceholderType();
5051 if (const BuiltinType *BT = dyn_cast<BuiltinType>(this))
5052 if (BT->isPlaceholderType())
5053 return BT;
5059 if (const BuiltinType *BT = dyn_cast<BuiltinType>(this))
5060 return (BT->getKind() == (BuiltinType::Kind) K);
5065 if (const BuiltinType *BT
[all...]
/external/clang/lib/Index/
H A DUSRGeneration.cpp536 if (const BuiltinType *BT = T->getAs<BuiltinType>()) {
538 switch (BT->getKind()) {
643 if (const BlockPointerType *BT = T->getAs<BlockPointerType>()) {
645 T = BT->getPointeeType();
/external/clang/lib/CodeGen/
H A DTargetInfo.cpp817 if (const BuiltinType *BT = T->getAs<BuiltinType>()) {
818 BuiltinType::Kind K = BT->getKind();
1554 if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) {
1555 BuiltinType::Kind k = BT->getKind();
2926 const BuiltinType *BT = T->getAs<BuiltinType>();
2928 (BT && BT->isFloatingPoint())) {
2985 if (const BuiltinType *BT = Ty->getAs<BuiltinType>())
2986 switch (BT->getKind()) {
3015 const BuiltinType *BT
5214 const BuiltinType *BT = Ty->getAs<BuiltinType>(); local
5307 const BuiltinType *BT = b->getType()->getAs<BuiltinType>(); local
6364 appendBuiltinType(SmallStringEnc &Enc, const BuiltinType *BT) argument
[all...]
H A DCGDebugInfo.cpp386 llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) { argument
389 switch (BT->getKind()) {
460 CGM.getContext().getTypeSize(BT),
461 CGM.getContext().getTypeAlign(BT),
492 switch (BT->getKind()) {
498 BTName = BT->getName(CGM.getLangOpts());
502 uint64_t Size = CGM.getContext().getTypeSize(BT);
503 uint64_t Align = CGM.getContext().getTypeAlign(BT);
/external/arduino/hardware/arduino/
H A Dboards.txt140 bt328.name=Arduino BT w/ ATmega328
161 bt.name=Arduino BT w/ ATmega168
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2590 hash.AddPointer(&BT);
3242 void BugReporter::Register(BugType *BT) { argument
3243 BugTypes = F.add(BugTypes, BT);
3274 BugType& BT = R->getBugType(); local
3275 Register(&BT);
3309 BugType& BT = I->getBugType(); local
3314 if (!BT.isSuppressOnSink()) {
3418 BugType& BT = exampleReport->getBugType(); local
3424 exampleReport->getShortDescription(/*Fallback=*/false), BT.getCategory(),
3485 // 'BT' i
3486 BugType *BT = getBugTypeForName(CheckName, name, category); local
3502 BugType *BT = entry.getValue(); local
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DRegionDataConstants.java195 BT(new String[]{ enum constant in enum:RegionDataConstants.RegionDataEnum
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_onyx_if.c1329 #define BFP(BT, SDF, SDAF, VF, SVF, SVAF, SVFHH, SVFHV, SVFHHV, \
1331 cpi->fn_ptr[BT].sdf = SDF; \
1332 cpi->fn_ptr[BT].sdaf = SDAF; \
1333 cpi->fn_ptr[BT].vf = VF; \
1334 cpi->fn_ptr[BT].svf = SVF; \
1335 cpi->fn_ptr[BT].svaf = SVAF; \
1336 cpi->fn_ptr[BT].svf_halfpix_h = SVFHH; \
1337 cpi->fn_ptr[BT].svf_halfpix_v = SVFHV; \
1338 cpi->fn_ptr[BT].svf_halfpix_hv = SVFHHV; \
1339 cpi->fn_ptr[BT]
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_encoder.c1000 #define BFP(BT, SDF, SDAF, VF, SVF, SVAF, SDX3F, SDX8F, SDX4DF)\
1001 cpi->fn_ptr[BT].sdf = SDF; \
1002 cpi->fn_ptr[BT].sdaf = SDAF; \
1003 cpi->fn_ptr[BT].vf = VF; \
1004 cpi->fn_ptr[BT].svf = SVF; \
1005 cpi->fn_ptr[BT].svaf = SVAF; \
1006 cpi->fn_ptr[BT].sdx3f = SDX3F; \
1007 cpi->fn_ptr[BT].sdx8f = SDX8F; \
1008 cpi->fn_ptr[BT].sdx4df = SDX4DF;

Completed in 420 milliseconds

123