HomeSort by relevance Sort by last modified time
    Searched refs:restored (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/chromium/chrome/browser/ui/views/frame/
browser_non_client_frame_view.h 25 // begins, or (in vertical tabs mode) would begin. If |restored| is true,
26 // this is calculated as if we were in restored mode regardless of the current
28 virtual int GetHorizontalTabStripVerticalOffset(bool restored) const = 0;
opaque_browser_frame_view.h 35 virtual int GetHorizontalTabStripVerticalOffset(bool restored) const OVERRIDE;
52 // frame, any title area, and any connected client edge. If |restored| is
53 // true, acts as if the window is restored regardless of the real mode. If
56 int NonClientTopBorderHeight(bool restored, bool ignore_vertical_tabs) const;
101 // This does not include any client edge. If |restored| is true, acts as if
102 // the window is restored regardless of the real mode.
103 int FrameBorderThickness(bool restored) const;
113 // Returns the y-coordinate of the caption buttons. If |restored| is true,
114 // acts as if the window is restored regardless of the real mode.
115 int CaptionButtonY(bool restored) const
    [all...]
popup_non_client_frame_view.h 33 virtual int GetHorizontalTabStripVerticalOffset(bool restored) const OVERRIDE;
browser_frame.cc 34 int BrowserFrame::GetHorizontalTabStripVerticalOffset(bool restored) const {
35 return browser_frame_view_->GetHorizontalTabStripVerticalOffset(restored);
browser_frame.h 60 // begins (or would begin). If |restored| is true, this is calculated as if
61 // we were in restored mode regardless of the current mode.
62 int GetHorizontalTabStripVerticalOffset(bool restored) const;
popup_non_client_frame_view.cc 55 bool restored) const {
glass_browser_frame_view.h 36 virtual int GetHorizontalTabStripVerticalOffset(bool restored) const OVERRIDE;
70 // frame, any title area, and any connected client edge. If |restored| is
71 // true, acts as if the window is restored regardless of the real mode. If
74 int NonClientTopBorderHeight(bool restored, bool ignore_vertical_tabs) const;
app_panel_browser_frame_view.h 37 virtual int GetHorizontalTabStripVerticalOffset(bool restored) const OVERRIDE;
opaque_browser_frame_view.cc 38 // The frame border is only visible in restored mode and is hardcoded to 4 px on
42 // window in restored mode, to use to drag the window around.
78 // In restored mode, the New Tab button isn't at the same height as the caption
200 bool restored,
210 return std::max(FrameBorderThickness(restored) + IconSize(),
211 CaptionButtonY(restored) + kCaptionButtonHeightWithPadding) +
212 TitlebarBottomThickness(restored);
215 return FrameBorderThickness(restored) -
216 ((browser_view_->IsTabStripVisible() && !restored &&
247 bool restored) const
    [all...]
glass_browser_frame_view.cc 42 // window in restored mode, to use to drag the window around.
59 // In restored mode, the New Tab button isn't at the same height as the caption
150 bool restored) const {
151 return NonClientTopBorderHeight(restored, true);
294 bool restored,
296 if (!restored && frame_->GetWindow()->IsFullscreen())
305 ((!restored && browser_view_->IsMaximized()) ?
  /packages/apps/Email/tests/src/com/android/email/provider/
AccountBackupRestoreTests.java 117 // Accounts will be restored next time we touch the db.
129 Account restored = new Account(); local
130 restored.restore(c);
132 HostAuth recv = HostAuth.restoreHostAuthWithId(mMockContext, restored.mHostAuthKeyRecv);
134 HostAuth send = HostAuth.restoreHostAuthWithId(mMockContext, restored.mHostAuthKeySend);
139 assertRestoredAccountEqual(saved1, restored);
143 restored = new Account();
144 restored.restore(c);
146 recv = HostAuth.restoreHostAuthWithId(mMockContext, restored.mHostAuthKeyRecv);
148 send = HostAuth.restoreHostAuthWithId(mMockContext, restored.mHostAuthKeySend)
    [all...]
  /external/chromium/chrome/browser/chromeos/frame/
browser_frame_view_chromeos.h 26 virtual int GetHorizontalTabStripVerticalOffset(bool restored) const OVERRIDE;
browser_frame_view_chromeos.cc 59 bool restored) const {
60 return NonClientTopBorderHeight(restored, true) + kTopPad;
  /external/chromium_org/chrome/browser/ui/views/frame/
opaque_browser_frame_view_layout.h 54 // This does not include any client edge. If |restored| is true, acts as if
55 // the window is restored regardless of the real mode.
56 int FrameBorderThickness(bool restored) const;
63 // frame, any title area, and any connected client edge. If |restored| is
64 // true, acts as if the window is restored regardless of the real mode.
65 int NonClientTopBorderHeight(bool restored) const;
67 int GetTabStripInsetsTop(bool restored) const;
69 // Returns the y-coordinate of the caption buttons. If |restored| is true,
70 // acts as if the window is restored regardless of the real mode.
71 int CaptionButtonY(bool restored) const
    [all...]
opaque_browser_frame_view_layout.cc 20 // window in restored mode, to use to drag the window around.
30 // The frame border is only visible in restored mode and is hardcoded to 4 px on
60 // In restored mode, the New Tab button isn't at the same height as the caption
196 int OpaqueBrowserFrameViewLayout::FrameBorderThickness(bool restored) const {
197 return (!restored && (delegate_->IsMaximized() ||
210 bool restored) const {
212 return std::max(FrameBorderThickness(restored) + delegate_->GetIconSize(),
213 CaptionButtonY(restored) + kCaptionButtonHeightWithPadding) +
214 TitlebarBottomThickness(restored);
217 return FrameBorderThickness(restored)
    [all...]
opaque_browser_frame_view.h 115 // This does not include any client edge. If |restored| is true, acts as if
116 // the window is restored regardless of the real mode.
117 int FrameBorderThickness(bool restored) const;
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_database.cc 276 std::vector<SBPrefix> restored; local
277 prefix_set->GetPrefixes(&restored);
280 if (restored.size() == prefixes.size() &&
281 std::equal(prefixes.begin(), prefixes.end(), restored.begin()))
288 if (restored.size() != prefixes.size())
308 // Check whether |restored| is unsorted, or has duplication.
309 if (restored.size()) {
312 SBPrefix prev = restored[0];
313 for (size_t i = 0; i < restored.size(); prev = restored[i], ++i)
604 std::vector<SBPrefix> restored; local
    [all...]
  /cts/tests/tests/net/src/android/net/http/cts/
SslCertificateTest.java 202 SslCertificate restored = SslCertificate.restoreState(saved); local
203 assertEquals(ssl.getValidNotAfter(), restored.getValidNotAfter());
204 assertEquals(ssl.getValidNotBefore(), restored.getValidNotBefore());
  /external/llvm/lib/CodeGen/
ShrinkWrapping.cpp 540 // Machine CFG around which CSRs must be spilled and restored.
546 /// addUsesForMEMERegion - add uses of CSRs spilled or restored in
732 /// calcRestorePlacements - determine which CSRs should be restored
734 /// of changes to restored reg sets. Add MBB to the set of blocks
772 // Remove the CSRs that are restored in the return blocks.
833 // Add uses for CSRs spilled or restored at branch, join points.
949 CSRegSet restored; local
1001 CSRegSet restored = BI->second; local
    [all...]
  /external/chromium_org/chrome/browser/history/
in_memory_url_index.h 109 // data cannot be restored from its cache file then it is rebuilt from the
140 bool restored() const { function in class:history::InMemoryURLIndex
215 // Callback function that sets the private data from the just-restored-from-
  /external/chromium_org/content/test/gpu/gpu_tests/
context_lost.py 79 raise page_test.Failure('Test failed (context not restored properly?)')
  /external/chromium_org/chrome/browser/ui/panels/
panel_browsertest.cc 230 // Verify panel is restored to its original size.
241 // Hover again on the last panel which is now restored, to reset the
548 gfx::Rect restored = panel->GetRestoredBounds(); local
549 EXPECT_EQ(bounds.x(), restored.x());
550 EXPECT_GT(bounds.y(), restored.y());
551 EXPECT_EQ(bounds.width(), restored.width());
552 EXPECT_LT(bounds.height(), restored.height());
557 restored = panel->GetRestoredBounds();
558 EXPECT_EQ(bounds.x(), restored.x());
559 EXPECT_GT(bounds.y(), restored.y())
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DocumentsActivity.java 216 if (!mState.restored) {
279 mState.restored = true;
315 // Update the restored stack to ensure we have freshest data
333 mState.restored = true;
335 // Show drawer when no stack restored, but only when requesting
863 // Update the restored stack to ensure we have freshest data
1144 public boolean restored = false; field in class:DocumentsActivity.State
    [all...]
  /external/bouncycastle/
import_bouncycastle.sh 249 echo Unneeded source $s restored by patch $i
  /external/chromium_org/chrome/renderer/resources/extensions/
platform_app.js 39 * invoked, the getter and setter are restored to default behaviors.

Completed in 374 milliseconds

1 2 3