HomeSort by relevance Sort by last modified time
    Searched defs:NumArgs (Results 1 - 25 of 42) sorted by null

1 2

  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 167 unsigned NumArgs = Clang->getFrontendOpts().LLVMArgs.size();
168 const char **Args = new const char*[NumArgs + 2];
170 for (unsigned i = 0; i != NumArgs; ++i)
172 Args[NumArgs + 1] = 0;
173 llvm::cl::ParseCommandLineOptions(NumArgs + 1, Args);
  /external/llvm/lib/CodeGen/
CallingConvLower.cpp 69 unsigned NumArgs = Ins.size();
71 for (unsigned i = 0; i != NumArgs; ++i) {
  /external/llvm/lib/Target/Hexagon/
HexagonCallingConvLower.cpp 70 unsigned NumArgs = Ins.size();
80 for (; i != NumArgs; ++i) {
  /external/clang/include/clang/AST/
CommentCommandTraits.h 46 unsigned NumArgs : 4;
TemplateBase.h 89 unsigned NumArgs;
175 TemplateArgument(const TemplateArgument *Args, unsigned NumArgs) : Kind(Pack){
177 this->Args.NumArgs = NumArgs;
184 unsigned NumArgs);
292 return Args.Args + Args.NumArgs;
299 return Args.NumArgs;
DeclTemplate.h 155 TemplateArgumentList(const TemplateArgument *Args, unsigned NumArgs,
157 : Arguments(Args, Owned), NumArguments(NumArgs) { }
168 unsigned NumArgs);
175 const TemplateArgument *Args, unsigned NumArgs)
176 : Arguments(Args, false), NumArguments(NumArgs) { }
444 unsigned NumArgs;
480 return d.NumArgs;
568 const TemplateArgument *Args, unsigned NumArgs,
779 unsigned NumArgs, void *&InsertPos);
    [all...]
  /external/clang/include/clang/Sema/
