m_kernelMatrix     53 Source/core/svg/SVGFEConvolveMatrixElement.cpp     , m_kernelMatrix(SVGAnimatedNumberList::create(this, SVGNames::kernelMatrixAttr, SVGNumberList::create()))
m_kernelMatrix     66 Source/core/svg/SVGFEConvolveMatrixElement.cpp     addToPropertyMap(m_kernelMatrix);
m_kernelMatrix    115 Source/core/svg/SVGFEConvolveMatrixElement.cpp         m_kernelMatrix->setBaseValueAsString(value, parseError);
m_kernelMatrix    205 Source/core/svg/SVGFEConvolveMatrixElement.cpp     RefPtr<SVGNumberList> kernelMatrix = this->m_kernelMatrix->currentValue();
m_kernelMatrix    248 Source/core/svg/SVGFEConvolveMatrixElement.cpp                     FloatPoint(kernelUnitLengthXValue, kernelUnitLengthYValue), m_preserveAlpha->currentValue()->value(), m_kernelMatrix->currentValue()->toFloatVector());
m_kernelMatrix     46 Source/core/svg/SVGFEConvolveMatrixElement.h     SVGAnimatedNumberList* kernelMatrix() { return m_kernelMatrix.get(); }
m_kernelMatrix     67 Source/core/svg/SVGFEConvolveMatrixElement.h     RefPtr<SVGAnimatedNumberList> m_kernelMatrix;
m_kernelMatrix     85 Source/platform/graphics/filters/FEConvolveMatrix.cpp     return m_kernelMatrix;
m_kernelMatrix     90 Source/platform/graphics/filters/FEConvolveMatrix.cpp     m_kernelMatrix = kernel;
m_kernelMatrix    280 Source/platform/graphics/filters/FEConvolveMatrix.cpp             int kernelValue = m_kernelMatrix.size() - 1;
m_kernelMatrix    291 Source/platform/graphics/filters/FEConvolveMatrix.cpp                 totals[0] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(kernelPixel++));
m_kernelMatrix    292 Source/platform/graphics/filters/FEConvolveMatrix.cpp                 totals[1] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(kernelPixel++));
m_kernelMatrix    293 Source/platform/graphics/filters/FEConvolveMatrix.cpp                 totals[2] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(kernelPixel++));
m_kernelMatrix    295 Source/platform/graphics/filters/FEConvolveMatrix.cpp                     totals[3] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(kernelPixel));
m_kernelMatrix    360 Source/platform/graphics/filters/FEConvolveMatrix.cpp             int kernelValue = m_kernelMatrix.size() - 1;
m_kernelMatrix    374 Source/platform/graphics/filters/FEConvolveMatrix.cpp                     totals[0] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(pixelIndex));
m_kernelMatrix    375 Source/platform/graphics/filters/FEConvolveMatrix.cpp                     totals[1] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(pixelIndex + 1));
m_kernelMatrix    376 Source/platform/graphics/filters/FEConvolveMatrix.cpp                     totals[2] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(pixelIndex + 2));
m_kernelMatrix    379 Source/platform/graphics/filters/FEConvolveMatrix.cpp                     totals[3] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(pixelIndex + 3));
m_kernelMatrix    536 Source/platform/graphics/filters/FEConvolveMatrix.cpp         kernel[i] = SkFloatToScalar(m_kernelMatrix[numElements - 1 - i]);
m_kernelMatrix    566 Source/platform/graphics/filters/FEConvolveMatrix.cpp        << "kernelMatrix=\"" << m_kernelMatrix  << "\" "
m_kernelMatrix    129 Source/platform/graphics/filters/FEConvolveMatrix.h     Vector<float> m_kernelMatrix;