HomeSort by relevance Sort by last modified time
    Searched full:sheet (Results 1 - 25 of 287) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/vcard/tests/res/raw/
v21_org_before_title.vcf 4 ORG:Company;Organization;Devision;Room;Sheet No.
  /external/webkit/Source/WebCore/css/
StyleBase.cpp 53 // Try to find the style sheet. If found look for its URL.
54 // If it has none, get the URL from the parent sheet or the parent node.
56 StyleSheet* sheet = const_cast<StyleBase*>(this)->stylesheet(); local
57 if (!sheet)
59 if (!sheet->finalURL().isNull())
60 return sheet->finalURL();
61 if (sheet->parent())
62 return sheet->parent()->baseURL();
63 if (!sheet->ownerNode())
65 return sheet->ownerNode()->document()->baseURL()
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
constrained_window_mac.h 31 // itself later. Note that you MUST close the sheet belonging to your delegate
40 // Returns true if this delegate's sheet is currently showing.
49 // Subclass this for a dialog delegate that displays a system sheet such as
58 void set_sheet(id sheet);
59 id sheet() { return systemSheet_; } function in class:ConstrainedWindowMacDelegateSystemSheet
62 // Array's contents should be the arguments passed to the system sheet's
67 // Subclasses may override this if they show a system sheet which takes
79 // Subclass this for a dialog delegate that displays a custom sheet, e.g. loaded
90 void init(NSWindow* sheet, id delegate, SEL didEndSelector);
91 void set_sheet(NSWindow* sheet);
92 NSWindow* sheet() { return customSheet_; } function in class:ConstrainedWindowMacDelegateCustomSheet
    [all...]
