HomeSort by relevance Sort by last modified time
    Searched refs:m_size (Results 201 - 225 of 398) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebKit2/UIProcess/
BackingStore.h 56 const WebCore::IntSize& size() const { return m_size; }
73 WebCore::IntSize m_size; member in class:WebKit::BackingStore
DrawingAreaProxy.h 92 const WebCore::IntSize& size() const { return m_size; }
101 WebCore::IntSize m_size; member in class:WebKit::DrawingAreaProxy
  /external/webkit/Source/WebCore/platform/graphics/cocoa/
FontPlatformDataCocoa.mm 54 , m_size(size)
133 m_size = [font pointSize];
137 loadFont(m_font, m_size, loadedFont, cgFont);
196 m_CTFont.adoptCF(CTFontCreateWithGraphicsFont(m_cgFont.get(), m_size, 0, 0));
203 RetainPtr<CTFontRef> sourceFont(AdoptCF, CTFontCreateWithGraphicsFont(m_cgFont.get(), m_size, 0, 0));
208 RetainPtr<CTFontRef> newFont(AdoptCF, CTFontCreateWithFontDescriptor(newDescriptor.get(), m_size, 0));
219 return String(cgFontDescription.get()) + " " + String::number(m_size)
  /external/webkit/Source/JavaScriptCore/assembler/
LinkBuffer.h 76 , m_size(0)
171 return CodeRef(m_code, m_executablePool, m_size);
215 m_size = m_assembler->size();
275 m_size = writePtr + m_assembler->size() - readPtr;
276 m_executablePool->tryShrink(m_code, initialSize, m_size);
279 dumpLinkStatistics(m_code, initialSize, m_size);
282 dumpCode(m_code, m_size);
294 ExecutableAllocator::makeExecutable(code(), m_size); local
295 ExecutableAllocator::cacheFlush(code(), m_size); local
346 size_t m_size; member in class:JSC::LinkBuffer
    [all...]
MacroAssemblerCodeRef.h 204 : m_size(0)
211 , m_size(size)
217 size_t m_size; member in class:JSC::MacroAssemblerCodeRef
  /external/webkit/Source/JavaScriptCore/wtf/
Vector.h 506 : m_size(0)
511 : m_size(size)
520 if (m_size) shrink(0);
531 size_t size() const { return m_size; }
554 iterator end() { return begin() + m_size; }
556 const_iterator end() const { return begin() + m_size; }
602 : m_size(size)
618 std::swap(m_size, other.m_size);
631 size_t m_size;
    [all...]
  /external/emma/core/java12/com/vladium/util/
SoftValueMap.java 131 return m_size;
143 return m_size == 0;
278 if (m_size >= m_sizeThreshold) rehash ();
287 ++ m_size;
334 -- m_size;
367 m_size = 0;
415 out.append ("size = " + m_size + ", bucket table size = " + m_buckets.length + ", load factor = " + m_loadFactor + EOL);
529 if (m_size > newSize) System.out.println ("DEBUG: rehash() cleared " + (m_size - newSize) + " values, new size = " + newSize);
532 m_size = newSize
605 private int m_size; \/\/ number of values in the table, not cleared as of last check field in class:SoftValueMap
    [all...]
IntIntMap.java 81 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
ObjectIntMap.java 83 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
  /external/skia/src/utils/
SkLayer.cpp 16 m_size.set(0, 0);
33 m_size = src.m_size;
137 SkScalar tx = SkScalarMul(m_anchorPoint.fX, m_size.width());
138 SkScalar ty = SkScalarMul(m_anchorPoint.fY, m_size.height());
177 this, opacity * this->getOpacity(), m_size.width(), m_size.height(),
  /external/webkit/Source/WebCore/platform/graphics/android/
Layer.cpp 17 m_size.set(0, 0);
37 m_size = src.m_size;
122 SkScalar tx = SkScalarMul(m_anchorPoint.fX, m_size.width());
123 SkScalar ty = SkScalarMul(m_anchorPoint.fY, m_size.height());
173 this, opacity * getOpacity(), m_size.width(), m_size.height(),
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.cpp 171 memset(m_bytes, 0, m_size.width() * m_size.height() * sizeof(PixelData));
190 m_size = other.m_size;
201 m_size = IntSize(newWidth, newHeight);
232 return m_size.width();
237 return m_size.height();
  /external/webkit/Source/WebCore/platform/graphics/
