Searched defs:style (Results 76 - 100 of 376) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DFontCacheLinux.cpp140 int style = SkTypeface::kNormal; local
142 style |= SkTypeface::kBold;
144 style |= SkTypeface::kItalic;
146 SkTypeface* tf = SkTypeface::CreateFromName(name, static_cast<SkTypeface::Style>(style));
154 (style & SkTypeface::kBold) && !tf->isBold(),
155 (style & SkTypeface::kItalic) && !tf->isItalic(),
/external/webkit/Source/WebCore/platform/qt/
H A DRenderThemeQt.h55 virtual bool supportsFocusRing(const RenderStyle* style) const;
179 int findFrameLineWidth(QStyle* style) const;
202 bool isValid() const { return painter && style; }
206 QStyle* style; member in class:WebCore::StylePainter
209 { style->drawPrimitive(pe, &opt, painter, widget); }
211 { style->drawControl(ce, &opt, painter, widget); }
213 { style->drawComplexControl(cc, &opt, painter, widget); }
/external/webkit/Source/WebCore/rendering/
H A DEllipsisBox.cpp35 RenderStyle* style = m_renderer->style(m_firstLine); local
36 Color textColor = style->visitedDependentColor(CSSPropertyColor);
38 context->setFillColor(textColor, style->colorSpace());
40 if (style->textShadow()) {
41 context->setShadow(IntSize(style->textShadow()->x(), style->textShadow()->y()),
42 style->textShadow()->blur(), style->textShadow()->color(), style
75 RenderStyle* style = m_renderer->style(m_firstLine); local
81 paintSelection(GraphicsContext* context, int tx, int ty, RenderStyle* style, const Font& font) argument
109 RenderStyle* style = m_renderer->style(m_firstLine); local
[all...]
H A DRenderThemeWinCE.h74 virtual void setRadioSize(RenderStyle* style) const
75 { return setCheckboxSize(style); }
84 virtual void adjustMenuListStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const;
86 virtual void adjustMenuListButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const;
113 virtual void adjustButtonStyle(CSSStyleSelector*, RenderStyle* style, Element*) const {} argument
114 virtual void adjustTextFieldStyle(CSSStyleSelector*, RenderStyle* style, Element*) const {} argument
115 virtual void adjustTextAreaStyle(CSSStyleSelector*, RenderStyle* style, Element*) const {} argument
/external/webkit/Source/WebCore/rendering/style/
H A DKeyframeList.h40 KeyframeValue(float key, PassRefPtr<RenderStyle> style) argument
42 , m_style(style)
53 const RenderStyle* style() const { return m_style.get(); } function in class:WebCore::KeyframeValue
54 void setStyle(PassRefPtr<RenderStyle> style) { m_style = style; } argument
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResource.cpp35 static inline RenderSVGResource* requestPaintingResource(RenderSVGResourceMode mode, RenderObject* object, const RenderStyle* style, Color& fallbackColor) argument
38 ASSERT(style);
40 // If we have no style at all, ignore it.
41 const SVGRenderStyle* svgStyle = style->svgStyle();
68 color = style->visitedDependentColor(CSSPropertyColor);
70 if (style->insideLink() == InsideVisitedLink) {
71 RenderStyle* visitedStyle = style->getCachedPseudoStyle(VISITED_LINK);
123 RenderSVGResource* RenderSVGResource::fillPaintingResource(RenderObject* object, const RenderStyle* style, Color& fallbackColor) argument
125 return requestPaintingResource(ApplyToFillMode, object, style, fallbackColor);
128 RenderSVGResource* RenderSVGResource::strokePaintingResource(RenderObject* object, const RenderStyle* style, Colo argument
[all...]
H A DSVGResourcesCache.cpp40 void SVGResourcesCache::addResourcesFromRenderObject(RenderObject* object, const RenderStyle* style) argument
43 ASSERT(style);
46 const SVGRenderStyle* svgStyle = style->svgStyle();
H A DSVGTextLayoutEngineBaseline.cpp38 float SVGTextLayoutEngineBaseline::calculateBaselineShift(const SVGRenderStyle* style, SVGElement* lengthContext) const argument
40 if (style->baselineShift() == BS_LENGTH) {
41 SVGLength baselineShiftValueLength = style->baselineShiftValue();
48 switch (style->baselineShift()) {
64 ASSERT(textRenderer->style());
66 ASSERT(textRenderer->parent()->style());
68 const SVGRenderStyle* style = textRenderer->style()->svgStyle(); local
69 ASSERT(style);
71 EDominantBaseline baseline = style
154 calculateGlyphOrientationAngle(bool isVerticalText, const SVGRenderStyle* style, const UChar& character) const argument
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGFilterPrimitiveStandardAttributes.cpp171 bool SVGFilterPrimitiveStandardAttributes::rendererIsNeeded(RenderStyle* style) argument
174 return SVGStyledElement::rendererIsNeeded(style);
H A DSVGTRefElement.cpp114 bool SVGTRefElement::rendererIsNeeded(RenderStyle* style) argument
124 return StyledElement::rendererIsNeeded(style);
H A DSVGTextPathElement.cpp145 bool SVGTextPathElement::rendererIsNeeded(RenderStyle* style) argument
150 return StyledElement::rendererIsNeeded(style);
/external/webkit/Source/WebCore/wml/
H A DWMLDoElement.cpp155 RenderObject* WMLDoElement::createRenderer(RenderArena* arena, RenderStyle* style) argument
160 if (style) {
161 style->setUnique();
162 style->setBackgroundColor(Color::lightGray);
H A DWMLElement.cpp89 bool WMLElement::rendererIsNeeded(RenderStyle* style) argument
91 return document()->documentElement() == this || style->display() != NONE;
94 RenderObject* WMLElement::createRenderer(RenderArena*, RenderStyle* style) argument
96 return RenderObject::createObject(this, style);
/external/webkit/Source/WebKit/chromium/src/
H A DExternalPopupMenu.cpp143 PopupMenuStyle style = m_popupMenuClient->itemStyle(i); local
144 if (style.textDirection() == WebCore::RTL)
148 popupItem.hasTextDirectionOverride = style.hasTextDirectionOverride();
/external/webkit/Source/WebCore/inspector/front-end/
H A DStylesSidebarPane.js89 "empty-cells", "font-family", "font-size", "font-style", "font-variant", "font-weight", "font", "letter-spacing",
90 "line-height", "list-style-image", "list-style-position", "list-style-type", "list-style", "orphans", "pitch-range",
180 // Trace the computed style.
195 // Trace the computed style.
210 styleRules.push({ style: rule.style, selectorText: rule.selectorText, sourceURL: rule.sourceURL, rule: rule, editable: !!(rule.style
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DIETFUtils.java1 package org.bouncycastle.asn1.x500.style;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEECPublicKey.java490 public void setPointFormat(String style) argument
492 withCompression = !("UNCOMPRESSED".equalsIgnoreCase(style));
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_match.h2 // Use of this source code is governed by a BSD-style license that can be
53 ACMatchClassification(size_t offset, int style) argument
55 style(style) {
61 int style; member in struct:AutocompleteMatch::ACMatchClassification
110 // Fills in the classifications for |text|, using |style| as the base style
112 // will also not be dimmed, if |style| has DIM set.)
115 int style,
125 int style,
[all...]
/external/chromium/chrome/browser/chromeos/frame/
H A Dbubble_window.cc2 // Use of this source code is governed by a BSD-style license that can be
115 Style style,
118 window->non_client_view()->SetFrameView(new BubbleFrameView(window, style));
121 if (style == STYLE_XSHAPE) {
112 Create( gfx::NativeWindow parent, const gfx::Rect& bounds, Style style, views::WindowDelegate* window_delegate) argument
/external/chromium/chrome/browser/chromeos/login/
H A Dexisting_user_view.cc2 // Use of this source code is governed by a BSD-style license that can be
32 views::Textfield::StyleFlags style)
33 : TextfieldWithMargin(style),
31 UserEntryTextfield(UserController* controller, views::Textfield::StyleFlags style) argument
H A Dlogin_html_dialog.cc2 // Use of this source code is governed by a BSD-style license that can be
49 Style style)
54 style_(style),
45 LoginHtmlDialog(Delegate* delegate, gfx::NativeWindow parent_window, const std::wstring& title, const GURL& url, Style style) argument
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32window.cc49 bool Win32Window::Create(HWND parent, const wchar_t* title, DWORD style, argument
70 wnd_ = ::CreateWindowEx(exstyle, kWindowBaseClassName, title, style,
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DBitmapCharacterSet.java63 int style = entry.getKey();
64 styles[index] = style;
67 writeCharset(oc, style, charset);
72 protected void writeCharset(OutputCapsule oc, int style, IntMap<BitmapCharacter> charset) throws IOException { argument
83 oc.write(indexes, "indexes"+style, null);
84 oc.write(chars, "chars"+style, null);
98 for (int style : styles) {
99 characters.put(style, readCharset(ic, style));
103 private IntMap<BitmapCharacter> readCharset(InputCapsule ic, int style) throw argument
124 getCharacter(int index, int style) argument
129 getCharacterSet(int style) argument
210 setStyle(int style) argument
[all...]
H A DBitmapFont.java263 * If two font have the same style, merge will fail.
282 public void setStyle(int style) { argument
283 charSet.setStyle(style);
/external/libxslt/libxslt/
H A Dattrvt.c56 * @style: a XSLT process context
63 xsltNewAttrVT(xsltStylesheetPtr style) { argument
68 xsltTransformError(NULL, style, NULL,
70 if (style != NULL) style->errors++;
78 cur->next = style->attVTs;
83 style->attVTs = (xsltAttrVTPtr) cur;
163 * @style: a XSLT process context
171 xsltCompileAttr(xsltStylesheetPtr style, xmlAttrPtr attr) { argument
179 if ((style
[all...]

Completed in 1897 milliseconds

1234567891011>>