Home
last modified time | relevance | path

Searched refs:targetContext (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/ui/file_manager/image_loader/
Dimage_loader.js225 var targetContext = target.getContext('2d');
226 targetContext.save();
227 targetContext.translate(target.width / 2, target.height / 2);
228 targetContext.rotate(orientation * Math.PI / 2);
229 targetContext.drawImage(
235 targetContext.restore();
/external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/
DApplicationData.java42 public static boolean clearAppData(Context targetContext) throws InterruptedException { in clearAppData() argument
43 final String appDir = getAppDirFromTargetContext(targetContext); in clearAppData()
73 public static String getAppDirFromTargetContext(Context targetContext) { in getAppDirFromTargetContext() argument
74 String cacheDir = targetContext.getCacheDir().getAbsolutePath(); in getAppDirFromTargetContext()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/
Dloupe.js103 var targetContext = targetCanvas.getContext('2d');
104 targetContext.fillStyle = 'rgba(255, 255, 255, 1)';
105 targetContext.fillRect(0, 0, targetCanvas.width, targetCanvas.height);
130 targetContext.fillStyle = 'rgba(' + colorString + ')';
131 targetContext.fillRect(
/external/chromium_org/chrome/android/shell/javatests/src/org/chromium/chrome/shell/
DChromeShellTestBase.java39 protected static void startChromeBrowserProcessSync(final Context targetContext) { in startChromeBrowserProcessSync() argument
45 BrowserStartupController.get(targetContext).startBrowserProcessesSync( in startChromeBrowserProcessSync()
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/invalidation/
DInvalidationControllerTest.java330 IntentSavingContext(Context targetContext) { in IntentSavingContext() argument
331 super(targetContext); in IntentSavingContext()
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DV8WindowShell.cpp77 static void setInjectedScriptContextDebugId(v8::Handle<v8::Context> targetContext, int debugId) in setInjectedScriptContextDebugId() argument
79 V8PerContextDebugData::setContextDebugData(targetContext, "injected", debugId); in setInjectedScriptContextDebugId()