Searched refs:style (Results 1 - 25 of 1342) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSCSSStyleDeclarationCustom.h37 inline void* root(CSSStyleDeclaration* style) argument
39 if (CSSRule* parentRule = style->parentRule())
41 if (CSSStyleSheet* styleSheet = style->parentStyleSheet())
43 return style;
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/admin/
H A DMakefile.am.inc35 dist-hook: check-style
36 .PHONY: check-style
37 check-style:
38 $(srcdir)/admin/check-style.sh
41 admin/check-style-common.awk \
42 admin/check-style-c.awk \
43 admin/check-style-cpp.awk \
44 admin/check-style-man.awk \
45 admin/check-style-shell.awk \
46 admin/check-style
[all...]
/macosx-10.10/libxslt-13/libxslt/libxslt/
H A Dpreproc.c2 * preproc.c: Preprocessing of style operations
63 * @style: the XSLT stylesheet
72 xsltCheckTopLevelElement(xsltStylesheetPtr style, xmlNodePtr inst, int err) { argument
74 if ((style == NULL) || (inst == NULL) || (inst->ns == NULL))
80 xsltTransformError(NULL, style, inst,
82 style->errors++;
92 xsltTransformError(NULL, style, inst,
95 style->errors++;
104 * @style: the XSLT stylesheet
110 xsltCheckInstructionElement(xsltStylesheetPtr style, xmlNodePt argument
165 xsltCheckParentElement(xsltStylesheetPtr style, xmlNodePtr inst, const xmlChar *allow1, const xmlChar *allow2) argument
225 xsltNewStylePreComp(xsltStylesheetPtr style, xsltStyleType type) argument
532 xsltDocumentComp(xsltStylesheetPtr style, xmlNodePtr inst, xsltTransformFunction function ATTRIBUTE_UNUSED) argument
677 xsltSortComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
784 xsltCopyComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
827 xsltTextComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
873 xsltElementComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
991 xsltAttributeComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1101 xsltCommentComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1131 xsltProcessingInstructionComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1165 xsltCopyOfComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1211 xsltValueOfComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1264 xsltGetQNameProperty(xsltStylesheetPtr style, xmlNodePtr inst, const xmlChar *propName, int mandatory, int *hasProp, const xmlChar **nsName, const xmlChar** localName) argument
1337 xsltWithParamComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1395 xsltNumberComp(xsltStylesheetPtr style, xmlNodePtr cur) argument
1522 xsltApplyImportsComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1552 xsltCallTemplateComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1591 xsltApplyTemplatesComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1643 xsltChooseComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1674 xsltIfComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1720 xsltWhenComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1766 xsltForEachComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1814 xsltVariableComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1893 xsltParamComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1957 xsltFreeStylePreComps(xsltStylesheetPtr style) argument
1986 xsltStylePreCompute(xsltStylesheetPtr style, xmlNodePtr node) argument
2197 xsltStylePreCompute(xsltStylesheetPtr style, xmlNodePtr inst) argument
[all...]
H A Dimports.c59 * @style: the stylesheet being imported by the master
66 xsltStylesheetPtr style) {
68 xmlHashScan(style->templatesHash,
70 master->extrasNr += style->extrasNr;
71 for (res = style->imports; res != NULL; res = res->next) {
78 * @style: the XSLT stylesheet
87 xsltParseStylesheetImport(xsltStylesheetPtr style, xmlNodePtr cur) { argument
96 if ((cur == NULL) || (style == NULL))
101 xsltTransformError(NULL, style, cur,
106 base = xmlNodeGetBase(style
65 xsltFixImportedCompSteps(xsltStylesheetPtr master, xsltStylesheetPtr style) argument
184 xsltParseStylesheetInclude(xsltStylesheetPtr style, xmlNodePtr cur) argument
314 xsltStylesheetPtr style; local
341 xsltStylesheetPtr style; local
397 xsltStylesheetPtr style; local
[all...]
H A Dpreproc.h28 xsltDocumentComp (xsltStylesheetPtr style,
33 xsltStylePreCompute (xsltStylesheetPtr style,
36 xsltFreeStylePreComps (xsltStylesheetPtr style);
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSFontFaceRule.idl26 readonly attribute CSSStyleDeclaration style;
H A DWebKitCSSKeyframeRule.idl33 readonly attribute CSSStyleDeclaration style;
H A DWebKitCSSViewportRule.idl33 readonly attribute CSSStyleDeclaration style;
/macosx-10.10/WebCore-7600.1.25/rendering/mathml/
H A DRenderMathMLMath.cpp38 RenderMathMLMath::RenderMathMLMath(Element& element, PassRef<RenderStyle> style) argument
39 : RenderMathMLRow(element, WTF::move(style))
H A DRenderMathMLSquareRoot.cpp37 RenderMathMLSquareRoot::RenderMathMLSquareRoot(Element& element, PassRef<RenderStyle> style) argument
38 : RenderMathMLRoot(element, WTF::move(style))
42 RenderMathMLSquareRoot::RenderMathMLSquareRoot(Document& document, PassRef<RenderStyle> style) argument
43 : RenderMathMLRoot(document, WTF::move(style))
49 RenderPtr<RenderMathMLSquareRoot> squareRoot = createRenderer<RenderMathMLSquareRoot>(parent.document(), RenderStyle::createAnonymousStyleWithDisplay(&parent.style(), FLEX));
/macosx-10.10/WebCore-7600.1.25/mathml/
H A DMathMLInlineContainerElement.cpp72 RenderPtr<RenderElement> MathMLInlineContainerElement::createElementRenderer(PassRef<RenderStyle> style) argument
75 return createRenderer<RenderMathMLRow>(*this, WTF::move(style));
77 return createRenderer<RenderMathMLRow>(*this, WTF::move(style));
79 return createRenderer<RenderMathMLScripts>(*this, WTF::move(style));
81 return createRenderer<RenderMathMLScripts>(*this, WTF::move(style));
83 return createRenderer<RenderMathMLScripts>(*this, WTF::move(style));
85 return createRenderer<RenderMathMLScripts>(*this, WTF::move(style));
87 return createRenderer<RenderMathMLUnderOver>(*this, WTF::move(style));
89 return createRenderer<RenderMathMLUnderOver>(*this, WTF::move(style));
91 return createRenderer<RenderMathMLUnderOver>(*this, WTF::move(style));
[all...]
H A DMathMLMencloseElement.cpp53 RenderPtr<RenderElement> MathMLMencloseElement::createElementRenderer(PassRef<RenderStyle> style) argument
55 return createRenderer<RenderMathMLMenclose>(*this, WTF::move(style));
75 void MathMLMencloseElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStyleProperties& style) argument
86 addPropertyToPresentationAttributeStyle(style, CSSPropertyPaddingLeft, longDivLeftPadding());
87 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderTopStyle, "solid");
88 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderTopWidth, "thin");
89 addPropertyToPresentationAttributeStyle(style, CSSPropertyPaddingTop, ".3ex");
91 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderBottomStyle, "solid");
92 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderBottomWidth, "thin");
93 addPropertyToPresentationAttributeStyle(style, CSSPropertyPaddingBotto
[all...]
/macosx-10.10/ruby-106/ruby/ext/psych/lib/psych/nodes/
H A Dmapping.rb33 # The style of this mapping
34 attr_accessor :style
43 # +style+ is an integer indicating the mapping style.
47 def initialize anchor = nil, tag = nil, implicit = true, style = BLOCK
52 @style = style
H A Dsequence.rb44 # Block style sequence
47 # Flow style sequence
59 # The sequece style used
60 attr_accessor :style
69 # +style+ is an integer indicating the list style.
72 def initialize anchor = nil, tag = nil, implicit = true, style = BLOCK
77 @style = style
/macosx-10.10/IOKitUser-1050.1.21/kext.subproj/
H A DprintPList_new.h40 void printPList_new(FILE * stream, CFPropertyListRef plist, PListStyle style);
41 void showPList_new(CFPropertyListRef plist, PListStyle style);
42 CFMutableStringRef createCFStringForPlist_new(CFTypeRef plist, PListStyle style);
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DStyleRuleIcons.css26 .author-style-rule-icon .icon {
30 .user-style-rule-icon .icon {
34 .user-agent-style-rule-icon .icon {
38 .inspector-style-rule-icon .icon {
42 .inherited-style-rule-icon .icon {
46 .inherited-element-style-rule-icon .icon {
H A DCSSStyleDeclarationTextEditor.css26 .css-style-text-editor {
31 .css-style-text-editor > .CodeMirror {
35 .css-style-text-editor > .CodeMirror-scroll {
39 .css-style-text-editor > .CodeMirror .CodeMirror-placeholder {
45 .css-style-text-editor > .CodeMirror pre {
51 .css-style-text-editor > .CodeMirror pre * {
55 .css-style-text-editor.read-only > .CodeMirror pre {
59 .css-style-text-editor.read-only > .CodeMirror .CodeMirror-cursor {
63 .css-style-text-editor > .CodeMirror .CodeMirror-lines pre > span span:not(.css-style
[all...]
/macosx-10.10/ICU-531.30/icuSources/io/
H A Dlocbund.cpp37 int32_t style; local
38 for (style = 0; style < ULOCALEBUNDLE_NUMBERFORMAT_COUNT; style++) {
39 unum_close(gPosixNumberFormat[style]);
40 gPosixNumberFormat[style] = NULL;
47 static inline UNumberFormat * copyInvariantFormatter(ULocaleBundle *result, UNumberFormatStyle style) { argument
50 if (result->fNumberFormat[style-1] == NULL) {
51 if (gPosixNumberFormat[style-1] == NULL) {
53 UNumberFormat *formatAlias = unum_open(style, NUL
158 u_locbund_getNumberFormat(ULocaleBundle *bundle, UNumberFormatStyle style) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLTablePartElement.cpp49 void HTMLTablePartElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStyleProperties& style) argument
52 addHTMLColorToStyle(style, CSSPropertyBackgroundColor, value);
56 style.setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(document().completeURL(url).string())));
59 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueTop);
61 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueMiddle);
63 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueBottom);
65 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueBaseline);
67 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, value);
70 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitCenter);
72 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlig
[all...]
H A DHTMLHRElement.cpp60 void HTMLHRElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStyleProperties& style) argument
64 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, 0, CSSPrimitiveValue::CSS_PX);
65 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, CSSValueAuto);
67 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, CSSValueAuto);
68 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, 0, CSSPrimitiveValue::CSS_PX);
70 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, CSSValueAuto);
71 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, CSSValueAuto);
77 addPropertyToPresentationAttributeStyle(style, CSSPropertyWidth, 1, CSSPrimitiveValue::CSS_PX);
79 addHTMLLengthToStyle(style, CSSPropertyWidth, value);
81 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderStyl
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderSlider.cpp50 RenderSlider::RenderSlider(HTMLInputElement& element, PassRef<RenderStyle> style) argument
51 : RenderFlexibleBox(element, WTF::move(style))
74 maxLogicalWidth = defaultTrackLength * style().effectiveZoom();
75 if (!style().width().isPercent())
84 if (style().width().isFixed() && style().width().value() > 0)
85 m_minPreferredLogicalWidth = m_maxPreferredLogicalWidth = adjustContentBoxLogicalWidthForBoxSizing(style().width().value());
89 if (style().minWidth().isFixed() && style().minWidth().value() > 0) {
90 m_maxPreferredLogicalWidth = std::max(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(style()
[all...]
H A DSimpleLineLayout.cpp121 const RenderStyle& style = flow.style(); local
122 if (style.textDecorationsInEffect() != TextDecorationNone)
124 if (style.textAlign() == JUSTIFY)
127 if (style.overflowX() != OVISIBLE || style.overflowY() != OVISIBLE)
129 if (!style.textIndent().isZero())
131 if (!style.wordSpacing().isZero() || style.letterSpacing())
133 if (style
195 Style(const RenderStyle& style) argument
232 textWidth(const RenderText& renderText, const CharacterType* text, unsigned textLength, unsigned from, unsigned to, float xPosition, const Style& style) argument
248 measureWord(unsigned start, unsigned end, float lineWidth, const Style& style, const CharacterType* text, unsigned textLength, const RenderText& textRenderer) argument
[all...]
H A DBorderEdge.cpp59 void BorderEdge::getBorderEdgeInfo(BorderEdge edges[], const RenderStyle& style, float deviceScaleFactor, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) argument
61 bool horizontal = style.isHorizontalWritingMode();
63 edges[BSTop] = BorderEdge(style.borderTopWidth(), style.visitedDependentColor(CSSPropertyBorderTopColor), style.borderTopStyle(), style.borderTopIsTransparent(),
65 edges[BSRight] = BorderEdge(style.borderRightWidth(), style.visitedDependentColor(CSSPropertyBorderRightColor), style.borderRightStyle(), style
[all...]
/macosx-10.10/libxslt-13/libxslt/python/tests/
H A Dbasic.py11 style = libxslt.parseStylesheetDoc(styledoc) variable
13 result = style.applyStylesheet(doc, None)
14 style.saveResultToFilename("foo", result, 0)
15 stringval = style.saveResultToString(result)
19 style.freeStylesheet()
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/tile/
H A Dtoolbutton.tcl15 # Tk added partial support for toolbar-style buttons in 8.4
17 # support with the "-offrelief" option. So to get a toolbar-style
24 # to implement this checkbutton style; see library/button.tcl,
30 # we can define a new "Toolbutton" style and just use:
32 # checkbutton .cb -style Toolbutton
42 # style; see demo.tcl.)
45 style theme settings "step" {
48 # First, we use [style layout] to define what elements to
54 style layout Toolbutton {
69 # inherited from the parent style ar
[all...]

Completed in 298 milliseconds

1234567891011>>