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

12 3

  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 330 unsigned NumArgs; // Number of funArgs
336 NumArgs(0), FunArgs(nullptr), SelfArrow(false)
  /external/clang/lib/AST/
DeclPrinter.cpp 589 unsigned NumArgs = 0;
592 NumArgs = ParenList->getNumExprs();
596 NumArgs = Construct->getNumArgs();
603 for (unsigned I = 0; I != NumArgs; ++I) {
    [all...]
DeclObjC.cpp     [all...]
Expr.cpp     [all...]
ItaniumMangle.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
ExecutionEngine.cpp 363 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
368 if (NumArgs > 3)
370 if (NumArgs >= 3 && FTy->getParamType(2) != PPInt8Ty)
372 if (NumArgs >= 2 && FTy->getParamType(1) != PPInt8Ty)
374 if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32))
382 if (NumArgs) {
384 if (NumArgs > 1) {
389 if (NumArgs > 2) {
    [all...]
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 490 unsigned NumArgs;
523 return NumArgs + 1;
526 return (HasExtParameterInfos ? NumArgs : 0);
541 const_arg_iterator arg_end() const { return getArgsBuffer() + 1 + NumArgs; }
543 arg_iterator arg_end() { return getArgsBuffer() + 1 + NumArgs; }
545 unsigned arg_size() const { return NumArgs; }
599 return llvm::makeArrayRef(getExtParameterInfosBuffer(), NumArgs);
602 assert(argIndex <= NumArgs);
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 322 unsigned NumArgs = Call.getNumArgs();
325 for (; I != E && Idx < NumArgs; ++I, ++Idx) {
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 431 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
436 if (NumArgs > 3)
438 if (NumArgs >= 3 && FTy->getParamType(2) != PPInt8Ty)
440 if (NumArgs >= 2 && FTy->getParamType(1) != PPInt8Ty)
442 if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32))
450 if (NumArgs) {
452 if (NumArgs > 1) {
457 if (NumArgs > 2) {
    [all...]
  /external/clang/include/clang/AST/
DeclTemplate.h 572 unsigned NumArgs;
578 return NumArgs;
609 unsigned getNumTemplateArgs() const { return NumArgs; }
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h     [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp     [all...]
ParseDecl.cpp 515 unsigned NumArgs =
522 if (Attr && Attr->getMaxArgs() && !NumArgs) {
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 281 ulittle32_t NumArgs; // Number of arguments
830 ulittle16_t NumArgs; // Number of arguments
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 680 unsigned NumArgs, const Value *Callee,
683 Args.reserve(NumArgs);
688 for (unsigned ArgI = ArgIdx, ArgE = ArgIdx + NumArgs, AttrI = ArgIdx + 1;
703 CLI.setCallee(CI->getCallingConv(), RetTy, Callee, std::move(Args), NumArgs);
721 // i32 <numArgs>,
729 // Get the real number of arguments participating in the call <numArgs>
734 unsigned NumArgs = NumArgsVal->getZExtValue();
736 // Skip the four meta args: <id>, <numNopBytes>, <target>, <numArgs>
739 assert(I->getNumArgOperands() >= NumMetaOpers + NumArgs &&
743 unsigned NumCallArgs = IsAnyRegCC ? 0 : NumArgs;
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Verifier.cpp 634 unsigned NumArgs = F.arg_size();
640 Assert2(FT->getNumParams() == NumArgs,
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp     [all...]
SemaTemplateDeduction.cpp 108 const TemplateArgument *Args, unsigned NumArgs,
746 /// \param NumArgs The number of types in \c Args
766 const QualType *Args, unsigned NumArgs,
772 if (NumParams != NumArgs &&
774 !(NumArgs && isa<PackExpansionType>(Args[NumArgs - 1])))
791 if (ArgIdx >= NumArgs)
831 for (; ArgIdx < NumArgs; ++ArgIdx)
    [all...]
SemaDeclObjC.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaInit.cpp     [all...]
SemaTemplate.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]

Completed in 1115 milliseconds

12 3