Searched defs:m_size (Results 1 - 25 of 61) sorted by relevance

123

/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
/external/webkit/WebCore/history/
H A DPageCache.h53 int pageCount() const { return m_size; }
72 int m_size; member in class:WebCore::PageCache
/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
/external/webkit/WebCore/platform/
H A DSharedBuffer.h134 unsigned m_size; member in class:WebCore::SharedBuffer
/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
/external/webkit/WebKit/chromium/src/
H A DWebPopupMenuImpl.h66 virtual WebSize size() { return m_size; }
117 WebSize m_size; member in class:WebKit::WebPopupMenuImpl
/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 DIntObjectMap.java81 return m_size;
127 if (m_size == 0)
131 final int [] result = new int [m_size];
187 if (m_size >= m_sizeThreshold) rehash ();
195 ++ m_size;
211 out.append ("size = " + m_size + ", bucket table size = " + m_buckets.length + ", load factor = " + m_loadFactor + EOL);
281 private int m_size; // number of keys in the table, not cleared as of last check field in class:IntObjectMap
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
H A DObjectIntMap.java83 return m_size;
138 final Object [] result = new Object [m_size];
191 if (m_size >= m_sizeThreshold) rehash ();
199 ++ m_size;
229 -- m_size;
249 out.append ("size = " + m_size + ", bucket table size = " + m_buckets.length + ", load factor = " + m_loadFactor + EOL);
319 private int m_size; // number of keys in the table, not cleared as of last check field in class:ObjectIntMap
H A DIntIntMap.java81 return m_size;
148 final int [] result = new int [m_size];
198 if (m_size >= m_sizeThreshold) rehash ();
206 ++ m_size;
233 -- m_size;
253 out.append ("size = " + m_size + ", bucket table size = " + m_buckets.length + ", load factor = " + m_loadFactor + EOL);
323 private int m_size; // number of keys in the table, not cleared as of last check field in class:IntIntMap
/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
H A DImageBuffer.h72 const IntSize& size() const { return m_size; }
91 AffineTransform baseTransform() const { return AffineTransform(1, 0, 0, -1, 0, m_size.height()); }
96 IntSize m_size; member in class:WebCore::ImageBuffer
/external/webkit/WebCore/platform/graphics/chromium/
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/platform/mac/
H A DPurgeableBufferMac.cpp41 , m_size(size)
49 vm_deallocate(mach_task_self(), reinterpret_cast<vm_address_t>(m_data), m_size); local
/external/webkit/JavaScriptCore/assembler/
H A DMacroAssemblerCodeRef.h174 : m_size(0)
181 , m_size(size)
187 size_t m_size; member in class:JSC::MacroAssemblerCodeRef
H A DRepatchBuffer.h52 m_size = code.size();
54 ExecutableAllocator::makeWritable(m_start, m_size);
59 ExecutableAllocator::makeExecutable(m_start, m_size);
129 size_t m_size; member in class:JSC::RepatchBuffer
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/WebCore/html/
H A DHTMLCanvasElement.h65 int width() const { return m_size.width(); }
66 int height() const { return m_size.height(); }
74 const IntSize& size() const { return m_size; }
77 if (size == m_size)
128 IntSize m_size; member in class:WebCore::HTMLCanvasElement
/external/webkit/WebCore/platform/graphics/gtk/
H A DFontPlatformData.h86 float size() const { return m_size; }
128 float m_size; member in class:WebCore::FontPlatformData
/external/webkit/WebCore/platform/graphics/mac/
H A DFontPlatformData.h59 , m_size(size)
73 , m_size(size)
86 float size() const { return m_size; }
94 float m_size; member in struct:WebCore::FontPlatformData
108 m_cgFont == other.m_cgFont && m_size == other.m_size && m_atsuFontID == other.m_atsuFontID;
/external/webkit/WebCore/platform/image-decoders/ico/
H A DICOImageDecoder.h63 IntSize m_size; member in struct:WebCore::ICOImageDecoder::IconDirectoryEntry
/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/emma/core/java12/com/vladium/jcd/cls/
H A DConstantCollection.java79 return m_size;
173 ++ m_size;
178 ++ m_size;
278 final ObjectIntMap index = new ObjectIntMap (m_size);
299 private int m_size; field in class:ConstantCollection
/external/skia/include/utils/
H A DSkLayer.h39 const SkSize& getSize() const { return m_size; }
45 SkScalar getWidth() const { return m_size.width(); }
46 SkScalar getHeight() const { return m_size.height(); }
50 void setSize(SkScalar w, SkScalar h) { m_size.set(w, h); }
123 SkSize m_size; member in class:SkLayer

Completed in 501 milliseconds

123