Searched defs:restore (Results 26 - 50 of 88) sorted by relevance

1234

/external/javassist/src/main/javassist/bytecode/analysis/
H A DAnalyzer.java258 private int getNext(CodeIterator iter, int of, int restore) throws BadBytecode { argument
262 iter.move(restore);
/external/lldb/test/unittest2/test/
H A Dtest_discovery.py189 def restore(): function in function:TestDiscovery.test_discover_with_modules_that_fail_to_import
193 self.addCleanup(restore)
H A Dtest_program.py220 def restore(): function in function:TestCommandLineArgs.testCatchBreakInstallsHandler
222 self.addCleanup(restore)
/external/skia/gm/
H A Dpoly2poly.cpp16 void restore();
48 void SkJSCanvas::restore() { fTarget->restore(); } function in class:SkJSCanvas
121 ctx.restore();
146 ctx.restore();
171 ctx.restore();
224 canvas->restore();
242 canvas->restore();
250 canvas->restore();
258 canvas->restore();
[all...]
/external/skia/src/core/
H A DSkMatrixClipStateMgr.cpp113 new (fCurMCState) MatrixClipState(NULL, 0); // balanced in restore()
131 new (newTop) MatrixClipState(fCurMCState, flags); // balanced in restore()
172 // restore
182 void SkMatrixClipStateMgr::restore() { function in class:SkMatrixClipStateMgr
269 // Don't write a restore if the open state is one in which a saveLayer
270 // is nested. The save after the saveLayer's restore will close it.
H A DSkClipStack.cpp175 // Only clips within the same save/restore frame (as captured by
490 // the deepest save/restore stack we expect to see.
581 void SkClipStack::restore() { function in class:SkClipStack
/external/chromium_org/ash/wm/
H A Dworkspace_controller_unittest.cc439 // Since the restore from minimize will restore to the pre-minimize
440 // state (tested elsewhere), we abandon the current size and restore
444 gfx::Rect restore = window_state->GetRestoreBoundsInScreen(); local
446 EXPECT_EQ("0,1 101x102", restore.ToString());
448 w1->SetBounds(restore);
1290 // Show the browser (which should restore it).
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCanvasAgent.cpp94 void InspectorCanvasAgent::restore() function in class:blink::InspectorCanvasAgent
H A DInspectorConsoleAgent.cpp135 void InspectorConsoleAgent::restore() function in class:blink::InspectorConsoleAgent
H A DInspectorLayerTreeAgent.cpp172 void InspectorLayerTreeAgent::restore() function in class:blink::InspectorLayerTreeAgent
H A DInspectorResourceAgent.cpp198 void InspectorResourceAgent::restore() function in class:blink::InspectorResourceAgent
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DInspectorDatabaseAgent.cpp279 void InspectorDatabaseAgent::restore() function in class:blink::InspectorDatabaseAgent
/external/chromium_org/third_party/skia/src/utils/
H A DSkCamera.cpp306 void Sk3DView::restore() { function in class:Sk3DView
/external/chromium_org/v8/test/mjsunit/es6/
H A Dunscopables.js13 function restore(object, oldProto) {
64 restore(object, oldObjectProto);
77 restore(object, oldObjectProto);
78 restore(proto, oldProtoProto);
/external/skia/src/utils/
H A DSkCamera.cpp306 void Sk3DView::restore() { function in class:Sk3DView
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DInspectorFileSystemAgent.cpp695 void InspectorFileSystemAgent::restore() function in class:blink::InspectorFileSystemAgent
/external/chromium_org/third_party/skia/src/core/
H A DSkClipStack.cpp175 // Only clips within the same save/restore frame (as captured by
490 // the deepest save/restore stack we expect to see.
581 void SkClipStack::restore() { function in class:SkClipStack
/external/clang/lib/CodeGen/
H A DEHScopeStack.h60 static type restore(CodeGenFunction &CGF, saved_type value) { return value; } function in struct:clang::CodeGen::InvariantValue
186 A0 a0 = DominatingValue<A0>::restore(CGF, a0_saved);
203 A0 a0 = DominatingValue<A0>::restore(CGF, a0_saved);
204 A1 a1 = DominatingValue<A1>::restore(CGF, a1_saved);
223 A0 a0 = DominatingValue<A0>::restore(CGF, a0_saved);
224 A1 a1 = DominatingValue<A1>::restore(CGF, a1_saved);
225 A2 a2 = DominatingValue<A2>::restore(CGF, a2_saved);
246 A0 a0 = DominatingValue<A0>::restore(CGF, a0_saved);
247 A1 a1 = DominatingValue<A1>::restore(CGF, a1_saved);
248 A2 a2 = DominatingValue<A2>::restore(CG
[all...]
H A DCGCleanup.cpp71 /// necessary to restore it to usability at the current insertion
73 RValue DominatingValue<RValue>::saved_type::restore(CodeGenFunction &CGF) { function in class:DominatingValue::saved_type
822 // Either way, all we need to do is restore the IP we cleared before.
/external/clang/lib/Parse/
H A DRAIIObjectsForParser.h273 /// restore - This can be used to restore the state early, before the dtor
275 void restore() { function in class:clang::ColonProtectionRAIIObject
280 restore();
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DInspectorIndexedDBAgent.cpp586 void InspectorIndexedDBAgent::restore() function in class:blink::InspectorIndexedDBAgent
/external/chromium_org/third_party/skia/include/core/
H A DSkCanvas.h185 * installed. Note that this can change on other calls like save/restore,
313 /** save the matrix state, restoring it on restore() */
316 /** save the clip state, restoring it on restore() */
343 When the balancing call to restore() is made, the previous matrix, clip,
352 the balancing call to restore() is made is that offscreen transfered to
359 offscreen when restore() is called
375 offscreen when restore() is called
384 the balancing call to restore() is made is that offscreen transfered to
390 @param alpha This is applied to the offscreen when restore() is called.
405 @param alpha This is applied to the offscreen when restore() i
1452 void restore() { function in class:SkAutoCanvasRestore
[all...]
/external/chromium_org/third_party/skia/include/gpu/
H A DGrContext.h759 * Save/restore the view-matrix in the context. It can optionally adjust a paint to account
767 * Note that when restore is called (or in the destructor) the context's matrix will be
776 ~AutoMatrix() { this->restore(); }
784 this->restore();
798 this->restore();
822 this->restore();
853 void restore() { function in class:GrContext::AutoMatrix
/external/iptables/iptables/
H A Dip6tables.c239 " --ipv4 -4 Error (line is ignored by ip6tables-restore)\n"
240 " --ipv6 -6 Nothing (line is ignored by iptables-restore)\n"
1290 struct xtc_handle **handle, bool restore)
1581 if (restore) {
1584 "ip6tables-restore");
1741 if (!restore && !xtables_lock(wait)) {
1289 do_command6(int argc, char *argv[], char **table, struct xtc_handle **handle, bool restore) argument
H A Diptables.c233 " --ipv4 -4 Nothing (line is ignored by ip6tables-restore)\n"
234 " --ipv6 -6 Error (line is ignored by iptables-restore)\n"
1286 struct xtc_handle **handle, bool restore)
1575 if (restore) {
1578 "iptables-restore");
1738 if (!restore && !xtables_lock(wait)) {
1285 do_command4(int argc, char *argv[], char **table, struct xtc_handle **handle, bool restore) argument

Completed in 422 milliseconds

1234