ParsedTemplate.h 174 /// NumArgs - The number of template arguments.
175 unsigned NumArgs;
182 /// \brief Creates a new TemplateIdAnnotation with NumArgs arguments and
185 Allocate(unsigned NumArgs, SmallVectorImpl<TemplateIdAnnotation*> &List) {
188 sizeof(ParsedTemplateArgument) * NumArgs);
189 TemplateId->NumArgs = NumArgs;
196 for (unsigned I = 0; I != NumArgs; ++I)
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCSelfInitChecker.cpp 264 unsigned NumArgs = CE.getNumArgs();
270 for (unsigned i = 0; i < NumArgs; ++i) {
297 unsigned NumArgs = CE.getNumArgs();
298 for (unsigned i = 0; i < NumArgs; ++i) {
  /external/clang/tools/driver/
cc1as_main.cpp 432 unsigned NumArgs = Asm.LLVMArgs.size();
433 const char **Args = new const char*[NumArgs + 2];
435 for (unsigned i = 0; i != NumArgs; ++i)
437 Args[NumArgs + 1] = 0;
438 llvm::cl::ParseCommandLineOptions(NumArgs + 1, Args);
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 240 unsigned NumArgs;
244 NumArgs = Wosize_val(Args);
245 GVArgs = (LLVMGenericValueRef*) malloc(NumArgs * sizeof(LLVMGenericValueRef));
246 for (I = 0; I != NumArgs; ++I)
249 Result = LLVMRunFunction(EE, F, NumArgs, GVArgs);
273 int I, NumArgs, NumEnv, EnvSize, Result;
277 NumArgs = Wosize_val(Args);
281 CArgs = (const char **) malloc(NumArgs * sizeof(char*));
282 for (I = 0; I != NumArgs; ++I)
311 Result = LLVMRunFunctionAsMain(EE, F, NumArgs, CArgs, CEnv)
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 186 const unsigned NumArgs = F->arg_size();
190 if (ArgVals.size() > NumArgs && F->isVarArg()) {
197 std::vector<ffi_type*> args(NumArgs);
209 SmallVector<void*, 16> values(NumArgs);
221 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, NumArgs, rtype, &args[0]) == FFI_OK) {
  /external/clang/lib/CodeGen/
CGCall.h 187 unsigned NumArgs;
208 const_arg_iterator arg_end() const { return getArgsBuffer() + 1 + NumArgs; }
210 arg_iterator arg_end() { return getArgsBuffer() + 1 + NumArgs; }
212 unsigned arg_size() const { return NumArgs; }
CodeGenFunction.cpp 377 unsigned NumArgs = 0;
381 ArgsArray[NumArgs++] = (*i)->getType();
385 getContext().getFunctionType(RetTy, ArgsArray, NumArgs,
    [all...]
CGDebugInfo.cpp 134 unsigned NumArgs = TArgs->size();
137 NumArgs,
188 unsigned NumArgs;
193 NumArgs = TST->getNumArgs();
197 NumArgs = TemplateArgs.size();
202 TemplateSpecializationType::PrintTemplateArgumentList(Args, NumArgs, Policy);
    [all...]
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 214 unsigned NumArgs = Params.size();
231 Args.assign(CS.arg_begin(), CS.arg_begin() + NumArgs);
235 if (!PAL.isEmpty() && PAL.getSlot(PAL.getNumSlots() - 1).Index > NumArgs) {
237 for (unsigned i = 0; PAL.getSlot(i).Index <= NumArgs; ++i)
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 517 unsigned NumArgs = 0;
520 NumArgs = ParenList->getNumExprs();
524 NumArgs = Construct->getNumArgs();
531 for (unsigned I = 0; I != NumArgs; ++I) {
    [all...]
TypePrinter.cpp 895 unsigned NumArgs;
900 NumArgs = TST->getNumArgs();
904 NumArgs = TemplateArgs.size();
908 Args, NumArgs,
    [all...]
Expr.cpp     [all...]
ItaniumMangle.cpp 356 unsigned numArgs);
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 361 unsigned NumArgs = Fn->getFunctionType()->getNumParams();
366 if (NumArgs > 3)
368 if (NumArgs >= 3 && FTy->getParamType(2) != PPInt8Ty)
370 if (NumArgs >= 2 && FTy->getParamType(1) != PPInt8Ty)
372 if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32))
380 if (NumArgs) {
382 if (NumArgs > 1) {
387 if (NumArgs > 2) {
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h 823 /// the common fields to registers, eliminating increments of the NumArgs field,
827 mutable unsigned NumArgs, NumRanges, NumFixits;
844 : DiagObj(0), NumArgs(0), NumRanges(0), NumFixits(0), IsActive(false),
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp     [all...]
SemaTemplateDeduction.cpp 131 const TemplateArgument *Args, unsigned NumArgs,
660 /// \param NumArgs The number of types in \c Args
683 const QualType *Args, unsigned NumArgs,
691 if (NumParams != NumArgs &&
693 !(NumArgs && isa<PackExpansionType>(Args[NumArgs - 1])))
710 if (ArgIdx >= NumArgs)
777 for (; ArgIdx < NumArgs; ++ArgIdx) {
    [all...]
  /external/llvm/lib/VMCore/
Verifier.cpp 629 unsigned NumArgs = F.arg_size();
635 Assert2(FT->getNumParams() == NumArgs,
    [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp 170 unsigned NumArgs; // Number of funArgs
177 NumArgs(N), FunArgs(A), PrevCtx(P)
224 unsigned makeCall(unsigned NumArgs, const NamedDecl *D) {
225 NodeVec.push_back(SExprNode(EOP_Call, NumArgs, D));
229 unsigned makeMCall(unsigned NumArgs, const NamedDecl *D) {
230 NodeVec.push_back(SExprNode(EOP_MCall, NumArgs, D));
277 assert(i < CallCtx->NumArgs);
317 LRCallCtx.NumArgs = CMCE->getNumArgs();
345 LRCallCtx.NumArgs = CE->getNumArgs();
485 CallCtx.NumArgs = CE->getNumArgs()
    [all...]

Completed in 481 milliseconds

1 2