Searched refs:style (Results 76 - 100 of 1335) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/demos/
H A Dcolumn-lock.tcl41 $T style create label1 -orient horizontal
42 $T style elements label1 {label1.bg label1.text}
43 $T style layout label1 label1.bg -detach yes -iexpand xy
44 $T style layout label1 label1.text -expand wns -padx 2
48 $T item style set $I C0 label1
55 $T style create label2 -orient horizontal
56 $T style elements label2 {label2.bd label2.text}
57 $T style layout label2 label2.bd -detach yes -iexpand xy
58 $T style layout label2 label2.text -expand news -padx 2 -pady 2
62 $T item style se
[all...]
H A Dmycomputer.tcl49 set S [$T style create styHeader -orient vertical]
50 $T style elements $S {txtHeader rectDivider}
51 $T style layout $S txtHeader -padx 10 -pady {10 0} -expand ns
52 $T style layout $S rectDivider -pady {2 8}
55 set S [$T style create styName -orient horizontal]
56 $T style elements $S {elemRectSel txtName}
57 $T style layout $S txtName -padx {16 0} -squeeze x -expand ns
58 $T style layout $S elemRectSel -union [list txtName] -ipadx 2 -pady 1 -iexpand ns
61 set S [$T style create styOther]
62 $T style element
[all...]
H A Dstyle-editor.tcl1 # RCS: @(#) $Id: style-editor.tcl,v 1.16 2007/01/21 22:58:57 treectrl Exp $
100 # Create a new treectrl to copy the states/style/elements into, so I don't
136 if {[llength [$T style names]] == 0} {
141 $T style create s1
142 $T style elements s1 {e2 e1}
143 $T style layout s1 e2 -union [list e1] -ipadx 2 -ipady 2 -iexpand e
151 # One item for each style in the demo list
152 foreach style [lsort -dictionary [$Tdemo style names]] {
154 $T item text $I C0 $style
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLOListElement.cpp64 void HTMLOListElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
68 addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, CSSValueLowerAlpha);
70 addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, CSSValueUpperAlpha);
72 addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, CSSValueLowerRoman);
74 addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, CSSValueUpperRoman);
76 addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, CSSValueDecimal);
78 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
H A DHTMLUListElement.cpp57 void HTMLUListElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
60 addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, value);
62 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DRenderSVGResourceSolidColor.cpp44 bool RenderSVGResourceSolidColor::applyResource(RenderObject* object, RenderStyle* style, GraphicsContext*& context, unsigned short resourceMode) argument
52 const SVGRenderStyle* svgStyle = style ? style->svgStyle() : 0;
53 ColorSpace colorSpace = style ? style->colorSpace() : ColorSpaceDeviceRGB;
76 if (style)
77 SVGRenderSupport::applyStrokeStyleToContext(context, style, object);
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/
H A DRenderThemeEfl.cpp151 void RenderThemeEfl::adjustSizeConstraints(RenderStyle* style, FormType type) const argument
158 if (style->minWidth().isIntrinsic())
159 style->setMinWidth(desc->min.width());
160 if (style->minHeight().isIntrinsic())
161 style->setMinHeight(desc->min.height());
163 if (desc->max.width().value() > 0 && style->maxWidth().isIntrinsicOrAuto())
164 style->setMaxWidth(desc->max.width());
165 if (desc->max.height().value() > 0 && style->maxHeight().isIntrinsicOrAuto())
166 style->setMaxHeight(desc->max.height());
168 style
714 adjustSliderTrackStyle(StyleResolver*, RenderStyle* style, Element*) const argument
719 adjustSliderThumbStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
725 adjustSliderThumbSize(RenderStyle* style, Element*) const argument
786 adjustCheckboxStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
809 adjustRadioStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
832 adjustButtonStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
849 adjustMenuListStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
867 adjustMenuListButtonStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
888 adjustTextFieldStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
912 adjustSearchFieldDecorationStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
934 adjustSearchFieldResultsButtonStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
950 adjustSearchFieldResultsDecorationStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
966 adjustSearchFieldCancelButtonStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
990 adjustSearchFieldStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
1006 adjustInnerSpinButtonStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
1041 adjustProgressBarStyle(StyleResolver*, RenderStyle* style, Element*) const argument
1199 RenderStyle* style = object->style(); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderTableCell.cpp137 Length colWidth = tableCol->style()->logicalWidth();
169 if (node() && style()->autoWrap()) {
190 switch (style()->verticalAlign()) {
270 return result + (style()->writingMode() == TopToBottomWritingMode ? intrinsicPaddingBefore() : intrinsicPaddingAfter());
278 return result + (style()->writingMode() == TopToBottomWritingMode ? intrinsicPaddingAfter() : intrinsicPaddingBefore());
286 return result + (style()->writingMode() == LeftToRightWritingMode ? intrinsicPaddingBefore() : intrinsicPaddingAfter());
294 return result + (style()->writingMode() == LeftToRightWritingMode ? intrinsicPaddingAfter() : intrinsicPaddingBefore());
334 int outlineSize = style()->outlineSize();
399 ASSERT(style()->display() == TABLE_CELL);
405 if (parent() && section() && oldStyle && style()
1010 collapsedBorderStyle(EBorderStyle style) argument
1027 EBorderStyle style; member in struct:WebCore::CollapsedBorder
[all...]
H A DRenderButton.cpp53 m_inner = createAnonymousBlock(style()->display());
54 setupInnerStyle(m_inner->style());
77 // RenderBlock::setStyle is going to apply a new style to the inner block, which
82 m_inner->style()->setFlexGrow(newStyle->initialFlexGrow());
83 m_inner->style()->setMarginTop(newStyle->initialMargin());
84 m_inner->style()->setMarginBottom(newStyle->initialMargin());
94 m_buttonText->setStyle(style());
95 if (m_inner) // RenderBlock handled updating the anonymous block's style.
96 setupInnerStyle(m_inner->style());
119 innerStyle->setFlexDirection(style()
[all...]
H A DRenderTable.h53 bool collapseBorders() const { return style()->borderCollapse(); }
62 if (style()->isHorizontalWritingMode())
63 return style()->isLeftToRightDirection() ? borderStart() : borderEnd();
64 return style()->isFlippedBlocksWritingMode() ? borderAfter() : borderBefore();
69 if (style()->isHorizontalWritingMode())
70 return style()->isLeftToRightDirection() ? borderEnd() : borderStart();
71 return style()->isFlippedBlocksWritingMode() ? borderBefore() : borderAfter();
76 if (style()->isHorizontalWritingMode())
77 return style()->isFlippedBlocksWritingMode() ? borderAfter() : borderBefore();
78 return style()
[all...]
H A DRenderBR.cpp50 RenderStyle* s = style(firstLine);
51 if (s != style())
56 m_lineHeight = style()->computedLineHeight(view());
H A DRenderRubyText.cpp56 ETextAlign textAlign = style()->textAlign();
67 ETextAlign textAlign = style()->textAlign();
80 inset = min<float>(2 * style()->fontSize(), inset);
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/include/dns/
H A Dmasterdump.h110 * The default master file style.
119 * A master file style that dumps zones to a very generic format easily
125 * A master file style that prints explicit TTL values on each
133 * A master style format designed for cache files. It prints explicit TTL
139 * A master style that prints name, ttl, class, type, and value on
147 * The style used for debugging, "dig" output, etc.
209 const dns_master_style_t *style, FILE *f,
216 const dns_master_style_t *style, FILE *f);
221 const dns_master_style_t *style,
226 * 'style' specifie
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DShadowValue.cpp41 , style(_style)
72 if (style) {
75 text.append(style->cssText());
88 && compareCSSValuePtr(style, other.style);
H A DBasicShapeFunctions.cpp114 static Length convertToLength(const RenderStyle* style, const RenderStyle* rootStyle, CSSPrimitiveValue* value) argument
116 return value->convertToLength<FixedIntegerConversion | FixedFloatConversion | PercentConversion | ViewportPercentageConversion>(style, rootStyle, style->effectiveZoom());
119 PassRefPtr<BasicShape> basicShapeForValue(const RenderStyle* style, const RenderStyle* rootStyle, const CSSBasicShape* basicShapeValue) argument
128 rect->setX(convertToLength(style, rootStyle, rectValue->x()));
129 rect->setY(convertToLength(style, rootStyle, rectValue->y()));
130 rect->setWidth(convertToLength(style, rootStyle, rectValue->width()));
131 rect->setHeight(convertToLength(style, rootStyle, rectValue->height()));
133 Length radiusX = convertToLength(style, rootStyle, rectValue->radiusX());
136 rect->setCornerRadiusY(convertToLength(style, rootStyl
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DPseudoElement.h69 inline bool pseudoElementRendererIsNeeded(const RenderStyle* style) argument
71 return style && style->display() != NONE && (style->contentData() || !style->regionThread().isEmpty());
/macosx-10.9.5/libxslt-13/libxslt/libxslt/
H A Dpattern.h39 xsltStylesheetPtr style,
56 xsltAddTemplate (xsltStylesheetPtr style,
63 xsltStylesheetPtr style);
65 xsltFreeTemplateHashes (xsltStylesheetPtr style);
67 xsltCleanupTemplates (xsltStylesheetPtr style);
H A Dnamespaces.c69 xsltTransformError(NULL, cctxt->style, NULL,
71 cctxt->style->errors++;
86 * @style: the XSLT stylesheet
93 xsltNamespaceAlias(xsltStylesheetPtr style, xmlNodePtr node) argument
103 if ((style == NULL) || (node == NULL))
130 xsltTransformError(NULL, style, node,
139 xsltTransformError(NULL, style, node,
151 xsltTransformError(NULL, style, node,
161 xsltTransformError(NULL, style, node,
205 alias = xsltNewNsAlias(XSLT_CCTXT(style));
847 xsltFreeNamespaceAliasHashes(xsltStylesheetPtr style) argument
[all...]
H A Ddocuments.h36 xsltLoadStyleDocument (xsltStylesheetPtr style,
39 xsltNewStyleDocument (xsltStylesheetPtr style,
42 xsltFreeStyleDocuments (xsltStylesheetPtr style);
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DRenderThemeQStyle.cpp201 // If the style supports layout rects we use that, and compensate accordingly
229 void RenderThemeQStyle::adjustButtonStyle(StyleResolver* styleResolver, RenderStyle* style, Element*) const argument
232 style->resetBorder();
235 if (style->appearance() == PushButtonPart) {
238 style->setHeight(Length(Auto));
242 FontDescription fontDescription = style->fontDescription();
249 fontDescription.setSpecifiedSize(style->fontSize());
250 fontDescription.setComputedSize(style->fontSize());
256 style->setFontDescription(fontDescription);
257 style
333 adjustTextAreaStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
375 adjustMenuListButtonStyle(StyleResolver* styleResolver, RenderStyle* style, Element* e) const argument
461 adjustSliderTrackStyle(StyleResolver*, RenderStyle* style, Element*) const argument
489 adjustSliderThumbStyle(StyleResolver* styleResolver, RenderStyle* style, Element* element) const argument
500 adjustSearchFieldDecorationStyle(StyleResolver* styleResolver, RenderStyle* style, Element* e) const argument
512 adjustSearchFieldResultsDecorationStyle(StyleResolver* styleResolver, RenderStyle* style, Element* e) const argument
560 RenderStyle* style = o->style(); local
597 adjustSliderThumbSize(RenderStyle* style, Element* element) const argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/mathml/
H A DRenderMathMLSubSup.cpp66 // Set the base wrapper's style so that baseHeight in layout() will be an unstretched height.
67 ASSERT(firstChild() && firstChild()->style()->refCount() == 1);
68 firstChild()->style()->setAlignSelf(AlignFlexStart);
70 ASSERT(m_scripts && m_scripts->style()->refCount() == 1);
71 RenderStyle* scriptsStyle = m_scripts->style();
75 scriptsStyle->setFontSize(static_cast<int>(0.75 * style()->fontSize()));
135 LayoutUnit axis = style()->fontMetrics().xHeight() / 2;
136 int fontSize = style()->fontSize();
138 ASSERT(baseWrapper->style()->hasOneRef());
149 if (newPadding != baseWrapper->style()
[all...]
/macosx-10.9.5/libxslt-13/libxslt/python/tests/
H A Dextfunc.py41 style = libxslt.parseStylesheetDoc(styledoc) variable
43 result = style.applyStylesheet(doc, { "bar": "'success'" })
44 style.freeStylesheet()
/macosx-10.9.5/ruby-104/ruby/ext/psych/lib/psych/
H A Dhandler.rb121 # +style+ is an integer idicating the string style
124 # +style+
143 # # value anchor tag plain quoted style
149 def scalar value, anchor, tag, plain, quoted, style
159 # +style+ is an integer indicating the list style.
162 # +style+.
180 # # anchor tag implicit style
185 def start_sequence anchor, tag, implicit, style
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/psych/lib/psych/json/
H A Dyaml_events.rb12 def start_mapping anchor, tag, implicit, style
16 def start_sequence anchor, tag, implicit, style
20 def scalar value, anchor, tag, plain, quoted, style
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/tcllib/
H A Dstyle.rb2 # tkextlib/tcllib/style.rb
6 # * select and use some 'style' of option (resource) DB
14 PACKAGE_NAME = 'style'.freeze
21 TkPackage.require('style')
28 fail RuntimeError, "'tkextlib/tcllib/style' extension is not available on your current environment."
35 def self.use(style)
41 # TkPackage.require('style', '0.1')
42 # TkPackage.require('style', '0.3')
43 TkPackage.require('style')
54 tk_split_simplelist(tk_call('style
[all...]

Completed in 175 milliseconds

1234567891011>>