HomeSort by relevance Sort by last modified time
    Searched refs:getSize (Results 101 - 125 of 1391) sorted by null

1 2 3 45 6 7 8 91011>>

  /development/samples/browseable/Camera2Basic/src/com.example.android.camera2basic/
AutoFitTextureView.java 63 int width = MeasureSpec.getSize(widthMeasureSpec);
64 int height = MeasureSpec.getSize(heightMeasureSpec);
  /development/samples/browseable/Camera2Video/src/com.example.android.camera2video/
AutoFitTextureView.java 63 int width = MeasureSpec.getSize(widthMeasureSpec);
64 int height = MeasureSpec.getSize(heightMeasureSpec);
  /external/chromium_org/chrome/browser/chromeos/login/users/avatar/
user_image_manager_test_util.cc 32 const size_t size = first_bitmap->getSize();
33 if (second_bitmap->getSize() != size)
  /external/deqp/framework/common/
tcuResource.hpp 51 virtual int getSize (void) const = 0;
115 int getSize (void) const;
  /frameworks/av/media/libstagefright/include/
ThrottledSource.h 45 virtual status_t getSize(off64_t *size) {
46 return mSource->getSize(size);
  /frameworks/base/core/java/com/android/internal/widget/
PreferenceImageView.java 49 final int widthSize = MeasureSpec.getSize(widthMeasureSpec);
59 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
  /frameworks/native/include/binder/
IMemory.h 44 virtual size_t getSize() const = 0;
51 size_t virtualSize() const { return getSize(); }
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
CenteredLinearLayout.java 39 int parentWidth = MeasureSpec.getSize(widthMeasureSpec);
40 int parentHeight = MeasureSpec.getSize(heightMeasureSpec);
  /packages/apps/LegacyCamera/src/com/android/camera/
PreviewFrameLayout.java 64 int previewWidth = MeasureSpec.getSize(widthSpec);
65 int previewHeight = MeasureSpec.getSize(heightSpec);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
ControlPanelLayout.java 41 int widthSpecSize = MeasureSpec.getSize(widthSpec);
42 int heightSpecSize = MeasureSpec.getSize(heightSpec);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
SourceInterpreter.java 51 return new SourceValue(type == null ? 1 : type.getSize());
68 size = Type.getType(((FieldInsnNode) insn).desc).getSize();
77 return new SourceValue(value.getSize(), insn);
95 size = Type.getType(((FieldInsnNode) insn).desc).getSize();
150 size = Type.getReturnType(((MethodInsnNode) insn).desc).getSize();
  /external/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 221 if (RCA->getSize() < RCB->getSize()) {
229 unsigned MinSize = RCA->getSize();
237 if (!RC || RC->getSize() < MinSize)
246 if (BestRC && RC->getSize() >= BestRC->getSize())
255 if (BestRC->getSize() == MinSize)
  /frameworks/rs/cpu_ref/linkloader/include/impl/
ELFSymbol.hxx 102 PRINT_LINT("Size", getSize() );
116 setw(7) << getSize() <<
152 allocateSHNCommonData((size_t)getSize(), align);
178 (size_t)getSize()) != 0) {
183 (size_t)getSize());
188 memset(my_addr, '\0', getSize());
193 allocateSHNCommonData((size_t)getSize(), align);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
AbstractDirectory.java 178 public int getSize() {
271 if (getSize() == getCapacity()) {
281 if (getSize() + entries.length > getCapacity()) {
282 changeSize(getSize() + entries.length);
292 changeSize(getSize());
367 changeSize(getSize() - 1);
375 changeSize(getSize() + 1);
  /system/core/libutils/
BlobCache.cpp 112 size_t newTotalSize = mTotalSize + valueSize - oldValueBlob->getSize();
152 size_t valueBlobSize = valueBlob->getSize();
173 size += align4(sizeof(EntryHeader) + keyBlob->getSize() +
174 valueBlob->getSize());
198 size_t keySize = keyBlob->getSize();
199 size_t valueSize = valueBlob->getSize();
295 mTotalSize -= entry.getKey()->getSize() + entry.getValue()->getSize();
331 size_t BlobCache::Blob::getSize() const {
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebHistoryItemTest.java 94 assertEquals(0, list.getSize());
106 assertEquals(1, list.getSize());
118 assertEquals(2, list.getSize());
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
FreeBox.java 82 public long getSize() {
85 size += replacer.getSize();
108 data.position(l2i(box.getSize()));
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
CachedFrameManager.java 101 int frameSize = frame.getFormat().getSize();
125 mStorageSize -= frame.getFormat().getSize();
146 mStorageSize -= format.getSize();
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java 103 public long getSize() throws IOException {
114 if ((devOffset + toRead) > getSize()) throw new IOException(
133 if ((devOffset + toWrite) > getSize()) throw new IOException(
  /frameworks/base/libs/hwui/
Caches.cpp 270 textureCache.getSize(), textureCache.getMaxSize());
272 layerCache.getSize(), layerCache.getMaxSize(), layerCache.getCount());
277 renderBufferCache.getSize(), renderBufferCache.getMaxSize());
279 gradientCache.getSize(), gradientCache.getMaxSize());
281 pathCache.getSize(), pathCache.getMaxSize());
283 tessellationCache.getSize(), tessellationCache.getMaxSize());
284 log.appendFormat(" TextDropShadowCache %8d / %8d\n", dropShadowCache.getSize(),
287 patchCache.getSize(), patchCache.getMaxSize());
298 fboCache.getSize(), fboCache.getMaxSize());
301 total += textureCache.getSize();
    [all...]
  /cts/tests/tests/text/src/android/text/style/cts/
ReplacementSpanTest.java 48 public int getSize(Paint paint, CharSequence text, int start, int end,
  /dalvik/dx/src/com/android/dx/io/instructions/
FillArrayDataPayloadDecodedInstruction.java 88 public int getSize() {
  /external/chromium_org/third_party/angle/src/compiler/translator/
MMap.h 43 int getSize() { return fSize; }
  /external/chromium_org/third_party/skia/bench/
Benchmark.cpp 29 SkIPoint Benchmark::getSize() {
  /external/chromium_org/third_party/skia/src/animator/
SkTextToPath.cpp 45 realPaint.getTextPath(text->getText(), text->getSize(), text->x,

Completed in 1169 milliseconds

1 2 3 45 6 7 8 91011>>