constrained_window_mac.mm 21 void ConstrainedWindowMacDelegateSystemSheet::set_sheet(id sheet) {
22 systemSheet_.reset([sheet retain]);
60 void ConstrainedWindowMacDelegateCustomSheet::init(NSWindow* sheet,
65 customSheet_.reset([sheet retain]);
72 void ConstrainedWindowMacDelegateCustomSheet::set_sheet(NSWindow* sheet) {
73 customSheet_.reset([sheet retain]);
108 // this case, open the sheet now. Else, Realize() will be called later, when
122 // Note: controller_ can be `nil` here if the sheet was never realized. That's
constrained_html_delegate_mac.mm 29 // From ConstrainedWindowMacDelegate: "you MUST close the sheet belonging to
32 [NSApp endSheet:sheet()];
50 TabContents tab_contents_; // Holds the HTML to be displayed in the sheet.
60 // The delegate used to forward events from the sheet to the constrained
62 // to allow the HtmlDialog to know when the sheet closes.
68 - (void)sheetDidEnd:(NSWindow*)sheet
90 // Create NSWindow to hold tab_contents in the constrained sheet:
96 // the sheet is initialized.
106 // Set the custom sheet to point to the new window.
148 - (void)sheetDidEnd:(NSWindow*)sheet
    [all...]
ssl_client_certificate_selector.mm 40 // As required by ConstrainedWindowMacDelegate, close the sheet if
43 [NSApp endSheet:sheet()
61 [NSValue valueWithPointer:sheet()],
191 // sheet is open. Don't release the ownership claim until the sheet has ended
  /external/chromium/chrome/browser/ui/login/
login_prompt_mac.h 13 // Controller of the sheet used by LoginHandlerMac. Interface Builder wants
27 - (void)sheetDidEnd:(NSWindow*)sheet
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLLinkElementCustom.cpp 39 if (StyleSheet* sheet = static_cast<HTMLLinkElement*>(impl())->sheet())
40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
JSHTMLStyleElementCustom.cpp 39 if (StyleSheet* sheet = static_cast<HTMLStyleElement*>(impl())->sheet())
40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
JSProcessingInstructionCustom.cpp 39 if (StyleSheet* sheet = static_cast<ProcessingInstruction*>(impl())->sheet())
40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
JSStyleSheetCustom.cpp 59 StyleSheet* sheet = impl(); local
62 unsigned length = sheet->length();
64 markDOMObjectWrapper(markStack, globalData, sheet->item(i));
JSCSSImportRuleCustom.cpp 39 if (CSSStyleSheet* sheet = static_cast<CSSImportRule*>(impl())->styleSheet())
40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
JSNodeCustom.cpp 129 if (StyleSheet* sheet = static_cast<HTMLLinkElement*>(node)->sheet()) {
130 if (world->m_wrappers.get(sheet))
134 if (StyleSheet* sheet = static_cast<HTMLStyleElement*>(node)->sheet()) {
135 if (world->m_wrappers.get(sheet))
140 if (StyleSheet* sheet = static_cast<ProcessingInstruction*>(node)->sheet()) {
141 if (world->m_wrappers.get(sheet))
  /external/webkit/Source/WebCore/xml/
XSLTProcessorLibxslt.cpp 57 SOFT_LINK(libxslt, xsltFreeStylesheet, void, (xsltStylesheetPtr sheet), (sheet))
192 static bool saveResultToString(xmlDocPtr resultDoc, xsltStylesheetPtr sheet, String& resultString)
202 int retval = xsltSaveResultTo(outputBuf, resultDoc, sheet);
281 static inline String resultMIMEType(xmlDocPtr resultDoc, xsltStylesheetPtr sheet)
288 XSLT_GET_IMPORT_PTR(resultType, sheet, method);
305 xsltStylesheetPtr sheet = xsltStylesheetPointer(m_stylesheet, m_stylesheetRootNode.get()); local
306 if (!sheet) {
312 xmlChar* origMethod = sheet->method;
314 sheet->method = (xmlChar*)"html"
    [all...]
XSLImportRule.cpp 55 void XSLImportRule::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet)
66 m_styleSheet->parseString(sheet);
106 // If the imported sheet is in the cache, then setXSLStyleSheet gets called,
107 // and the sheet even gets parsed (via parseString). In this case we have
  /external/webkit/Source/WebCore/dom/
ProcessingInstruction.cpp 144 // to kick off import/include loads that can hang off some parent sheet.
205 void ProcessingInstruction::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CachedCSSStyleSheet* sheet)
216 // getting the sheet text in "strict" mode. This enforces a valid CSS MIME
218 parseStyleSheet(sheet->sheetText(true));
225 void ProcessingInstruction::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet)
229 parseStyleSheet(sheet);
233 void ProcessingInstruction::parseStyleSheet(const String& sheet)
235 m_sheet->parseString(sheet, true);
244 void ProcessingInstruction::setCSSStyleSheet(PassRefPtr<CSSStyleSheet> sheet)
248 m_sheet = sheet;
    [all...]
ProcessingInstruction.h 48 StyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::ProcessingInstruction
74 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
82 void parseStyleSheet(const String& sheet);
  /external/iproute2/doc/
do-psnup 5 # $4 = Number of pages to fit on a single sheet . "numeric"
preamble.tex 10 % To print it in compact form: both sides on one sheet (psnup -2)
  /external/webkit/Source/WebCore/bindings/objc/
DOMObject.mm 70 - (DOMStyleSheet *)sheet
75 styleSheet = core(static_cast<DOMProcessingInstruction *>(self))->sheet();
77 styleSheet = core(static_cast<DOMHTMLLinkElement *>(self))->sheet();
79 styleSheet = core(static_cast<DOMHTMLStyleElement *>(self))->sheet();
DOMObject.h 47 @property(readonly, retain) DOMStyleSheet *sheet; variable
49 - (DOMStyleSheet *)sheet;
  /external/chromium/chrome/browser/
user_style_sheet_watcher.h 20 // Watches the user style sheet file and triggers reloads on the file thread
50 // Watches for changes to the css file so we can reload the style sheet.
user_style_sheet_watcher.cc 16 // The subdirectory of the profile that contains the style sheet.
23 // UserStyleSheetLoader is responsible for loading the user style sheet on the
24 // file thread and sends a notification when the style sheet is loaded. It is
50 // Load the user style sheet on the file thread and convert it to a
64 // The user style sheet as a base64 data:// URL.
92 // We keep the user style sheet in a subdir so we can watch for changes
133 // the user style sheet.
  /external/chromium/chrome/browser/ui/cocoa/content_settings/
collected_cookies_mac.mm 44 #pragma mark Bridge between the constrained window delegate and the sheet
46 // The delegate used to forward the events from the sheet to the constrained
52 - (void)sheetDidEnd:(NSWindow*)sheet
65 - (void)sheetDidEnd:(NSWindow*)sheet
68 collectedCookies_->OnSheetDidEnd(sheet);
115 void CollectedCookiesMac::OnSheetDidEnd(NSWindow* sheet) {
116 [sheet orderOut:sheet_controller_];
450 NSWindow* sheet = [self window];
451 NSRect sheetFrame = [sheet frame];
462 // Calculate the new position of the sheet
    [all...]
  /external/chromium/chrome/browser/resources/options/
options.html 186 <div id="subpage-sheet-container-1"
187 class="subpage-sheet-container transparent" hidden>
188 <div id="subpage-sheet-1" class="subpage-sheet">
190 <div class="subpage-sheet-contents">
208 <div id="subpage-sheet-container-2"
209 class="subpage-sheet-container transparent" hidden>
210 <div id="subpage-sheet-2" class="subpage-sheet">
212 <div class="subpage-sheet-contents"
    [all...]

Completed in 852 milliseconds

1 2 3 4 5 6 7 8 91011>>