HomeSort by relevance Sort by last modified time
    Searched refs:getFormat (Results 1 - 25 of 538) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 73 if (getFormat().getBaseType() != FrameFormat.TYPE_OBJECT) {
78 Class structClass = getFormat().getObjectClass();
113 if (ints.length * nativeIntSize() > getFormat().getSize()) {
116 (getFormat().getSize() / nativeIntSize()) + " integers).");
124 return getNativeInts(getFormat().getSize());
130 if (floats.length * nativeFloatSize() > getFormat().getSize()) {
133 (getFormat().getSize() / nativeFloatSize()) + " floats).");
141 return getNativeFloats(getFormat().getSize());
154 } else if (getFormat().getSize() != length) {
156 "Frame size is " + getFormat().getSize() + " bytes, but "
    [all...]
GLFrame.java 79 FrameFormat format = getFormat();
87 } else if (getFormat().getSize() < 0) {
120 if (!nativeAllocate(mGLEnvironment, getFormat().getWidth(), getFormat().getHeight())) {
127 int width = getFormat().getWidth();
128 int height = getFormat().getHeight();
137 int width = getFormat().getWidth();
138 int height = getFormat().getHeight();
211 if (getFormat().getSize() != bytes.length) {
229 if (getFormat().getWidth() != bitmap.getWidth() |
    [all...]
  /libcore/luni/src/main/java/java/security/
Key.java 51 public String getFormat();
  /libcore/luni/src/main/java/java/security/spec/
PKCS8EncodedKeySpec.java 54 public final String getFormat() {
X509EncodedKeySpec.java 53 public final String getFormat() {
EncodedKeySpec.java 62 public abstract String getFormat();
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/spec/
MyEncodedKeySpec.java 42 * @see java.security.spec.EncodedKeySpec#getFormat()
44 public String getFormat() {
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/spec/
MyEncodedKeySpec.java 43 * @see java.security.spec.EncodedKeySpec#getFormat()
45 public String getFormat() {
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
FixedSizeInsn.java 52 return getOpcode().getFormat().codeSize();
58 getOpcode().getFormat().writeTo(out, this);
70 return getOpcode().getFormat().listingString(this, noteIndices);
  /dalvik/dx/src/com/android/dx/dex/code/
FixedSizeInsn.java 53 return getOpcode().getFormat().codeSize();
59 getOpcode().getFormat().writeTo(out, this);
71 return getOpcode().getFormat().listingString(this, noteIndices);
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
FixedSizeInsn.java 53 return getOpcode().getFormat().codeSize();
59 getOpcode().getFormat().writeTo(out, this);
71 return getOpcode().getFormat().listingString(this, noteIndices);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
RepeatedSecretKeySpec.java 25 public String getFormat()
  /external/skia/include/effects/
SkStippleMaskFilter.h 25 // getFormat is from SkMaskFilter
26 virtual SkMask::Format getFormat() const SK_OVERRIDE {
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
SecretKeyTest.java 50 public String getFormat() {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyTest.java 48 public String getFormat() {
PrivateKeyTest.java 49 public String getFormat() {
PublicKeyTest.java 48 public String getFormat() {
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
ImageFlipper.java 49 if (img.getFormat().isCompressed())
58 int bpp = img.getFormat().getBitsPerPixel() / 8;
  /frameworks/av/media/libstagefright/timedtext/
TimedTextSource.cpp 38 CHECK(mediaSource->getFormat()->findCString(kKeyMIMEType, &mime));
62 sp<MetaData> TimedTextSource::getFormat() {
  /dalvik/dx/src/com/android/dx/io/instructions/
ZeroRegisterDecodedInstruction.java 41 getFormat(), getOpcode(), newIndex, getIndexType(),
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
SecretKeyTest.java 58 public String getFormat() {
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyTest.java 57 public String getFormat() {
PrivateKeyTest.java 58 public String getFormat() {
PublicKeyTest.java 58 public String getFormat() {
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
KeyPairTest.java 82 assertEquals("PublicKey format", key1.getFormat(), key2.getFormat());
93 assertEquals("PrivateKey format", key1.getFormat(), key2.getFormat());

Completed in 1658 milliseconds

1 2 3 4 5 6 7 8 91011>>