Home
last modified time | relevance | path

Searched refs:productVersion (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebKitTools/Scripts/
Dwebkitdirs.pm612 chomp(my $productVersion = `sw_vers -productVersion`);
613 if ($productVersion lt "10.4") {
616 print "You have " . $productVersion . ", thus the build will most likely fail.\n";
/external/webkit/WebKit/win/WebCoreSupport/
DWebChromeClient.cpp532 LPCTSTR productVersion; in exceededDatabaseQuota() local
534 …data(), TEXT("\\StringFileInfo\\040904b0\\ProductVersion"), (void**)&productVersion, &productVersi… in exceededDatabaseQuota()
536 if (_tcsncmp(TEXT("3.1"), productVersion, productVersionLength) > 0) { in exceededDatabaseQuota()
/external/qemu/
DMakefile.android50 DARWIN_VERSION := $(strip $(shell sw_vers -productVersion))
/external/webkit/JavaScriptCore/
DJavaScriptCore.scons240 … version_pieces = Popen(["sw_vers", "-productVersion"], stdout = PIPE).communicate()[0].split('.')
/external/webkit/WebKit/win/
DWebView.cpp2000 LPCTSTR productVersion; in webKitVersion() local
2002 if (!VerQueryValue(data, (LPTSTR)(LPCTSTR)key, (void**)&productVersion, &productVersionLength)) in webKitVersion()
2004 versionStr = String(productVersion, productVersionLength); in webKitVersion()