Home
last modified time | relevance | path

Searched refs:styleEngine (Results 1 – 25 of 31) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/dom/
DStyleElement.cpp60 document.styleEngine()->addStyleSheetCandidateNode(element, m_createdByParser); in processStyleSheet()
70 document.styleEngine()->removeStyleSheetCandidateNode(element, scopingNode); in removedFromDocument()
86 …document.styleEngine()->removeStyleSheetCandidateNode(element, isHTMLStyleElement(element) ? toHTM… in clearDocumentData()
125 document.styleEngine()->removePendingSheet(e); in createSheet()
138 document.styleEngine()->addPendingSheet(); in createSheet()
167 document.styleEngine()->removePendingSheet(m_sheet->ownerNode()); in sheetLoaded()
173 document.styleEngine()->addPendingSheet(); in startLoadingDynamicSheet()
DProcessingInstruction.cpp62 document().styleEngine()->removeStyleSheetCandidateNode(this); in ~ProcessingInstruction()
142 document().styleEngine()->addPendingSheet(); in checkStyleSheet()
161 document().styleEngine()->removePendingSheet(this); in sheetLoaded()
237 document().styleEngine()->addStyleSheetCandidateNode(this, m_createdByParser); in insertedInto()
248 document().styleEngine()->removeStyleSheetCandidateNode(this); in removedFrom()
DStyleEngine.cpp243 master()->styleEngine()->notifyPendingStyleSheetAdded(); in addPendingSheet()
251 master()->styleEngine()->notifyPendingStyleSheetRemoved(notification); in removePendingSheet()
367 StyleEngine* engine = document->styleEngine(); in collectDocumentActiveStyleSheets()
501 master->styleEngine()->clearResolver(); in clearMasterResolver()
595 m_document.import()->master()->styleEngine()->markDocumentDirty(); in markDocumentDirty()
DDocumentStyleSheetCollection.cpp145 …collection.appendActiveStyleSheets(seamlessParentIFrame->document().styleEngine()->activeAuthorSty… in collectActiveCSSStyleSheetsFromSeamlessParents()
150 ASSERT(document()->styleEngine() == engine); in collectStyleSheets()
DDocument.h413 StyleEngine* styleEngine() { return m_styleEngine.get(); } in styleEngine() function
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLStyleElement.cpp104 document().styleEngine()->removeStyleSheetCandidateNode(this, scopingNode); in scopedAttributeChanged()
107 document().styleEngine()->addStyleSheetCandidateNode(this, false); in scopedAttributeChanged()
118 document().styleEngine()->removeStyleSheetCandidateNode(this, parentNode()); in scopedAttributeChanged()
125 document().styleEngine()->addStyleSheetCandidateNode(this, false); in scopedAttributeChanged()
DHTMLLinkElement.cpp82 document().styleEngine()->removeStyleSheetCandidateNode(this); in ~HTMLLinkElement()
200 document().styleEngine()->addStyleSheetCandidateNode(this, m_createdByParser); in insertedInto()
218 document().styleEngine()->removeStyleSheetCandidateNode(this); in removedFrom()
488 m_owner->document().styleEngine()->addPendingSheet(); in addPendingSheet()
500 m_owner->document().styleEngine()->modifiedStyleSheetCandidateNode(m_owner); in removePendingSheet()
508 m_owner->document().styleEngine()->removePendingSheet(m_owner, in removePendingSheet()
/external/chromium_org/third_party/WebKit/Source/core/css/
DStyleSheetList.cpp47 return document()->styleEngine()->styleSheetsForStyleSheetList(*m_treeScope); in styleSheets()
52 m_detachedStyleSheets = document()->styleEngine()->styleSheetsForStyleSheetList(*m_treeScope); in detachFromDocument()
DFontFaceSet.cpp313 …CSSSegmentedFontFace* face = document()->styleEngine()->fontSelector()->getFontFace(font.fontDescr… in match()
332 …CSSSegmentedFontFace* face = d->styleEngine()->fontSelector()->getFontFace(font.fontDescription(),… in load()
351 …CSSSegmentedFontFace* face = document()->styleEngine()->fontSelector()->getFontFace(font.fontDescr… in check()
400 font.update(document()->styleEngine()->fontSelector()); in resolveFontStyle()
DElementRuleCollector.cpp198 static CSSStyleSheet* findStyleSheet(StyleEngine* styleEngine, StyleRule* rule) in findStyleSheet() argument
201 const Vector<RefPtr<CSSStyleSheet> >& stylesheets = styleEngine->activeAuthorStyleSheets(); in findStyleSheet()
222 …StyleSheetInCSSOMWrapper ? findStyleSheet(m_context.element()->document().styleEngine(), rule) : 0; in appendCSSOMWrapperForRule()
DStyleSheetContents.cpp555 document->styleEngine()->clearResolver(); in clearRuleSet()
DSelectorChecker.cpp151 context.element->document().styleEngine()->setUsesFirstLetterRules(true); in match()
537 …else if (element.renderStyle() && (element.document().styleEngine()->usesSiblingRules() || element… in checkOne()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBR.cpp48 if (firstLine && document().styleEngine()->usesFirstLineRules()) { in lineHeight()
DRenderListBox.cpp131 itemFont.update(document().styleEngine()->fontSelector()); in updateFromElement()
436 itemFont.update(document().styleEngine()->fontSelector()); in paintItemForeground()
DRenderMenuList.cpp605 return document().styleEngine()->fontSelector(); in fontSelector()
DRenderInline.cpp222 if (!alwaysCreateLineBoxes && checkFonts && document().styleEngine()->usesFirstLineRules()) { in updateAlwaysCreateLineBoxes()
1290 if (firstLine && document().styleEngine()->usesFirstLineRules()) { in lineHeight()
/external/chromium_org/third_party/WebKit/Source/core/page/
DPageGroup.cpp84 frame->document()->styleEngine()->invalidateInjectedStyleSheetCache(); in invalidatedInjectedStyleSheetCacheInAllFrames()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleResolver.cpp171 … addFontFaceRule(&document, document.styleEngine()->fontSelector(), (*it)->fontFaceRule()); in StyleResolver()
240 document().renderer()->style()->font().update(document().styleEngine()->fontSelector()); in finishAppendAuthorStyleSheets()
244 document().styleEngine()->resetCSSFeatureFlags(m_features); in finishAppendAuthorStyleSheets()
276 … addFontFaceRule(&m_document, document().styleEngine()->fontSelector(), fontFaceRules[i]); in processScopedRules()
651 s_styleNotYetAvailable->font().update(document().styleEngine()->fontSelector()); in styleForElement()
798 document().styleEngine()->fontSelector()->loadPendingFonts(); in styleForKeyframe()
1024 document().styleEngine()->fontSelector()->loadPendingFonts(); in styleForPage()
1056 state.style()->font().update(document().styleEngine()->fontSelector()); in defaultStyleForElement()
1084 …state.fontBuilder().createFont(document().styleEngine()->fontSelector(), state.parentStyle(), stat… in updateFont()
1431 document().styleEngine()->fontSelector()->loadPendingFonts(); in applyMatchedProperties()
/external/chromium_org/third_party/WebKit/Source/web/
DAutofillPopupMenuClient.cpp227 return m_textField->document().styleEngine()->fontSelector(); in fontSelector()
286 regularFont.update(textField->document().styleEngine()->fontSelector()); in initialize()
DWebDocument.cpp220 document->styleEngine()->addAuthorSheet(parsedSheet); in insertStyleSheet()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGInlineText.cpp239 scaledFont.update(document.styleEngine()->fontSelector()); in computeNewScaledFontForStyle()
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
DShadowRoot.cpp86 documentInternal()->styleEngine()->didRemoveShadowRoot(this); in ~ShadowRoot()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorCSSAgent.cpp723 (*it)->styleEngine()->updateActiveStyleSheets(FullStyleUpdate); in wasEnabled()
1566 …SOMWrappers().getWrapperForRuleInSheets(rule->styleRule(), styleResolver.document().styleEngine()); in buildObjectForRule()
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DCanvasRenderingContext2D.cpp2074 modifiableState().m_font.update(canvas()->document().styleEngine()->fontSelector()); in setFont()
2076 …canvas()->document().styleEngine()->fontSelector()->registerForInvalidationCallbacks(&modifiableSt… in setFont()
/external/chromium_org/third_party/WebKit/Source/core/testing/
DInternals.cpp289 unsigned beforeCount = document->styleEngine()->resolverAccessCount(); in updateStyleAndReturnAffectedElementCount()
291 return document->styleEngine()->resolverAccessCount() - beforeCount; in updateStyleAndReturnAffectedElementCount()

12