HomeSort by relevance Sort by last modified time
    Searched defs:BT (Results 26 - 50 of 50) sorted by null

12

  /external/clang/lib/Analysis/
PrintfFormatString.cpp 459 const BuiltinType *BT = QT->getAs<BuiltinType>();
460 if (!BT)
464 switch (BT->getKind()) {
CFG.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
VLASizeChecker.cpp 32 mutable std::unique_ptr<BugType> BT;
53 if (!BT)
54 BT.reset(new BuiltinBug(
72 BugReport *report = new BugReport(*BT, os.str(), N);
ArrayBoundCheckerV2.cpp 31 mutable std::unique_ptr<BuiltinBug> BT;
189 if (!BT)
190 BT.reset(new BuiltinBug(this, "Out-of-bound access"));
210 checkerContext.emitReport(new BugReport(*BT, os.str(), errorNode));
GenericTaintChecker.cpp 45 mutable std::unique_ptr<BugType> BT;
47 if (!BT)
48 BT.reset(new BugType(this, "Use of Untrusted Data", "Untrusted Data"));
645 BugReport *report = new BugReport(*BT, Msg, N);
ObjCSelfInitChecker.cpp 65 mutable std::unique_ptr<BugType> BT;
160 if (!BT)
161 BT.reset(new BugType(this, "Missing \"self = [(super or self) init...]\"",
163 BugReport *report = new BugReport(*BT, errorStr, N);
CallAndMessageChecker.cpp 69 std::unique_ptr<BugType> &BT,
72 static void emitBadCall(BugType *BT, CheckerContext &C, const Expr *BadE);
80 void LazyInit_BT(const char *desc, std::unique_ptr<BugType> &BT) const {
81 if (!BT)
82 BT.reset(new BuiltinBug(this, desc));
86 const Expr *ArgEx, std::unique_ptr<BugType> &BT,
91 void CallAndMessageChecker::emitBadCall(BugType *BT, CheckerContext &C,
97 BugReport *R = new BugReport(*BT, BT->getName(), N);
136 std::unique_ptr<BugType> &BT,
    [all...]
MacOSKeychainAPIChecker.cpp 32 mutable std::unique_ptr<BugType> BT;
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,
BasicObjCFoundationChecks.cpp 99 mutable std::unique_ptr<APIMisuse> BT;
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;
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;
553 if (!BT) {
    [all...]
CStringChecker.cpp 247 BuiltinBug *BT = static_cast<BuiltinBug*>(BT_Null.get());
248 BugReport *report = new BugReport(*BT, os.str(), N);
304 BuiltinBug *BT = static_cast<BuiltinBug*>(BT_Bounds.get());
309 report = new BugReport(*BT, warningMsg, N);
319 report = new BugReport(*BT, os.str(), N);
    [all...]
RetainCountChecker.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsInstrInfo.cpp 92 BranchType BT = AnalyzeBranch(MBB, TBB, FBB, Cond, AllowModify, BranchInstrs);
94 return (BT == BT_None) || (BT == BT_Indirect);
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 256 IntegerType *BT = IntegerType::get(J->getContext(), BI->second);
258 MadeChange |= reuseOrInsertFastDiv(F, I, J, BT, UseDivOp,
  /frameworks/compile/libbcc/bcinfo/tools/
main.cpp 288 std::unique_ptr<bcinfo::BitcodeTranslator> BT;
289 BT.reset(new bcinfo::BitcodeTranslator(bitcode, bitcodeSize, version));
290 if (!BT->translate()) {
296 ME.reset(new bcinfo::MetadataExtractor(BT->getTranslatedBitcode(),
297 BT->getTranslatedBitcodeSize()));
306 const char *translatedBitcode = BT->getTranslatedBitcode();
307 size_t translatedBitcodeSize = BT->getTranslatedBitcodeSize();
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 74 BugType& BT;
146 BugReport(BugType& bt, StringRef desc, const ExplodedNode *errornode)
147 : BT(bt), DeclWithIssue(nullptr), Description(desc), ErrorNode(errornode),
150 BugReport(BugType& bt, StringRef shortDesc, StringRef desc,
152 : BT(bt), DeclWithIssue(nullptr), ShortDescription(shortDesc),
156 BugReport(BugType &bt, StringRef desc, PathDiagnosticLocation l)
157 : BT(bt), DeclWithIssue(nullptr), Description(desc), Location(l)
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp 258 const clang::BuiltinType *BT = static_cast<const clang::BuiltinType*>(CTI);
259 return FindBuiltinType(BT->getKind()) == NULL ? NULL : T;
687 const clang::BuiltinType *BT = static_cast<const clang::BuiltinType*>(CTI);
688 BuiltinInfo *info = FindBuiltinType(BT->getKind());
    [all...]
  /external/clang/lib/AST/
Type.cpp 637 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->getKind() == BuiltinType::Char_S |
    [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 112 const BuiltinType *BT = dyn_cast<BuiltinType>(T);
113 if (!BT || !BT->isInteger())
    [all...]
BugReporter.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.h 96 BT,
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
RegionDataConstants.java 195 BT(new String[]{
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 817 if (const BuiltinType *BT = T->getAs<BuiltinType>()) {
818 BuiltinType::Kind K = BT->getKind();
    [all...]
  /external/qemu/disas/
ppc.c 446 as the BT field in the same instruction. */
527 /* The BT field in an X or XL form instruction. */
528 #define BT BH + 1
535 #define CR BT + 1
905 the BT field in the same instruction. This operand is marked FAKE
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 871 milliseconds

12