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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/chrome/browser/chromeos/policy/
recommendation_restorer.cc 40 &RecommendationRestorer::Restore, base::Unretained(this), true));
44 &RecommendationRestorer::Restore, base::Unretained(this), true));
48 &RecommendationRestorer::Restore, base::Unretained(this), true));
52 &RecommendationRestorer::Restore, base::Unretained(this), true));
56 &RecommendationRestorer::Restore, base::Unretained(this), true));
60 &RecommendationRestorer::Restore, base::Unretained(this), true));
96 void RecommendationRestorer::Restore(bool allow_delay,
124 Restore(false, prefs::kAccessibilityLargeCursorEnabled);
125 Restore(false, prefs::kAccessibilitySpokenFeedbackEnabled);
126 Restore(false, prefs::kAccessibilityHighContrastEnabled)
    [all...]
recommendation_restorer.h 52 void Restore(bool allow_delay, const std::string& pref_name);
  /external/chromium_org/ui/gfx/
scoped_canvas.h 21 canvas_->Restore();
25 canvas_->Restore();
  /external/chromium_org/ash/wm/
window_state_util.cc 26 window_state->Restore();
  /external/chromium_org/ui/platform_window/
platform_window.h 42 virtual void Restore() = 0;
  /external/lldb/include/lldb/Host/
Terminal.h 76 /// descriptor and later restore that state as it originally was.
113 /// Restore the TTY state to the cached state.
115 /// Restore the state of the TTY using the cached values from a
123 Restore () const;
130 /// settings that can be used to restore a previous state,
211 /// Restore the TTY state for state at index \a idx.
218 Restore (uint32_t idx) const;
  /external/chromium_org/extensions/browser/app_window/
app_window_interactive_uitest.cc 26 window->Restore();
36 window->Restore();
52 window->Restore();
154 window->Restore();
181 window->Restore();
  /external/chromium_org/third_party/skia/src/core/
SkRecordOpts.cpp 20 // Save-NoDraw-Restore sequences better than we can here.
46 // Turns the logical NoOp Save and Restore in Save-Draw*-Restore patterns into actual NoOps.
50 Is<Restore> >
55 record->replace<NoOp>(end-1); // Restore
59 // Turns logical no-op Save-[non-drawing command]*-Restore patterns into actual no-ops.
61 // Star matches greedily, so we also have to exclude Save and Restore.
62 // Nested SaveLayers need to be excluded, or we'll match their Restore!
66 Is<Restore>,
68 Is<Restore> >
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
android_device_unittest.py 26 self._android_device_stub.Restore()
  /external/chromium_org/ui/base/
base_window.h 47 // Returns the restore state for the window (platform dependent).
80 virtual void Restore() = 0;
  /external/chromium_org/third_party/skia/tests/
RecordPatternTest.cpp 11 Is<Restore> >
22 // Build up a save-clip-restore block. The pattern will match only it's complete.
29 recorder.restore();
33 REPORTER_ASSERT(r, pattern.third<Restore>() != NULL);
42 // There will be two save-clipRect-restore blocks [0,3) and [3,6).
46 recorder.restore();
68 recorder.restore();
74 Pattern3<Is<Save>, Star<Is<ClipRect> >, Is<Restore> > pattern;
80 recorder.restore();
85 recorder.restore();
    [all...]
RecordReplaceDrawTest.cpp 49 assert_type<SkRecords::Restore>(r, rerecord, 2);
67 assert_type<SkRecords::Restore>(r, rerecord, 2);
68 assert_type<SkRecords::Restore>(r, rerecord, 3);
90 recorder.restore();
120 assert_type<SkRecords::Restore>(r, rerecord, 4);
122 assert_type<SkRecords::Restore>(r, rerecord, 6);
RecordDrawTest.cpp 47 assert_type<SkRecords::Restore> (r, rerecord, 2);
62 assert_type<SkRecords::Restore> (r, rerecord, 2);
63 assert_type<SkRecords::Restore> (r, rerecord, 3);
86 assert_type<SkRecords::Restore> (r, translateRecord, 3);
138 recorder.restore();
199 assert_type<SkRecords::Restore> (r, rerecord, 2);
222 assert_type<SkRecords::Restore> (r, rerecord, 2);
232 // bounds for the saveLayer, clip, and restore to be greater than the bounds of the picture.
233 // (We were applying the saveLayer paint to the bounds after restore, which makes no sense.)
246 recorder.restore();
    [all...]
  /external/llvm/lib/Target/X86/
X86CompilationCallback_Win64.asm 47 ; Restore all XMM arg registers.
53 ; Restore RSP.
56 ; Restore all int arg registers
63 ; Restore RBP.
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
android_browser_finder_unittest.py 26 self._stubs.Restore()
27 self._android_device_stub.Restore()
28 self._apb_stub.Restore()
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
lattice_armv7.S 43 ldr r9, [sp, #32] @ Restore the inner loop counter to order_coef
45 add r0, r9, asl #1 @ Restore r0 to &ar_g_Q0[order_coef]
46 add r2, r9, asl #1 @ Restore r2 to &cth_Q15[order_coef]
47 add r3, r9, asl #1 @ Restore r3 to &sth_Q15[order_coef]
  /external/chromium_org/ui/ozone/platform/test/
test_window.h 39 virtual void Restore() OVERRIDE;
  /external/chromium_org/extensions/browser/api/storage/
weak_unlimited_settings_storage.cc 67 bool WeakUnlimitedSettingsStorage::Restore() { return delegate_->Restore(); }
settings_storage_quota_enforcer.h 49 virtual bool Restore() OVERRIDE;
  /external/chromium_org/chrome/browser/extensions/api/storage/
policy_value_store.cc 61 // If the database is corrupted, try to restore it.
67 if (delegate_->Restore())
175 bool PolicyValueStore::Restore() { return delegate_->Restore(); }
policy_value_store.h 59 virtual bool Restore() OVERRIDE;
  /external/lldb/source/Host/common/
Terminal.cpp 167 // Restore the state of the TTY using the cached values from a
171 TerminalState::Restore () const
191 // Restore the original signal handler.
204 // that can be used to restore a previous state.
264 // Restore the state at index "idx".
266 // Returns true if the restore was successful, false otherwise.
269 TerminalStateSwitcher::Restore (uint32_t idx) const
281 if (m_ttystates[idx].Restore())
296 // Returns true if the restore was successful, false otherwise.
  /external/llvm/include/llvm/CodeGen/
RegisterScavenging.h 45 ScavengedInfo(int FI = -1) : FrameIndex(FI), Reg(0), Restore(nullptr) {}
55 const MachineInstr *Restore;
  /bionic/libc/arch-x86/bionic/
syscall.S 44 # Restore the callee save registers.
  /external/chromium_org/chrome/browser/sessions/
session_restore_android.cc 20 // We use it to restore tabs from "recently closed" too.
37 new_web_contents->GetController().Restore(

Completed in 655 milliseconds

1 2 3 4 5 6 7 8 9