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

123456

/external/webkit/JavaScriptCore/assembler/
H A DAssemblerBuffer.h47 , m_size(0)
59 if (m_size > m_capacity - space)
65 return !(m_size & (alignment - 1));
70 ASSERT(!(m_size > m_capacity - 4));
71 m_buffer[m_size] = value;
72 m_size++;
77 if (m_size > m_capacity - 4)
84 ASSERT(!(m_size > m_capacity - 4));
85 *reinterpret_cast<short*>(&m_buffer[m_size]) = value;
86 m_size
166 int m_size; member in class:JSC::AssemblerBuffer
[all...]
/external/webkit/JavaScriptCore/wtf/
H A DByteArray.h35 unsigned length() const { return m_size; }
39 if (index >= m_size)
50 if (index >= m_size)
57 if (index >= m_size)
65 ASSERT(index < m_size);
85 : m_size(size)
88 size_t m_size; member in namespace:WTF
H A DSegmentedVector.h108 : m_size(0)
118 size_t size() const { return m_size; }
140 ++m_size;
142 if (m_size <= SegmentSize) {
147 if (!segmentExistsFor(m_size - 1))
149 segmentFor(m_size - 1)->uncheckedAppend(value);
160 if (m_size <= SegmentSize)
163 segmentFor(m_size - 1)->removeLast();
164 --m_size;
169 ASSERT(size > m_size);
246 size_t m_size; member in class:WTF::SegmentedVector
[all...]
/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...]
/external/webkit/WebKit/chromium/public/
H A DWebVector.h78 initializeFrom(other.m_ptr, other.m_size);
115 size_t size() const { return m_size; }
116 bool isEmpty() const { return !m_size; }
127 std::swap(m_size, other.m_size);
133 m_size = size;
134 if (!m_size)
137 m_ptr = static_cast<T*>(::operator new(sizeof(T) * m_size));
138 for (size_t i = 0; i < m_size; ++i)
146 m_size
164 size_t m_size; member in class:WebKit::WebVector
[all...]
/external/webkit/WebCore/platform/image-decoders/qt/
H A DRGBA32BufferQt.cpp38 , m_size()
49 m_size = image.size();
74 m_size = other.m_size;
84 m_size = IntSize(newWidth, newHeight);
133 return m_size.width();
138 return m_size.height();
/external/webkit/JavaScriptCore/runtime/
H A DArgList.h54 m_size = 0;
60 , m_size(size)
75 m_size = size;
87 size_t size() const { return m_size; }
88 bool isEmpty() const { return !m_size; }
92 if (i < m_size)
101 m_size = 0;
112 if (m_isUsingInlineBuffer && m_size < inlineCapacity) {
114 ++m_size;
119 ++m_size;
149 size_t m_size; member in class:JSC::MarkedArgumentBuffer
[all...]
/external/webkit/WebCore/platform/graphics/chromium/
H A DFontPlatformDataChromiumWin.cpp46 , m_size(-1)
54 , m_size(0)
62 , m_size(size)
71 , m_size(size)
79 , m_size(data.m_size)
89 m_size = data.m_size;
H A DFontPlatformDataChromiumWin.h70 float size() const { return m_size; }
79 return m_font == other.m_font && m_size == other.m_size;
126 float m_size; // Point size of the font in pixels. member in class:WebCore::FontPlatformData
/external/webkit/WebCore/loader/
H A DTextDocument.cpp53 if ((m_dest - m_buffer) > m_size - len) {
55 int newSize = std::max(m_size * 2, m_size + len);
59 m_size = newSize;
69 int m_size; member in class:WebCore::TextTokenizer
80 m_size = 254;
81 m_buffer = static_cast<UChar*>(fastMalloc(sizeof(UChar) * m_size));
92 m_size = 254;
93 m_buffer = static_cast<UChar*>(fastMalloc(sizeof(UChar) * m_size));
/external/webkit/WebCore/html/canvas/
H A DWebGLActiveInfo.h43 int size() const { return m_size; }
49 , m_size(size)
57 int m_size; member in class:WebCore::WebGLActiveInfo
H A DWebGLByteArray.h56 if (index >= m_size)
70 if (index >= m_size)
84 ASSERT(index < m_size);
95 unsigned m_size;
H A DWebGLFloatArray.h53 if (index >= m_size)
63 if (index >= m_size)
76 ASSERT(index < m_size);
90 unsigned m_size;
H A DWebGLIntArray.h54 if (index >= m_size)
68 if (index >= m_size)
81 ASSERT(index < m_size);
92 unsigned m_size;
H A DWebGLShortArray.h53 if (index >= m_size)
67 if (index >= m_size)
80 ASSERT(index < m_size);
89 unsigned m_size;
H A DWebGLUnsignedByteArray.h54 if (index >= m_size)
68 if (index >= m_size)
81 ASSERT(index < m_size);
90 unsigned m_size;
H A DWebGLUnsignedIntArray.h54 if (index >= m_size)
68 if (index >= m_size)
81 ASSERT(index < m_size);
90 unsigned m_size;
H A DWebGLUnsignedShortArray.h54 if (index >= m_size)
68 if (index >= m_size)
82 ASSERT(index < m_size);
91 unsigned m_size;
/external/webkit/WebCore/platform/graphics/haiku/
H A DFontPlatformData.h56 float size() const { return m_size; }
70 float m_size; member in class:WebCore::FontPlatformData
H A DFloatRectHaiku.cpp39 , m_size(rect.Width() + 1, rect.Height() + 1)
/external/webkit/WebCore/platform/graphics/mac/
H A DFloatRectMac.mm34 FloatRect::FloatRect(const NSRect& r) : m_location(r.origin), m_size(r.size)
/external/webkit/WebCore/platform/
H A DSharedBuffer.cpp60 : m_size(0)
65 : m_size(0)
71 : m_size(0)
85 buffer->m_size = buffer->m_buffer.size();
105 return m_size;
125 unsigned positionInSegment = offsetInSegment(m_size - m_buffer.size());
126 m_size += length;
128 if (m_size <= segmentSize) {
165 m_size = 0;
179 clone->m_size
[all...]
/external/webkit/WebCore/platform/graphics/
H A DGeneratedImage.h48 virtual void setContainerSize(const IntSize& size) { m_size = size; }
53 virtual IntSize size() const { return m_size; }
66 , m_size(size)
71 IntSize m_size; member in class:WebCore::GeneratedImage
/external/webkit/WebCore/platform/graphics/cg/
H A DFloatRectCG.cpp36 FloatRect::FloatRect(const CGRect& r) : m_location(r.origin), m_size(r.size)
/external/webkit/WebCore/platform/graphics/gtk/
H A DIntRectGtk.cpp29 , m_size(r.width, r.height)

Completed in 214 milliseconds

123456