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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/java/android/media/
DataSource.java 42 public long getSize();
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 40 int capacity = format.getSize();
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 " +
165 byte[] data = getNativeData(getFormat().getSize());
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
CombinerHeightMap.java 92 if (map1.getSize() != map2.getSize()) {
102 this.size = map1.getSize();
143 if (map1.getSize() != map2.getSize()) {
156 this.size = map1.getSize();
202 if (map1.getSize() != map2.getSize()) {
207 this.size = map1.getSize();
HeightMap.java 75 * <code>getSize</code> returns the size of one side the height map. Where
80 int getSize();
  /external/llvm/unittests/Support/
ArrayRecyclerTest.cpp 28 EXPECT_LT(0u, Cap.getSize());
30 size_t PrevSize = Cap.getSize();
33 EXPECT_LE(N, Cap.getSize());
35 EXPECT_EQ(PrevSize, Cap.getSize());
37 EXPECT_LT(PrevSize, Cap.getSize());
38 PrevSize = Cap.getSize();
43 PrevSize = Cap.getSize();
46 EXPECT_LT(PrevSize, Cap.getSize());
47 PrevSize = Cap.getSize();
  /frameworks/webview/chromium/java/com/android/webview/chromium/
WebBackForwardListChromium.java 49 if (getSize() == 0) {
69 if (index < 0 || index >= getSize()) {
77 * See {@link android.webkit.WebBackForwardList#getSize}.
80 public synchronized int getSize() {
97 new ArrayList<WebHistoryItemChromium>(getSize());
98 for (int i = 0; i < getSize(); ++i) {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
Instruction.java 43 public int getSize(int codeAddress) {
58 return currentCodeAddress + getSize(currentCodeAddress);
62 out.annotate(getSize(currentCodeAddress)*2, "[0x" + Integer.toHexString(currentCodeAddress) + "] " +
  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionProgBits.h 71 AR.prologue(sh->getSize());
72 AR.readBytes(chunk.getBuffer(), sh->getSize());
73 AR.epilogue(sh->getSize());
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ExtensionProfileLevelDescriptor.java 37 if (getSize() > 0) {
38 bytes = new byte[getSize()];
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
UnresolvedOdexInstruction.java 55 public int getSize(int codeAddress) {
56 return OriginalInstruction.getSize(codeAddress);
  /external/chromium/webkit/glue/
webthemeengine_impl_linux.h 15 virtual WebKit::WebSize getSize(WebKit::WebThemeEngine::Part);
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
BufferStorage.h 27 virtual unsigned int getSize() const = 0;
BufferStorage9.h 28 virtual unsigned int getSize() const;
  /external/chromium_org/webkit/child/
webthemeengine_impl_android.h 15 virtual WebKit::WebSize getSize(WebKit::WebThemeEngine::Part);
webthemeengine_impl_default.h 15 virtual WebKit::WebSize getSize(WebKit::WebThemeEngine::Part);
  /external/replicaisland/src/com/replica/replicaisland/
HitPointPool.java 23 final int size = getSize();
  /frameworks/base/core/java/android/webkit/
WebBackForwardList.java 65 public synchronized int getSize() {
  /frameworks/base/libs/androidfw/
ZipUtils.cpp 93 unsigned long getSize;
97 getSize = (compRemaining > kReadBufSize) ?
100 getSize, compRemaining);
102 int cc = TEMP_FAILURE_RETRY(read(fd, readBuf, getSize));
105 } else if (cc != (int) getSize) {
106 ALOGW("inflate read failed (%d vs %ld)", cc, getSize);
110 compRemaining -= getSize;
113 zstream.avail_in = getSize;
206 unsigned long getSize;
210 getSize = (compRemaining > kReadBufSize)
    [all...]
  /frameworks/base/libs/hwui/
FboCache.h 64 uint32_t getSize();
  /frameworks/rs/cpu_ref/linkloader/include/impl/
ELFSectionStrTab.hxx 34 st->buf.resize(sh->getSize());
40 AR.prologue(sh->getSize());
41 AR.readBytes(&*st->buf.begin(), sh->getSize());
42 AR.epilogue(sh->getSize());
  /libcore/luni/src/main/java/java/nio/
MappedByteBuffer.java 56 long size = block.getSize();
88 Libcore.os.mlock(block.toLong(), block.getSize());
89 Libcore.os.munlock(block.toLong(), block.getSize());
107 Libcore.os.msync(block.toLong(), block.getSize(), MS_SYNC);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileInfo.java 34 public long getSize() {
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
BlockDevice.java 39 public abstract long getSize() throws IOException;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowFrameLayout.java 26 int width = MeasureSpec.getSize(widthMeasureSpec);
27 int height = MeasureSpec.getSize(heightMeasureSpec);
ShadowViewMeasureSpec.java 25 public static int getSize (int measureSpec) {
37 int size = getSize(measureSpec);

Completed in 4257 milliseconds

1 2 3 4 5 6 7 8 91011>>