Searched defs:IntSize (Results 1 - 15 of 15) sorted by path

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSImageGeneratorValue.h41 SizeAndCount(IntSize newSize = IntSize(), int newCount = 0) argument
47 IntSize size;
57 void addClient(RenderObject*, const IntSize&);
59 PassRefPtr<Image> image(RenderObject*, const IntSize&);
62 IntSize fixedSize(const RenderObject*);
74 Image* getImage(RenderObject*, const IntSize&);
75 void putImage(const IntSize&, PassRefPtr<Image>);
78 HashCountedSet<IntSize> m_sizes; // A count of how many times a given image size is in use.
80 HashMap<IntSize, RefPt
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTCue.cpp135 void VTTCueBox::applyCSSProperties(const IntSize&) argument
718 PassRefPtrWillBeRawPtr<VTTCueBox> VTTCue::getDisplayTree(const IntSize& videoSize)
775 void VTTCue::updateDisplay(const IntSize& videoSize, HTMLDivElement& container)
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DIntSize.h43 class PLATFORM_EXPORT IntSize { class in namespace:blink
45 IntSize() : m_width(0), m_height(0) { } function in class:blink::IntSize
46 IntSize(int width, int height) : m_width(width), m_height(height) { } function in class:blink::IntSize
76 IntSize expandedTo(const IntSize& other) const
78 return IntSize(m_width > other.m_width ? m_width : other.m_width,
82 IntSize shrunkTo(const IntSize& other) const
84 return IntSize(m_width < other.m_width ? m_width : other.m_width,
90 *this = expandedTo(IntSize());
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
H A DIntSizeCG.cpp27 #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)) function in class:blink::IntSize
37 IntSize::operator CGSize() const
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImage.h79 virtual void setContainerSize(const IntSize&) { } argument
85 virtual IntSize size() const = 0;
122 const FloatRect&, WebBlendMode = WebBlendModeNormal, const IntSize& repeatSpacing = IntSize());
137 CompositeOperator, WebBlendMode, const IntSize& repeatSpacing);
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollbarTheme.h84 virtual void paintOverhangShadows(GraphicsContext*, const IntSize&, const IntRect&, const IntRect&, const IntRect&) { } argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DExternalPopupMenu.cpp69 void ExternalPopupMenu::show(const FloatQuad& controlPosition, const IntSize&, int index) argument
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebSize.h37 #include "platform/geometry/IntSize.h"
66 WebSize(const IntSize& s)
72 WebSize& operator=(const IntSize& s)
79 operator IntSize() const
81 return IntSize(width, height);
/external/chromium_org/v8/tools/
H A Dgrokdump.py981 return self.InstanceSizesOffset() + self.heap.IntSize()
997 return self.InstanceAttributesOffset() + self.heap.IntSize()
1389 return 12 * self.heap.PointerSize() + 4 * self.heap.IntSize()
1392 return 12 * self.heap.PointerSize() + 5 * self.heap.IntSize()
1459 return (heap.PointerSize() + heap.IntSize() + \
1460 4 * heap.PointerSize() + 3 * heap.IntSize() + \
1551 def IntSize(self): member in class:V8Heap
/external/clang/lib/AST/
H A DASTContext.cpp4427 uint64_t IntSize = getTypeSize(IntTy); local
4431 if (BitWidth < IntSize)
4434 if (BitWidth == IntSize)
4483 uint64_t IntSize = getIntWidth(IntTy); local
4484 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize);
4485 return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy;
H A DMicrosoftCXXABI.cpp176 unsigned IntSize = Target.getIntWidth(); local
177 uint64_t Width = Ptrs * PtrSize + Ints * IntSize;
/external/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp748 CharUnits IntSize = getContext().getTypeSizeInChars(getContext().IntTy); local
750 IntSize *
1639 int32_t IntSize = local
1644 IntSize * RA.Virtual.Microsoft.VBIndex, &VBPtr);
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp2637 unsigned IntSize = local
2641 llvm::APInt(IntSize, Exp->getValue()),
5109 unsigned IntSize = local
5114 unsigned offset = (VoidPtrSize*4 + IntSize + IntSize)/Context->getCharWidth();
5526 unsigned IntSize = local
5528 Expr *FlagExp = IntegerLiteral::Create(*Context, llvm::APInt(IntSize, flag),
H A DRewriteObjC.cpp3013 unsigned IntSize = local
3016 llvm::APInt(IntSize, 8),
4176 unsigned IntSize = local
4181 unsigned offset = (VoidPtrSize*4 + IntSize + IntSize)/Context->getCharWidth();
4576 unsigned IntSize = local
4578 Expr *FlagExp = IntegerLiteral::Create(*Context, llvm::APInt(IntSize, flag),
/external/clang/lib/Sema/
H A DSemaExpr.cpp3012 unsigned IntSize = Context.getTargetInfo().getIntWidth(); local
3013 return IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val),
3244 unsigned IntSize = Context.getTargetInfo().getIntWidth(); local
3247 if (ResultVal.isIntN(IntSize)) {
3249 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
3253 Width = IntSize;

Completed in 449 milliseconds