Searched defs:RenderCombineText (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderCombineText.h28 class RenderCombineText : public RenderText { class in namespace:WebCore
30 RenderCombineText(Node*, PassRefPtr<StringImpl>);
42 virtual const char* renderName() const { return "RenderCombineText"; }
51 inline RenderCombineText* toRenderCombineText(RenderObject* object)
54 return static_cast<RenderCombineText*>(object);
57 inline const RenderCombineText* toRenderCombineText(const RenderObject* object)
60 return static_cast<const RenderCombineText*>(object);
64 void toRenderCombineText(const RenderCombineText*);
H A DRenderCombineText.cpp22 #include "RenderCombineText.h"
30 RenderCombineText::RenderCombineText(Node* node, PassRefPtr<StringImpl> string) function in class:WebCore::RenderCombineText
38 void RenderCombineText::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
44 RenderText::setTextInternal(originalText()); // This RenderCombineText has been combined once. Restore the original text for the next combineText().
49 void RenderCombineText::setTextInternal(PassRefPtr<StringImpl> text)
56 float RenderCombineText::width(unsigned from, unsigned length, const Font& font, float xPosition, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const
67 void RenderCombineText::adjustTextOrigin(FloatPoint& textOrigin, const FloatRect& boxRect) const
73 void RenderCombineText::charactersToRender(int start, const UChar*& characters, int& length) const
84 void RenderCombineText
[all...]

Completed in 111 milliseconds