Home | History | Annotate | Download | only in Sema

Lines Matching refs:Index

477 /// \brief Retrieve the depth and index of a parameter pack.
505 // Compute the depth and index for this parameter pack.
506 unsigned Depth = 0, Index = 0;
513 Index = TTP->getIndex();
520 llvm::tie(Depth, Index) = getDepthAndIndex(ND);
544 // If we don't have a template argument at this depth/index, then we
548 !TemplateArgs.hasTemplateArgument(Depth, Index)) {
554 NewPackSize = TemplateArgs(Depth, Index).pack_size();
566 if (PartialDepth == Depth && PartialIndex == Index)
607 // Compute the depth and index for this parameter pack.
609 unsigned Index;
614 Index = TTP->getIndex();
630 llvm::tie(Depth, Index) = getDepthAndIndex(ND);
633 !TemplateArgs.hasTemplateArgument(Depth, Index))
637 return TemplateArgs(Depth, Index).pack_size();