/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | StyleSheetCandidate.cpp | 83 ASSERT(isEnabledAndLoading() || sheet()); in hasPreferrableName() 89 StyleSheet* sheet = this->sheet(); in canBeActivated() local 90 if (!sheet || sheet->disabled() || !sheet->isCSSStyleSheet()) in canBeActivated() 123 StyleSheet* StyleSheetCandidate::sheet() const in sheet() function in blink::StyleSheetCandidate 127 return toHTMLLinkElement(node()).sheet(); in sheet() 129 return toHTMLStyleElement(node()).sheet(); in sheet() 131 return toSVGStyleElement(node()).sheet(); in sheet() 133 return toProcessingInstruction(node()).sheet(); in sheet()
|
D | ShadowTreeStyleSheetCollection.cpp | 53 StyleSheet* sheet = 0; in collectStyleSheets() local 63 sheet = element->sheet(); in collectStyleSheets() 64 if (sheet && !sheet->disabled() && sheet->isCSSStyleSheet()) in collectStyleSheets() 65 activeSheet = toCSSStyleSheet(sheet); in collectStyleSheets() 70 if (!enabledViaScript && sheet && !title.isEmpty()) { in collectStyleSheets() 83 if (sheet) in collectStyleSheets() 84 collection.appendSheetForList(sheet); in collectStyleSheets()
|
D | ProcessingInstruction.cpp | 187 …const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet) in setCSSStyleSheet() argument 209 parseStyleSheet(sheet->sheetText(true)); in setCSSStyleSheet() 212 …ocessingInstruction::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) in setXSLStyleSheet() argument 222 parseStyleSheet(sheet); in setXSLStyleSheet() 225 void ProcessingInstruction::parseStyleSheet(const String& sheet) in parseStyleSheet() argument 228 toCSSStyleSheet(m_sheet.get())->contents()->parseString(sheet); in parseStyleSheet() 230 toXSLStyleSheet(m_sheet.get())->parseString(sheet); in parseStyleSheet() 241 void ProcessingInstruction::setCSSStyleSheet(PassRefPtrWillBeRawPtr<CSSStyleSheet> sheet) in setCSSStyleSheet() argument 245 m_sheet = sheet; in setCSSStyleSheet() 246 sheet->setTitle(m_title); in setCSSStyleSheet() [all …]
|
D | StyleSheetCollection.cpp | 60 void StyleSheetCollection::appendActiveStyleSheet(CSSStyleSheet* sheet) in appendActiveStyleSheet() argument 62 m_activeAuthorStyleSheets.append(sheet); in appendActiveStyleSheet() 65 void StyleSheetCollection::appendSheetForList(StyleSheet* sheet) in appendSheetForList() argument 67 m_styleSheetsForStyleSheetList.append(sheet); in appendSheetForList()
|
D | DocumentStyleSheetCollector.cpp | 52 void DocumentStyleSheetCollector::appendActiveStyleSheet(CSSStyleSheet* sheet) in appendActiveStyleSheet() argument 54 m_activeAuthorStyleSheets.append(sheet); in appendActiveStyleSheet() 57 void DocumentStyleSheetCollector::appendSheetForList(StyleSheet* sheet) in appendSheetForList() argument 59 m_styleSheetsForStyleSheetList.append(sheet); in appendSheetForList()
|
D | DocumentStyleSheetCollection.cpp | 73 StyleSheet* sheet = candidate.sheet(); in collectStyleSheetsFromCandidates() local 74 if (!sheet) in collectStyleSheetsFromCandidates() 79 collector.appendSheetForList(sheet); in collectStyleSheetsFromCandidates() 81 collector.appendActiveStyleSheet(toCSSStyleSheet(sheet)); in collectStyleSheetsFromCandidates()
|
D | ProcessingInstruction.h | 47 StyleSheet* sheet() const { return m_sheet.get(); } in sheet() function 70 …virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) OVERRI… 74 void parseStyleSheet(const String& sheet);
|
/external/chromium_org/chrome/browser/ui/cocoa/constrained_window/ |
D | constrained_window_sheet_controller.mm | 16 // Maps parent windows to sheet controllers. 26 // An invisible overlay window placed on top of the sheet's parent view. 37 findSheetInfoForSheet:(id<ConstrainedWindowSheet>)sheet; 93 controllerForSheet:(id<ConstrainedWindowSheet>)sheet { 96 if ([controller findSheetInfoForSheet:sheet]) 107 return [info sheet]; 127 - (void)showSheet:(id<ConstrainedWindowSheet>)sheet 129 DCHECK(sheet); 148 // Add an entry for the sheet. 150 [[ConstrainedWindowSheetInfo alloc] initWithSheet:sheet [all …]
|
D | constrained_window_sheet_controller.h | 34 controllerForSheet:(id<ConstrainedWindowSheet>)sheet; 41 - (void)showSheet:(id<ConstrainedWindowSheet>)sheet 45 - (NSPoint)originForSheet:(id<ConstrainedWindowSheet>)sheet 49 - (void)closeSheet:(id<ConstrainedWindowSheet>)sheet; 57 - (void)pulseSheet:(id<ConstrainedWindowSheet>)sheet;
|
D | constrained_window_sheet_info.mm | 15 - (id)initWithSheet:(id<ConstrainedWindowSheet>)sheet 19 sheet_.reset([sheet retain]); 26 - (id<ConstrainedWindowSheet>)sheet { method 44 // Make sure the now invisible sheet doesn't keep keyboard focus
|
D | constrained_window_sheet_controller_unittest.mm | 75 // Center the window so that the sheet doesn't go offscreen. 100 // Create a test sheet. 163 // Test showing then hiding the sheet. 175 // Test that switching tabs correctly hides the inactive tab's sheet. 189 // Test that adding a sheet to an inactive view doesn't show it. 200 // Test that two parent windows with two sheet controllers don't conflict. 222 // Test that resizing sheet works. 241 // Test that resizing a hidden sheet works. 260 // Test resizing parent window keeps the sheet anchored. 301 // Test showing a system sheet on an inactive tab.
|
D | constrained_window_sheet_info.h | 25 @property(nonatomic, readonly) id<ConstrainedWindowSheet> sheet; 32 - (id)initWithSheet:(id<ConstrainedWindowSheet>)sheet
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | StyleSheetContents.cpp | 53 if (StyleSheetContents* sheet = m_importRules[i]->styleSheet()) in estimatedSizeInBytes() local 54 size += sheet->estimatedSizeInBytes(); in estimatedSizeInBytes() 419 void StyleSheetContents::notifyLoadedSheet(const CSSStyleSheetResource* sheet) in notifyLoadedSheet() argument 421 ASSERT(sheet); in notifyLoadedSheet() 422 m_didLoadErrorOccur |= sheet->errorOccurred(); in notifyLoadedSheet() 534 void StyleSheetContents::registerClient(CSSStyleSheet* sheet) in registerClient() argument 536 ASSERT(!m_loadingClients.contains(sheet) && !m_completedClients.contains(sheet)); in registerClient() 539 if (!sheet->ownerDocument()) in registerClient() 543 if (sheet->ownerDocument() != document) in registerClient() 546 m_loadingClients.add(sheet); in registerClient() [all …]
|
D | StyleRuleImport.cpp | 123 for (StyleSheetContents* sheet = m_parentStyleSheet; sheet; sheet = sheet->parentStyleSheet()) { in requestStyleSheet() local 124 if (equalIgnoringFragmentIdentifier(absURL, sheet->baseURL()) in requestStyleSheet() 125 || equalIgnoringFragmentIdentifier(absURL, document->completeURL(sheet->originalURL()))) in requestStyleSheet() 127 rootSheet = sheet; in requestStyleSheet()
|
D | StyleRuleImport.h | 44 … void setParentStyleSheet(StyleSheetContents* sheet) { ASSERT(sheet); m_parentStyleSheet = sheet; } in setParentStyleSheet() argument 65 …ing& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet) OVERRIDE in setCSSStyleSheet() argument 67 m_ownerRule->setCSSStyleSheet(href, baseURL, charset, sheet); in setCSSStyleSheet()
|
D | CSSStyleSheet.cpp | 50 static PassOwnPtrWillBeRawPtr<StyleSheetCSSRuleList> create(CSSStyleSheet* sheet) in create() argument 52 return adoptPtrWillBeNoop(new StyleSheetCSSRuleList(sheet)); in create() 62 StyleSheetCSSRuleList(CSSStyleSheet* sheet) : m_styleSheet(sheet) { } in StyleSheetCSSRuleList() argument 94 …leSheet> CSSStyleSheet::create(PassRefPtrWillBeRawPtr<StyleSheetContents> sheet, CSSImportRule* ow… in create() argument 96 return adoptRefWillBeNoop(new CSSStyleSheet(sheet, ownerRule)); in create() 99 …tyleSheet> CSSStyleSheet::create(PassRefPtrWillBeRawPtr<StyleSheetContents> sheet, Node* ownerNode) in create() argument 101 …return adoptRefWillBeNoop(new CSSStyleSheet(sheet, ownerNode, false, TextPosition::minimumPosition… in create() 104 …t> CSSStyleSheet::createInline(PassRefPtrWillBeRawPtr<StyleSheetContents> sheet, Node* ownerNode, … in createInline() argument 106 ASSERT(sheet); in createInline() 107 return adoptRefWillBeNoop(new CSSStyleSheet(sheet, ownerNode, true, startPosition)); in createInline() [all …]
|
D | TreeBoundaryCrossingRules.h | 55 …static PassOwnPtrWillBeRawPtr<RuleSubSet> create(CSSStyleSheet* sheet, unsigned index, PassOwnPtrW… in create() argument 57 return adoptPtrWillBeNoop(new RuleSubSet(sheet, index, rules)); in create() 67 RuleSubSet(CSSStyleSheet* sheet, unsigned index, PassOwnPtrWillBeRawPtr<RuleSet> rules) in RuleSubSet() argument 68 : parentStyleSheet(sheet) in RuleSubSet()
|
D | CSSStyleSheet.h | 149 inline CSSStyleSheet::RuleMutationScope::RuleMutationScope(CSSStyleSheet* sheet) in RuleMutationScope() argument 150 : m_styleSheet(sheet) in RuleMutationScope() 169 DEFINE_TYPE_CASTS(CSSStyleSheet, StyleSheet, sheet, sheet->isCSSStyleSheet(), sheet.isCSSStyleSheet…
|
D | CSSSupportsRule.h | 40 …tatic PassRefPtrWillBeRawPtr<CSSSupportsRule> create(StyleRuleSupports* rule, CSSStyleSheet* sheet) in create() argument 42 return adoptRefWillBeNoop(new CSSSupportsRule(rule, sheet)); in create()
|
D | CSSMediaRule.h | 35 static PassRefPtrWillBeRawPtr<CSSMediaRule> create(StyleRuleMedia* rule, CSSStyleSheet* sheet) in create() argument 37 return adoptRefWillBeNoop(new CSSMediaRule(rule, sheet)); in create()
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XSLTProcessorLibxslt.cpp | 165 static bool saveResultToString(xmlDocPtr resultDoc, xsltStylesheetPtr sheet, String& resultString) in saveResultToString() argument 175 int retval = xsltSaveResultTo(outputBuf, resultDoc, sheet); in saveResultToString() 259 static inline String resultMIMEType(xmlDocPtr resultDoc, xsltStylesheetPtr sheet) in resultMIMEType() argument 266 XSLT_GET_IMPORT_PTR(resultType, sheet, method); in resultMIMEType() 283 …xsltStylesheetPtr sheet = xsltStylesheetPointer(m_document.get(), m_stylesheet, m_stylesheetRootNo… in transformToString() local 284 if (!sheet) { in transformToString() 291 xmlChar* origMethod = sheet->method; in transformToString() 293 sheet->method = (xmlChar*)"html"; in transformToString() 301 sheet->omitXmlDeclaration = true; in transformToString() 303 xsltTransformContextPtr transformContext = xsltNewTransformContext(sheet, sourceDoc); in transformToString() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | ScopedStyleResolver.cpp | 45 TreeScope* ScopedStyleResolver::treeScopeFor(Document& document, const CSSStyleSheet* sheet) in treeScopeFor() argument 47 ASSERT(sheet); in treeScopeFor() 49 if (!sheet->ownerDocument()) in treeScopeFor() 52 Node* ownerNode = sheet->ownerNode(); in treeScopeFor() 75 StyleSheetContents* sheet = cssSheet->contents(); in addRulesFromSheet() local 77 …AddRuleFlags addRuleFlags = resolver->document().securityOrigin()->canRequest(sheet->baseURL()) ? … in addRulesFromSheet() 78 const RuleSet& ruleSet = sheet->ensureRuleSet(medium, addRuleFlags); in addRulesFromSheet()
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
D | CSSStyleSheetResource.cpp | 169 void CSSStyleSheetResource::saveParsedStyleSheet(PassRefPtrWillBeRawPtr<StyleSheetContents> sheet) in saveParsedStyleSheet() argument 171 ASSERT(sheet && sheet->isCacheable()); in saveParsedStyleSheet() 175 m_parsedStyleSheetCache = sheet; in saveParsedStyleSheet()
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | basic-a64-undefined.txt | 6 # Instructions notionally in the add/sub (extended register) sheet, but with 15 # Instructions notionally in the add/sub (immediate) sheet, but with 26 # Instructions notionally in the load/store (unsigned immediate) sheet. 40 # Instructions notionally in the logical (shifted register) sheet, but with out 45 # Instructions notionally in the move wide (immediate) sheet, but with out
|
/external/chromium_org/third_party/libxslt/libxslt/ |
D | functions.c | 597 xsltStylesheetPtr sheet; in xsltFormatNumberFunction() local 605 sheet = tctxt->style; in xsltFormatNumberFunction() 606 if (sheet == NULL) in xsltFormatNumberFunction() 608 formatValues = sheet->decimalFormat; in xsltFormatNumberFunction() 614 formatValues = xsltDecimalFormatGetByName(sheet, decimalObj->stringval); in xsltFormatNumberFunction() 765 xsltStylesheetPtr sheet; in xsltSystemPropertyFunction() local 774 sheet = tctxt->style; in xsltSystemPropertyFunction() 776 sheet = NULL; in xsltSystemPropertyFunction() 777 if ((sheet != NULL) && (sheet->doc != NULL) && in xsltSystemPropertyFunction() 778 (sheet->doc->URL != NULL) && in xsltSystemPropertyFunction() [all …]
|