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

1 2

  /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()) ?
app_panel_browser_frame_view.cc 30 // The frame border is only visible in restored mode and is hardcoded to 1 px on
99 bool restored) const {
303 // with restored windows, so when the window is restored, instead of
310 // space above the icon, since the 3D edge (+ client edge, for restored
  /packages/apps/Email/tests/src/com/android/email/provider/
AccountBackupRestoreTests.java 119 // Accounts will be restored next time we touch the db.
131 Account restored = new Account(); local
132 restored.restore(c);
134 HostAuth recv = HostAuth.restoreHostAuthWithId(mMockContext, restored.mHostAuthKeyRecv);
136 HostAuth send = HostAuth.restoreHostAuthWithId(mMockContext, restored.mHostAuthKeySend);
141 assertRestoredAccountEqual(saved1, restored);
145 restored = new Account();
146 restored.restore(c);
148 recv = HostAuth.restoreHostAuthWithId(mMockContext, restored.mHostAuthKeyRecv);
150 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/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 541 // Machine CFG around which CSRs must be spilled and restored.
547 /// addUsesForMEMERegion - add uses of CSRs spilled or restored in
733 /// calcRestorePlacements - determine which CSRs should be restored
735 /// of changes to restored reg sets. Add MBB to the set of blocks
773 // Remove the CSRs that are restored in the return blocks.
834 // Add uses for CSRs spilled or restored at branch, join points.
950 CSRegSet restored; local
1002 CSRegSet restored = BI->second; local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
TextEditorHighlighter.js 95 var restored = this._highlightLines(startLine, endLine);
96 if (!restored) {
111 return restored;
  /external/bouncycastle/
import_bouncycastle.sh 215 echo Unneeded source $s restored by patch $i
  /external/v8/test/mjsunit/harmony/
block-leave.js 189 f(); // The context could be restored from the stack after the call.
  /external/v8/test/mjsunit/
with-leave.js 179 f(); // The context could be restored from the stack after the call.
  /packages/apps/Email/tests/src/com/android/email/
ControllerProviderOpsTests.java 239 Message restored = EmailContent.Message.restoreMessageWithId(mProviderContext, local
241 assertEquals(trashBoxId, restored.mMailboxKey);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jar 
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 52 recognition process so the input state may be restored back to a prior state.
884 # and then ensures the stream's position is restored before
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java 3288 String restored = ""; local
    [all...]

Completed in 332 milliseconds

1 2