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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
constrained_window_sheet_controller.h 17 // tab can have a single sheet and only the active tab's sheet will be visible.
26 // Returns a sheet controller for |parentWindow|. If a sheet controller does not
31 // Find a controller that's managing the given sheet. If no such controller
34 controllerForSheet:(id<ConstrainedWindowSheet>)sheet;
36 // Find the sheet attached to the given overlay window.
39 // Shows the given sheet over |parentView|. If |parentView| is not the active
40 // view then the sheet is not shown until the |parentView| becomes active.
41 - (void)showSheet:(id<ConstrainedWindowSheet>)sheet
    [all...]
constrained_window_sheet_info.h 14 // Information about a single sheet managed by
25 @property(nonatomic, readonly) id<ConstrainedWindowSheet> sheet; variable
30 // Initializes a info object with for the given |sheet| and associated
32 - (id)initWithSheet:(id<ConstrainedWindowSheet>)sheet
36 // Hides the sheet and the associated overlay window. Hiding is done in such
40 // Shows the sheet and the associated overlay window.
constrained_window_sheet_controller.mm 15 // Maps parent windows to sheet controllers.
25 // An invisible overlay window placed on top of the sheet's parent view.
36 findSheetInfoForSheet:(id<ConstrainedWindowSheet>)sheet;
92 controllerForSheet:(id<ConstrainedWindowSheet>)sheet {
95 if ([controller findSheetInfoForSheet:sheet])
106 return [info sheet];
126 - (void)showSheet:(id<ConstrainedWindowSheet>)sheet
128 DCHECK(sheet);
148 // Add an entry for the sheet.
150 [[ConstrainedWindowSheetInfo alloc] initWithSheet:sheet
    [all...]
constrained_window_custom_sheet.h 13 // Represents a custom sheet. The sheet's window is shown without using the
constrained_window_sheet_info.mm 15 - (id)initWithSheet:(id<ConstrainedWindowSheet>)sheet
19 sheet_.reset([sheet retain]);
26 - (id<ConstrainedWindowSheet>)sheet {
44 // Make sure the now invisible sheet doesn't keep keyboard focus
constrained_window_custom_window.mm 50 id<ConstrainedWindowSheet> sheet = [ConstrainedWindowSheetController
53 [ConstrainedWindowSheetController controllerForSheet:sheet];
55 // Sheet controller may be nil if this window hasn't been shown yet.
60 frame.origin = [sheetController originForSheet:sheet
constrained_window_sheet.h 10 // Protocol for a sheet to be showing using |ConstrainedWindowSheetController|.
constrained_window_sheet_controller_unittest.mm 75 // Center the window so that the sheet doesn't go offscreen.
90 // Create a test sheet.
148 // Test showing then hiding the sheet.
160 // Test that switching tabs correctly hides the inactive tab's sheet.
174 // Test that adding a sheet to an inactive view doesn't show it.
185 // Test that two parent windows with two sheet controllers don't conflict.
219 // Test that resizing sheet works.
238 // Test that resizing a hidden sheet works.
274 // Test showing a system sheet on an inactive tab.
  /frameworks/opt/vcard/tests/res/raw/
v21_org_before_title.vcf 4 ORG:Company;Organization;Devision;Room;Sheet No.
  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentStyleSheetCollection.cpp 61 StyleSheet* sheet = 0; local
74 sheet = pi->sheet();
75 if (sheet && !sheet->disabled() && sheet->isCSSStyleSheet())
76 activeSheet = toCSSStyleSheet(sheet);
86 // it is loading but we should still decide which style sheet set to use
97 sheet = linkElement->sheet();
    [all...]
ShadowTreeStyleSheetCollection.cpp 54 StyleSheet* sheet = 0; local
64 sheet = toHTMLStyleElement(node)->sheet();
65 if (sheet && !sheet->disabled() && sheet->isCSSStyleSheet())
66 activeSheet = toCSSStyleSheet(sheet);
72 if (!enabledViaScript && sheet && !title.isEmpty()) {
86 if (sheet)
87 collection.appendSheetForList(sheet);
    [all...]
ProcessingInstruction.cpp 115 // to kick off import/include loads that can hang off some parent sheet.
167 void ProcessingInstruction::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet)
187 // getting the sheet text in "strict" mode. This enforces a valid CSS MIME
189 parseStyleSheet(sheet->sheetText(true));
192 void ProcessingInstruction::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet)
196 parseStyleSheet(sheet);
199 void ProcessingInstruction::parseStyleSheet(const String& sheet)
202 toCSSStyleSheet(m_sheet.get())->contents()->parseString(sheet);
204 toXSLStyleSheet(m_sheet.get())->parseString(sheet);
215 void ProcessingInstruction::setCSSStyleSheet(PassRefPtr<CSSStyleSheet> sheet)
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/
print-after-window-close.html 3 var w = window.open("data:text/html,Loading a data URL is asynchronous, so this text shouldn't appear. But it's most important to check that there is no crash after dismissing the print sheet.");
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleRuleImport.cpp 110 for (StyleSheetContents* sheet = m_parentStyleSheet; sheet; sheet = sheet->parentStyleSheet()) {
111 if (equalIgnoringFragmentIdentifier(absURL, sheet->baseURL())
112 || equalIgnoringFragmentIdentifier(absURL, document->completeURL(sheet->originalURL())))
114 rootSheet = sheet;
120 // if the import rule is issued dynamically, the sheet may be
121 // removed from the pending sheet count, so let the doc know
122 // the sheet being imported is pending
    [all...]
StyleRuleImport.h 43 void setParentStyleSheet(StyleSheetContents* sheet) { ASSERT(sheet); m_parentStyleSheet = sheet; }
61 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet)
63 m_ownerRule->setCSSStyleSheet(href, baseURL, charset, sheet);
  /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/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleResolver.cpp 45 ContainerNode* ScopedStyleResolver::scopingNodeFor(Document& document, const CSSStyleSheet* sheet)
47 ASSERT(sheet);
49 Document* sheetDocument = sheet->ownerDocument();
52 Node* ownerNode = sheet->ownerNode();
70 void ScopedStyleResolver::addRulesFromSheet(StyleSheetContents* sheet, const MediaQueryEvaluator& medium, StyleResolver* resolver)
72 m_authorStyleSheets.append(sheet);
74 AddRuleFlags addRuleFlags = resolver->document().securityOrigin()->canRequest(sheet->baseURL()) ? RuleHasDocumentSecurityOrigin : RuleHasNoSpecialState;
75 const RuleSet& ruleSet = sheet->ensureRuleSet(medium, addRuleFlags);
77 resolver->processScopedRules(ruleSet, sheet->baseURL(), &m_scopingNode);
  /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/chromium_org/third_party/WebKit/Source/core/xml/
XSLTProcessorLibxslt.cpp 167 static bool saveResultToString(xmlDocPtr resultDoc, xsltStylesheetPtr sheet, String& resultString)
177 int retval = xsltSaveResultTo(outputBuf, resultDoc, sheet);
256 static inline String resultMIMEType(xmlDocPtr resultDoc, xsltStylesheetPtr sheet)
263 XSLT_GET_IMPORT_PTR(resultType, sheet, method);
280 xsltStylesheetPtr sheet = xsltStylesheetPointer(m_stylesheet, m_stylesheetRootNode.get()); local
281 if (!sheet) {
288 xmlChar* origMethod = sheet->method;
290 sheet->method = (xmlChar*)"html";
297 sheet->omitXmlDeclaration = true;
299 xsltTransformContextPtr transformContext = xsltNewTransformContext(sheet, sourceDoc)
    [all...]
  /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.
  /external/chromium_org/chrome/browser/ui/cocoa/
certificate_viewer_mac.h 30 // A copy of the sheet's frame used to restore on show.
32 // A copy of the sheet's |autoresizesSubviews| flag to restore on show.

Completed in 769 milliseconds

1 2 3 4 5 6 7 8 91011>>