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

/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp49 unsigned BId = FD->getBuiltinID(); local
50 if (BId != 0) {
51 StringRef BName = Context.BuiltinInfo.GetName(BId);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp238 unsigned BId = 0; local
239 if ( (BId = FDecl->getMemoryFunctionKind()) )
240 switch(BId) {
712 unsigned BId = 0; local
713 if ( (BId = FDecl->getMemoryFunctionKind()) )
714 switch(BId) {
/external/clang/lib/Sema/
H A DSemaChecking.cpp3078 unsigned BId,
3080 assert(BId != 0);
3084 unsigned ExpectedNumArgs = (BId == Builtin::BIstrndup ? 2 : 3);
3088 unsigned LastArg = (BId == Builtin::BImemset ||
3089 BId == Builtin::BIstrndup ? 1 : 2);
3090 unsigned LenArg = (BId == Builtin::BIstrndup ? 1 : 2);
3190 if (ArgIdx != 0 || BId == Builtin::BImemcmp) {
3191 if (BId == Builtin::BImemcpy)
3193 else if(BId == Builtin::BImemmove)
3195 else if (BId
3077 CheckMemaccessArguments(const CallExpr *Call, unsigned BId, IdentifierInfo *FnName) argument
[all...]

Completed in 153 milliseconds