Searched refs:getComponentCount (Results 1 – 14 of 14) sorted by relevance
/packages/apps/Gallery2/tests/src/com/android/gallery3d/exif/ |
D | Util.java | 62 byte[] buf = new byte[tag.getComponentCount()]; in tagUndefinedTypeValueToString() 66 for (int i = 0, n = tag.getComponentCount(); i < n; i++) { in tagUndefinedTypeValueToString() 108 byte[] buf = new byte[tag.getComponentCount()]; in tagValueToString() 110 for (int i = 0, n = tag.getComponentCount(); i < n; i++) { in tagValueToString() 138 for (int i = 0, n = tag.getComponentCount(); i < n; i++) { in tagValueToString() 147 for (int i = 0, n = tag.getComponentCount(); i < n; i++) { in tagValueToString() 156 for (int i = 0, n = tag.getComponentCount(); i < n; i++) { in tagValueToString() 164 for (int i = 0, n = tag.getComponentCount(); i < n; i++) { in tagValueToString()
|
D | ExifParserTest.java | 67 byte[] buf = new byte[tag.getComponentCount()]; in testParse() 122 byte[] buf = new byte[tag.getComponentCount()]; in parseOneIfd()
|
D | ExifInterfaceTest.java | 513 assertTrue(getImageTitle(), tag.getComponentCount() == t.getComponentCount()); in checkTagAgainstHash()
|
D | ExifReaderTest.java | 110 .getComponentCount(); in checkThumbnail()
|
D | ExifTagTest.java | 98 int count = tag.getComponentCount(); in testValueType()
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/ |
D | ExifParser.java | 587 if (tag.getComponentCount() == 0) { in checkOffsetOrImageTag() 619 for (int i = 0; i < tag.getComponentCount(); i++) { in checkOffsetOrImageTag() 650 int size = tag.getComponentCount(); in readFullTagValue() 682 byte buf[] = new byte[tag.getComponentCount()]; in readFullTagValue() 688 tag.setValue(readString(tag.getComponentCount())); in readFullTagValue() 691 long value[] = new long[tag.getComponentCount()]; in readFullTagValue() 699 Rational value[] = new Rational[tag.getComponentCount()]; in readFullTagValue() 707 int value[] = new int[tag.getComponentCount()]; in readFullTagValue() 715 int value[] = new int[tag.getComponentCount()]; in readFullTagValue() 723 Rational value[] = new Rational[tag.getComponentCount()]; in readFullTagValue()
|
D | ExifModifier.java | 114 if (newTag.getComponentCount() != oldTag.getComponentCount() in commit() 157 if (buf.length == tag.getComponentCount()) { in writeTagValue() 167 for (int i = 0, n = tag.getComponentCount(); i < n; i++) { in writeTagValue() 173 for (int i = 0, n = tag.getComponentCount(); i < n; i++) { in writeTagValue() 181 buf = new byte[tag.getComponentCount()]; in writeTagValue() 186 for (int i = 0, n = tag.getComponentCount(); i < n; i++) { in writeTagValue()
|
D | ExifOutputStream.java | 288 dataOutputStream.writeInt(tag.getComponentCount()); in writeIfd() 485 if (buf.length == tag.getComponentCount()) { in writeTagValue() 495 for (int i = 0, n = tag.getComponentCount(); i < n; i++) { in writeTagValue() 501 for (int i = 0, n = tag.getComponentCount(); i < n; i++) { in writeTagValue() 507 buf = new byte[tag.getComponentCount()]; in writeTagValue() 512 for (int i = 0, n = tag.getComponentCount(); i < n; i++) { in writeTagValue()
|
D | ExifData.java | 225 if (tag.getComponentCount() < 8) { in getUserComment() 229 byte[] buf = new byte[tag.getComponentCount()]; in getUserComment()
|
D | ExifTag.java | 197 return getComponentCount() * getElementSize(getDataType()); in getDataSize() 205 public int getComponentCount() { in getComponentCount() method in ExifTag
|
D | ExifInterface.java | 1438 return t.getComponentCount(); in getActualTagCount() 1700 int count = tag.getComponentCount(); in getTagDefinitionForTag()
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
D | GLView.java | 127 public int getComponentCount() { in getComponentCount() method in GLView 235 for (int i = 0, n = getComponentCount(); i < n; ++i) { in render() 332 for (int i = getComponentCount() - 1; i >= 0; --i) { in dispatchTouchEvent() 423 for (int i = 0, n = getComponentCount(); i < n; ++i) { in onVisibilityChanged() 433 for (int i = 0, n = getComponentCount(); i < n; ++i) { in onAttachToRoot() 439 for (int i = 0, n = getComponentCount(); i < n; ++i) { in onDetachFromRoot() 461 for (int i = 0, n = getComponentCount(); i < n; ++i) { in dumpTree()
|
/packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/ |
D | GLViewTest.java | 46 assertEquals(0, view.getComponentCount()); in testComponents() 58 assertEquals(2, view.getComponentCount()); in testComponents() 77 assertEquals(0, view.getComponentCount()); in testComponents() 296 for (int i = 0, n = getComponentCount(); i < n; ++i) { in onLayout()
|
D | GLViewMock.java | 64 for (int i = 0, n = getComponentCount(); i < n; ++i) { in onLayout() 76 for (int i = 0, n = getComponentCount(); i < n; ++i) { in onMeasure()
|