HomeSort by relevance Sort by last modified time
    Searched defs:IntSize (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
IntSizeCG.cpp 27 #include "platform/geometry/IntSize.h"
33 IntSize::IntSize(const CGSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
37 IntSize::operator CGSize() const
  /external/chromium_org/third_party/WebKit/public/platform/
WebSize.h 37 #include "platform/geometry/IntSize.h"
66 WebSize(const WebCore::IntSize& s)
72 WebSize& operator=(const WebCore::IntSize& s)
79 operator WebCore::IntSize() const
81 return WebCore::IntSize(width, height);
  /external/clang/lib/AST/
MicrosoftCXXABI.cpp 171 unsigned IntSize = Target.getIntWidth();
172 uint64_t Width = Ptrs * PtrSize + Ints * IntSize;
RecordLayoutBuilder.cpp     [all...]
ASTContext.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
IntSize.h 44 class PLATFORM_EXPORT IntSize {
46 IntSize() : m_width(0), m_height(0) { }
47 IntSize(int width, int height) : m_width(width), m_height(height) { }
77 IntSize expandedTo(const IntSize& other) const
79 return IntSize(m_width > other.m_width ? m_width : other.m_width,
83 IntSize shrunkTo(const IntSize& other) const
85 return IntSize(m_width < other.m_width ? m_width : other.m_width,
91 *this = expandedTo(IntSize());
    [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 328 CharUnits IntSize = getContext().getTypeSizeInChars(getContext().IntTy);
329 CharUnits VBTableChars = IntSize * GetVBTableIndex(ClassDecl, BaseClassDecl);
    [all...]
  /external/v8/tools/
grokdump.py 666 return self.heap.PointerSize() + self.heap.IntSize()
851 return 12 * self.heap.PointerSize() + 4 * self.heap.IntSize()
854 return 12 * self.heap.PointerSize() + 5 * self.heap.IntSize()
897 return (heap.PointerSize() + heap.IntSize() + \
898 4 * heap.PointerSize() + 3 * heap.IntSize() + \
    [all...]
  /external/chromium_org/v8/tools/
grokdump.py     [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 497 int IntSize = 0;
504 ++IntSize;
507 --IntSize;
526 if ((hasIntegerTypes() && IntSize == 0)
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp     [all...]
RewriteModernObjC.cpp     [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]

Completed in 337 milliseconds