Lines Matching full:vardecl
1064 void getCaptureFields(llvm::DenseMap<const VarDecl *, FieldDecl *> &Captures,
1936 SourceLocation R, VarDecl **Indices, unsigned NumIndices);
1967 VarDecl **Indices, unsigned NumIndices);
2105 VarDecl *getArrayIndex(unsigned I) {
2107 return reinterpret_cast<VarDecl **>(this + 1)[I];
2109 const VarDecl *getArrayIndex(unsigned I) const {
2111 return reinterpret_cast<const VarDecl * const *>(this + 1)[I];
2113 void setArrayIndex(unsigned I, VarDecl *Index) {
2115 reinterpret_cast<VarDecl **>(this + 1)[I] = Index;
2117 ArrayRef<VarDecl *> getArrayIndexes() {
2119 return llvm::makeArrayRef(reinterpret_cast<VarDecl **>(this + 1),