Searched defs:getSize (Results 51 - 75 of 199) sorted by relevance

12345678

/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DResource.java27 public abstract int getSize(); method in class:Resource
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DLruCache.java8 * have a size of one. Subclasses can override {@link #getSize(Object)}} to change the size on a per item basis.
32 protected int getSize(Y item) { method in class:LruCache
51 final int itemSize = getSize(item);
59 currentSize += getSize(item);
68 currentSize -= getSize(value);
82 currentSize -= getSize(toRemove);
/external/llvm/include/llvm/Support/
H A DArrayRecycler.h83 size_t getSize() const { return size_t(1u) << Index; } function in class:llvm::ArrayRecycler::Capacity
129 return static_cast<T*>(Allocator.Allocate(sizeof(T)*Cap.getSize(), Align));
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DAnnotationWriter.java242 int getSize() { method in class:AnnotationWriter
294 size += panns[i] == null ? 0 : panns[i].getSize();
H A DAttribute.java201 final int getSize( method in class:Attribute
H A DFieldWriter.java175 int getSize() { method in class:FieldWriter
197 size += 8 + anns.getSize();
201 size += 8 + ianns.getSize();
204 size += attrs.getSize(cw, null, 0, -1, -1);
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DBasicValue.java67 public int getSize() { method in class:BasicValue
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DIsoFile.java147 public long getSize() { method in class:IsoFile
150 size += box.getSize();
184 assert size == box.getSize();
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DFreeBox.java82 public long getSize() { method in class:FreeBox
85 size += replacer.getSize();
108 data.position(l2i(box.getSize()));
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
H A DFontTableBox.java27 size += fontRecord.getSize();
83 public int getSize() { method in class:FontTableBox.FontRecord
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRuleListController.java79 if(model.getSize() > 0) list.setSelectedIndex(0);
149 public int getSize() { method in class:RuleListController.RuleListModel
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DBuffer11.h61 virtual size_t getSize() const { return mSize; } function in class:rx::Buffer11
/external/chromium_org/third_party/icu/source/common/
H A Dresbund.cpp285 int32_t ResourceBundle::getSize(void) const { function in class:ResourceBundle
/external/chromium_org/third_party/skia/debugger/
H A DSkDebugger.h69 int getSize() { function in class:SkDebugger
70 return fDebugCanvas->getSize();
/external/chromium_org/third_party/skia/include/core/
H A DSkFont.h131 SkScalar getSize() const { return fSize; } function in class:SkFont
/external/chromium_org/third_party/skia/include/utils/
H A DSkLayer.h34 const SkSize& getSize() const { return m_size; } function in class:SkLayer
/external/chromium_org/third_party/skia/src/gpu/gl/debug/
H A DGrBufferObj.h52 GrGLsizeiptr getSize() const { return fSize; } function in class:GrBufferObj
/external/clang/include/clang/AST/
H A DRecordLayout.h173 /// getSize - Get the record size in characters.
174 CharUnits getSize() const { return Size; } function in class:clang::ASTRecordLayout
/external/deqp/executor/
H A DxeBatchResult.hpp58 int getSize (void) const { return (int)m_data.size(); } function in class:xe::InfoLog
/external/deqp/framework/opengl/
H A DgluTexture.hpp273 size_t getSize (void) const { return m_size; } function in class:glu::TextureBuffer
/external/deqp/framework/platform/raspi/
H A DtcuRaspiPlatform.cpp75 IVec2 getSize (void) const;
168 IVec2 Window::getSize (void) const function in class:tcu::rpi::Window
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DLineGraph.java46 Point getSize(GC g) { method in class:LineGraph.GraphItem
95 int right= bounds.width - lastItem.getSize(g).x - PADDING/2;
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DAttributeStrategy.java42 public int getSize(Bitmap bitmap) { method in class:AttributeStrategy
43 return Util.getSize(bitmap);
H A DSizeStrategy.java31 final int size = getSize(width, height, config);
76 return getBitmapString(getSize(width, height, config));
80 public int getSize(Bitmap bitmap) { method in class:SizeStrategy
106 private static int getSize(int width, int height, Bitmap.Config config) { method in class:SizeStrategy
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DViewTarget.java51 public void getSize(SizeReadyCallback cb) { method in class:ViewTarget
52 sizeDeterminer.getSize(cb);
124 public void getSize(SizeReadyCallback cb) { method in class:ViewTarget.SizeDeterminer

Completed in 412 milliseconds

12345678