Searched refs:m_size (Results 1 - 25 of 114) sorted by relevance

12345

/external/emma/core/java12/com/vladium/util/
H A DIntVector.java34 if (index > m_size - 1)
35 throw new IndexOutOfBoundsException ("get[" + index + "] on vector of size " + m_size);
42 if (m_size == 0)
46 final int size = m_size;
64 return m_size;
79 if (m_size < COPY_THRESHOLD)
83 for (int i = 0; i < m_size; ++ i) _clone_values [i] = m_values [i];
100 final StringBuffer s = new StringBuffer (super.toString() + ", size " + m_size + ": ");
101 for (int i = 0; i < m_size; ++ i)
114 if (index > m_size
152 private int m_size; field in class:IntVector
[all...]
H A DIntSet.java79 return m_size;
100 if (m_size == 0)
104 final int [] result = new int [m_size];
121 if (m_size != 0)
159 if (m_size >= m_sizeThreshold) rehash ();
167 ++ m_size;
185 out.append ("size = " + m_size + ", bucket table size = " + m_buckets.length + ", load factor = " + m_loadFactor + EOL);
253 private int m_size; // number of keys in the table, not cleared as of last check field in class:IntSet
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebVector.h84 initializeFrom(other.m_ptr, other.m_size);
121 size_t size() const { return m_size; }
122 bool isEmpty() const { return !m_size; }
126 BLINK_ASSERT(i < m_size);
131 BLINK_ASSERT(i < m_size);
137 for (size_t i = 0; i < m_size; i++) {
150 std::swap(m_size, other.m_size);
156 m_size = size;
157 if (!m_size)
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DImageData.h45 IntSize size() const { return m_size; }
46 int width() const { return m_size.width(); }
47 int height() const { return m_size.height(); }
54 IntSize m_size; member in class:WebCore::ImageData
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStreamBuffer.h44 : m_size(0)
60 m_size += size;
75 ASSERT(m_size >= size);
76 if (!m_size)
82 m_size -= size;
89 size_t size() const { return m_size; }
93 if (!m_size)
101 if (!m_size)
108 size_t m_size; member in class:WTF::StreamBuffer
H A DLinkedStack.h43 LinkedStack() : m_size(0) { }
67 size_t m_size; member in class:WTF::LinkedStack
87 ++m_size;
99 ASSERT(m_head && m_size);
101 --m_size;
107 return m_size;
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLParserInput.h44 , m_size(0)
55 m_size = m_source.length() * sizeof(LChar);
59 m_size = m_source.length() * sizeof(UChar);
65 int size() const { return m_size; }
71 int m_size; member in class:WebCore::XMLParserInput
/external/eigen/Eigen/src/SparseCore/
H A DCompressedStorage.h36 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
40 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
46 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
54 memcpy(m_values, other.m_values, m_size * sizeof(Scalar));
55 memcpy(m_indices, other.m_indices, m_size * sizeof(Index));
63 std::swap(m_size, other.m_size);
75 size_t newAllocatedSize = m_size + size;
82 if (m_allocatedSize>m_size)
83 reallocate(m_size);
224 size_t m_size; member in class:Eigen::internal::CompressedStorage
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatRect.h59 : m_location(location), m_size(size) { }
61 : m_location(FloatPoint(x, y)), m_size(FloatSize(width, height)) { }
69 FloatSize size() const { return m_size; }
72 void setSize(const FloatSize& size) { m_size = size; }
78 float width() const { return m_size.width(); }
79 float height() const { return m_size.height(); }
83 void setWidth(float width) { m_size.setWidth(width); }
84 void setHeight(float height) { m_size.setHeight(height); }
86 bool isEmpty() const { return m_size.isEmpty(); }
87 bool isZero() const { return m_size
180 FloatSize m_size; member in class:WebCore::FloatRect
[all...]
H A DLayoutRect.h47 : m_location(location), m_size(size) { }
49 : m_location(LayoutPoint(x, y)), m_size(LayoutSize(width, height)) { }
51 : m_location(location), m_size(size) { }
52 LayoutRect(const IntRect& rect) : m_location(rect.location()), m_size(rect.size()) { }
57 LayoutSize size() const { return m_size; }
60 IntSize pixelSnappedSize() const { return IntSize(snapSizeToPixel(m_size.width(), m_location.x()), snapSizeToPixel(m_size.height(), m_location.y())); }
63 void setSize(const LayoutSize& size) { m_size = size; }
69 LayoutUnit width() const { return m_size.width(); }
70 LayoutUnit height() const { return m_size
174 LayoutSize m_size; member in class:WebCore::LayoutRect
[all...]
H A DIntRect.h56 : m_location(location), m_size(size) { }
58 : m_location(IntPoint(x, y)), m_size(IntSize(width, height)) { }
64 IntSize size() const { return m_size; }
67 void setSize(const IntSize& size) { m_size = size; }
73 int width() const { return m_size.width(); }
74 int height() const { return m_size.height(); }
78 void setWidth(int width) { m_size.setWidth(width); }
79 void setHeight(int height) { m_size.setHeight(height); }
81 bool isEmpty() const { return m_size.isEmpty(); }
91 void expand(const IntSize& size) { m_size
167 IntSize m_size; member in class:WebCore::IntRect
[all...]
H A DIntRect.cpp39 , m_size(clampToInteger(r.width()), clampToInteger(r.height()))
45 , m_size(r.width(), r.height())
80 m_size.setWidth(right - left);
81 m_size.setHeight(bottom - top);
101 m_size.setWidth(right - left);
102 m_size.setHeight(bottom - top);
122 m_size.setWidth(right - left);
123 m_size.setHeight(bottom - top);
130 m_size.setWidth((int)(width() * s));
131 m_size
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontPlatformData.cpp41 , m_size(0)
58 , m_size(0)
75 , m_size(size)
93 , m_size(size)
108 , m_size(source.m_size)
128 m_size = other.m_size;
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DBlobBuilder.cpp48 : m_size(0)
74 m_size += buffer.size() - oldSize;
105 m_size += snapshotSize;
112 m_size += blobSize;
122 m_size += buffer.size() - oldSize;
131 RefPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), m_size));
135 m_items.append(BlobDataItem(blob->blobDataHandle(), 0, m_size));
146 RefPtr<File> file = File::create(fileName, modificationTime, BlobDataHandle::create(blobData.release(), m_size));
150 m_items.append(BlobDataItem(file->blobDataHandle(), 0, m_size));
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLActiveInfo.h45 GC3Dint size() const { return m_size; }
51 , m_size(size)
60 GC3Dint m_size; member in class:WebCore::WebGLActiveInfo
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGeneratedImage.h39 virtual void setContainerSize(const IntSize& size) OVERRIDE { m_size = size; }
45 virtual IntSize size() const OVERRIDE { return m_size; }
60 IntSize m_size; member in class:WebCore::GeneratedImage
H A DImageBufferSurface.h66 const IntSize& size() const { return m_size; }
73 , m_size(size)
78 IntSize m_size; member in class:WebCore::ImageBufferSurface
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPurgeableBuffer.h48 size_t size() const { return m_size; }
66 size_t m_size; member in class:WebCore::PurgeableBuffer
H A DSharedBuffer.cpp145 : m_size(0)
153 : m_size(size)
162 : m_size(0)
176 : m_size(0)
202 buffer->m_size = buffer->m_buffer.size();
219 return m_size;
227 m_purgeableBuffer = PurgeableBuffer::create(buffer().data(), m_size);
249 if (m_size == bufferSize) {
255 result.reserveCapacity(m_size);
263 ASSERT(result.size() == m_size);
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/mac/
H A DFloatRectMac.mm34 FloatRect::FloatRect(const NSRect& r) : m_location(r.origin), m_size(r.size)
/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
H A DFloatRectCG.cpp34 FloatRect::FloatRect(const CGRect& r) : m_location(r.origin), m_size(r.size)
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2RTFDTM.java141 m_emptyNodeCount = m_size;
231 m_currentDocumentNode=m_size;
285 mark_size.push(m_size);
328 m_size=top ? m_emptyNodeCount : mark_size.pop();
329 m_exptype.setSize(m_size);
330 m_firstch.setSize(m_size);
331 m_nextsib.setSize(m_size);
332 m_prevsib.setSize(m_size);
333 m_parent.setSize(m_size);
353 return m_size
[all...]
/external/chromium_org/third_party/skia/include/utils/
H A DSkLayer.h34 const SkSize& getSize() const { return m_size; }
40 SkScalar getWidth() const { return m_size.width(); }
41 SkScalar getHeight() const { return m_size.height(); }
45 void setSize(SkScalar w, SkScalar h) { m_size.set(w, h); }
118 SkSize m_size; member in class:SkLayer
/external/skia/include/utils/
H A DSkLayer.h34 const SkSize& getSize() const { return m_size; }
40 SkScalar getWidth() const { return m_size.width(); }
41 SkScalar getHeight() const { return m_size.height(); }
45 void setSize(SkScalar w, SkScalar h) { m_size.set(w, h); }
118 SkSize m_size; member in class:SkLayer
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DDragImageTest.cpp60 , m_size(size)
70 return m_size;
75 if (m_size.isZero())
97 IntSize m_size; member in class:__anon11230::TestImage

Completed in 1119 milliseconds

12345