HomeSort by relevance Sort by last modified time
    Searched defs:m_indices (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
CustomFilterMeshGenerator.h 48 const Vector<uint16_t>& indices() const { return m_indices; }
109 Vector<uint16_t> m_indices; member in class:WebCore::CustomFilterMeshGenerator
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ContentDistributor.h 57 void clear() { m_nodes.clear(); m_indices.clear(); }
59 bool contains(const Node* node) const { return m_indices.contains(node); }
70 HashMap<const Node*, size_t> m_indices; member in class:WebCore::ContentDistribution
  /external/eigen/Eigen/src/Core/
Transpositions.h 122 if(m_indices(k)!=k)
123 mat.row(k).swap(mat.row(m_indices(k)));
130 if(m_indices(k)!=k)
131 mat.row(k).swap(mat.row(m_indices(k)));
170 : m_indices(other.indices()) {}
175 inline Transpositions(const Transpositions& other) : m_indices(other.indices()) {}
180 explicit inline Transpositions(const MatrixBase<Other>& indices) : m_indices(indices)
196 m_indices = other.m_indices;
203 inline Transpositions(Index size) : m_indices(size
213 IndicesType m_indices; member in class:Eigen::Transpositions
271 IndicesType m_indices; member in class:Eigen::Map
324 const typename IndicesType::Nested m_indices; member in class:Eigen::TranspositionsWrapper
    [all...]
PermutationMatrix.h 298 inline PermutationMatrix(int size) : m_indices(size)
304 : m_indices(other.indices()) {}
309 inline PermutationMatrix(const PermutationMatrix& other) : m_indices(other.indices()) {}
320 explicit inline PermutationMatrix(const MatrixBase<Other>& indices) : m_indices(indices)
326 : m_indices(tr.size())
335 m_indices = other.indices();
352 m_indices = other.m_indices;
358 const IndicesType& indices() const { return m_indices; }
360 IndicesType& indices() { return m_indices; }
382 IndicesType m_indices; member in class:Eigen::PermutationMatrix
445 IndicesType m_indices; member in class:Eigen::Map
503 typename IndicesType::Nested m_indices; member in class:Eigen::PermutationWrapper
    [all...]
  /external/eigen/Eigen/src/SparseCore/
CompressedStorage.h 36 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
40 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
46 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
55 memcpy(m_indices, other.m_indices, m_size * sizeof(Index));
62 std::swap(m_indices, other.m_indices);
70 delete[] m_indices;
98 m_indices[id] = i;
108 inline Index& index(size_t i) { return m_indices[i];
223 Index* m_indices; member in class:Eigen::internal::CompressedStorage
    [all...]
SparseMatrix.h 959 const Index* m_indices; member in class:Eigen::SparseMatrix::InnerIterator
992 const Index* m_indices; member in class:Eigen::SparseMatrix::ReverseInnerIterator
    [all...]

Completed in 757 milliseconds