Searched defs:BId (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp51 unsigned BId = FD->getBuiltinID(); local
52 if (BId != 0) {
55 StringRef BName = FD->getASTContext().BuiltinInfo.getName(BId);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp232 unsigned BId = 0; local
233 if ( (BId = FDecl->getMemoryFunctionKind()) )
234 switch(BId) {
697 unsigned BId = 0; local
698 if ( (BId = FDecl->getMemoryFunctionKind()) )
699 switch(BId) {
/external/clang/lib/Sema/
H A DSemaChecking.cpp6123 unsigned BId,
6125 assert(BId != 0);
6129 unsigned ExpectedNumArgs = (BId == Builtin::BIstrndup ? 2 : 3);
6133 unsigned LastArg = (BId == Builtin::BImemset ||
6134 BId == Builtin::BIstrndup ? 1 : 2);
6135 unsigned LenArg = (BId == Builtin::BIstrndup ? 1 : 2);
6249 if (ArgIdx != 0 || BId == Builtin::BImemcmp) {
6250 if (BId == Builtin::BImemcpy)
6252 else if(BId == Builtin::BImemmove)
6254 else if (BId
6122 CheckMemaccessArguments(const CallExpr *Call, unsigned BId, IdentifierInfo *FnName) argument
[all...]

Completed in 292 milliseconds