Home
last modified time | relevance | path

Searched refs:getDimensionCount (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
DFrameFormat.java105 public int getDimensionCount() { in getDimensionCount() method in FrameFormat
213 if (specification.getDimensionCount() > 0 in isCompatibleWith()
214 && getDimensionCount() != specification.getDimensionCount()) { in isCompatibleWith()
219 for (int i = 0; i < specification.getDimensionCount(); ++i) { in isCompatibleWith()
272 if (specification.getDimensionCount() > 0 in mayBeCompatibleWith()
273 && getDimensionCount() > 0 in mayBeCompatibleWith()
274 && getDimensionCount() != specification.getDimensionCount()) { in mayBeCompatibleWith()
279 for (int i = 0; i < specification.getDimensionCount(); ++i) { in mayBeCompatibleWith()
DGLFrame.java85 } else if (format.getDimensionCount() != 2) { in init()