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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 71 if (getFormat().getBaseType() != FrameFormat.TYPE_OBJECT) {
76 Class structClass = getFormat().getObjectClass();
111 if (ints.length * nativeIntSize() > getFormat().getSize()) {
114 (getFormat().getSize() / nativeIntSize()) + " integers).");
122 return getNativeInts(getFormat().getSize());
128 if (floats.length * nativeFloatSize() > getFormat().getSize()) {
131 (getFormat().getSize() / nativeFloatSize()) + " floats).");
139 return getNativeFloats(getFormat().getSize());
152 } else if (getFormat().getSize() != length) {
154 "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 44 * @see java.security.spec.EncodedKeySpec#getFormat()
46 public String getFormat() {
  /libcore/luni/src/test/java/libcore/java/security/
MockPrivateKey.java 32 public String getFormat() {
MockPrivateKey2.java 32 public String getFormat() {
MockPublicKey.java 32 public String getFormat() {
  /libcore/luni/src/test/java/libcore/javax/crypto/
MockKey.java 32 public String getFormat() {
MockKey2.java 32 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() {
  /external/deqp/framework/opengl/
gluPixelTransfer.cpp 54 TCU_CHECK_INTERNAL(dst.getRowPitch() == dst.getFormat().getPixelSize()*dst.getWidth());
58 TransferFormat format = getTransferFormat(dst.getFormat());
60 gl.pixelStorei(GL_PACK_ALIGNMENT, getTransferAlignment(dst.getFormat()));
73 TCU_CHECK_INTERNAL(src.getRowPitch() == src.getFormat().getPixelSize()*src.getWidth());
77 TransferFormat format = getTransferFormat(src.getFormat());
79 gl.pixelStorei(GL_UNPACK_ALIGNMENT, getTransferAlignment(src.getFormat()));
91 TCU_CHECK_INTERNAL(src.getRowPitch() == src.getFormat().getPixelSize()*src.getWidth());
97 TransferFormat format = getTransferFormat(src.getFormat());
99 gl.pixelStorei(GL_UNPACK_ALIGNMENT, getTransferAlignment(src.getFormat()));
112 TCU_CHECK_INTERNAL(src.getRowPitch() == src.getFormat().getPixelSize()*src.getWidth())
    [all...]
  /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/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
BuilderInstruction.java 48 Preconditions.checkFormat(opcode, getFormat());
56 public abstract Format getFormat();
59 return getFormat().size / 2;
  /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/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
BitmapEncoder.java 25 bitmap.compress(getFormat(bitmap), quality, os);
34 private Bitmap.CompressFormat getFormat(Bitmap bitmap) {
  /frameworks/av/media/libstagefright/timedtext/
TimedTextSource.cpp 38 CHECK(mediaSource->getFormat()->findCString(kKeyMIMEType, &mime));
62 sp<MetaData> TimedTextSource::getFormat() {
  /frameworks/base/media/mca/effect/java/android/media/effect/
SizeChangeEffect.java 47 int outputWidth = resultFrame.getFormat().getWidth();
48 int outputHeight = resultFrame.getFormat().getHeight();

Completed in 478 milliseconds

1 2 3 4 5 6 7 8 91011>>