FontPlatformData.h 115 , m_size(0)
139 , m_size(0)
164 , m_size(size)
191 , m_size(size)
237 float size() const { return m_size; }
238 void setSize(float size) { m_size = size; }
272 && m_size == other.m_size
323 float m_size; member in class:WebCore::FontPlatformData
  /external/webkit/Source/WebCore/dom/
InputElement.h 128 int size() const { return m_size; }
129 void setSize(int value) { m_size = value; }
153 int m_size; member in class:WebCore::InputElementData
SelectElement.h 121 int size() const { return m_size; }
122 void setSize(int value) { m_size = value; }
129 return !m_multiple && m_size <= 1;
172 int m_size; member in class:WebCore::SelectElementData
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
GLESpointer.h 47 GLint m_size; member in class:GLESpointer
  /external/freetype/src/autofit/
aftypes.h 318 #define AF_DEFINE_SCRIPT_CLASS( script_class, script_, ranges, m_size, \
326 m_size, \
342 #define AF_DEFINE_SCRIPT_CLASS( script_class, script_, ranges, m_size, \
350 ac->script_metrics_size = m_size; \
  /external/webkit/Source/JavaScriptCore/heap/
ConservativeRoots.cpp 40 memcpy(newRoots, m_roots, m_size * sizeof(JSCell*));
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheHost.h 91 , m_size(size) { }
95 long long m_size; member in struct:WebCore::ApplicationCacheHost::CacheInfo
106 , m_size(size) { }
113 long long m_size; member in struct:WebCore::ApplicationCacheHost::ResourceInfo
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerTexture.h 67 IntSize m_size; member in class:WebCore::LayerTexture
PlatformImage.cpp 65 if (m_size != bitmapSize) {
68 m_size = bitmapSize;
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.h 116 virtual IntSize size() const { return m_size; }
183 return IntRect(0, 0, m_size.width(), m_size.height());
199 IntSize m_size, m_nearestSurfaceSize; member in class:WebCore::TextureMapperNode
  /external/webkit/Source/WebKit2/Shared/mac/
ShareableSurface.h 85 WebCore::IntSize m_size; member in class:WebKit::ShareableSurface
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ImageBufferCairo.cpp 76 , m_size(size)
98 return m_size.width() * m_size.height() * 4;
144 for (int y = 0; y < m_size.height(); ++y) {
146 for (int x = 0; x < m_size.width(); x++) {
156 cairo_surface_mark_dirty_rectangle (m_data.m_surface, 0, 0, m_size.width(), m_size.height());
220 return getImageData<Unmultiplied>(rect, m_data, m_size);
225 return getImageData<Premultiplied>(rect, m_data, m_size);
288 putImageData<Unmultiplied>(source, sourceSize, sourceRect, destPoint, m_data, m_size);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
ImageBufferSkia.cpp 67 , m_size(size)
98 return m_size.width() * m_size.height() * 4;
127 srcRectFlipped.setY(m_size.height() - srcRect.y());
130 context->platformContext()->gpuCanvas()->drawTexturedRect(sourceTexture, m_size, srcRectFlipped, destRectNormalized, styleColorSpace, op);
155 for (int y = 0; y < m_size.height(); ++y) {
157 for (int x = 0; x < m_size.width(); ++x) {
260 return getImageData<Unmultiplied>(rect, *context()->platformContext()->canvas()->getDevice(), m_size);
266 return getImageData<Premultiplied>(rect, *context()->platformContext()->canvas()->getDevice(), m_size);
342 putImageData<Unmultiplied>(source, sourceSize, sourceRect, destPoint, context()->platformContext()->canvas()->getDevice(), m_size);
    [all...]

Completed in 548 milliseconds

1 2 3 4 5 6 7 891011>>