/external/webkit/Tools/TestWebKitAPI/mac/ |
main.mm | 38 TestWebKitAPI::TestsController::shared().dumpTestNames(); 40 passed = TestWebKitAPI::TestsController::shared().runTestNamed(argument);
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/ |
InjectedBundleMain.cpp | 38 WTR::InjectedBundle::shared().initialize(bundle, initializationUserData);
|
InjectedBundlePage.cpp | 393 if (!InjectedBundle::shared().isTestRunning()) 396 if (InjectedBundle::shared().topLoadingFrame()) 398 InjectedBundle::shared().setTopLoadingFrame(frame); 407 if (!InjectedBundle::shared().isTestRunning()) 410 if (frame != InjectedBundle::shared().topLoadingFrame()) 412 InjectedBundle::shared().setTopLoadingFrame(0); 414 if (InjectedBundle::shared().layoutTestController()->waitToDump()) 417 InjectedBundle::shared().done(); 433 InjectedBundle::shared().os() << "frame '" << name << "' "; 435 InjectedBundle::shared().os() << "scrolled to " << x << "," << y << "\n" [all...] |
LayoutTestController.cpp | 141 InjectedBundle::shared().os() << message << "\n"; 142 InjectedBundle::shared().done(); 147 if (!InjectedBundle::shared().isTestRunning()) 150 if (m_waitToDump && !InjectedBundle::shared().topLoadingFrame()) 151 InjectedBundle::shared().page()->dump(); 160 WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page()); 168 WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page()); 174 WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page()); 180 WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page()); 186 WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page()) [all...] |
EventSendingController.cpp | 115 WKBundlePageRef page = InjectedBundle::shared().page()->page(); 125 WKBundlePageRef page = InjectedBundle::shared().page()->page(); 137 WKBundlePageSimulateMouseMotion(InjectedBundle::shared().page()->page(), m_position, m_time); 162 WKBundlePageSetPageZoomFactor(InjectedBundle::shared().page()->page(), 1); 164 double zoomFactor = WKBundlePageGetTextZoomFactor(InjectedBundle::shared().page()->page()); 165 WKBundlePageSetTextZoomFactor(InjectedBundle::shared().page()->page(), zoomFactor * ZoomMultiplierRatio); 171 WKBundlePageSetPageZoomFactor(InjectedBundle::shared().page()->page(), 1); 173 double zoomFactor = WKBundlePageGetTextZoomFactor(InjectedBundle::shared().page()->page()); 174 WKBundlePageSetTextZoomFactor(InjectedBundle::shared().page()->page(), zoomFactor / ZoomMultiplierRatio); 180 WKBundlePageSetTextZoomFactor(InjectedBundle::shared().page()->page(), 1) [all...] |
/external/valgrind/main/helgrind/tests/ |
hg01_all_ok.c | 7 static int shared; variable 12 shared++;
|
/external/webkit/Source/WebKit2/WebProcess/ApplicationCache/ |
WebApplicationCacheManager.cpp | 42 WebApplicationCacheManager& WebApplicationCacheManager::shared() function in class:WebKit::WebApplicationCacheManager 44 static WebApplicationCacheManager& shared = *new WebApplicationCacheManager; local 45 return shared; 59 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared()); 83 WebProcess::shared().connection()->send(Messages::WebApplicationCacheManagerProxy::DidGetApplicationCacheOrigins(identifiers, callbackID), 0); 88 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared()); 101 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared());
|
/external/webkit/Source/WebKit2/WebProcess/KeyValueStorage/ |
WebKeyValueStorageManager.cpp | 43 WebKeyValueStorageManager& WebKeyValueStorageManager::shared() function in class:WebKit::WebKeyValueStorageManager 45 static WebKeyValueStorageManager& shared = *new WebKeyValueStorageManager; local 46 return shared; 60 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared()); 80 WebProcess::shared().connection()->send(Messages::WebKeyValueStorageManagerProxy::DidGetKeyValueStorageOrigins(identifiers, callbackID), 0); 85 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared()); 96 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared());
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
WebDatabaseManager.cpp | 43 WebDatabaseManager& WebDatabaseManager::shared() function in class:WebKit::WebDatabaseManager 45 static WebDatabaseManager& shared = *new WebDatabaseManager; local 46 return shared; 70 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared()); 109 WebProcess::shared().connection()->send(Messages::WebDatabaseManagerProxy::DidGetDatabasesByOrigin(originAndDatabasesVector, callbackID), 0); 114 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared()); 124 WebProcess::shared().connection()->send(Messages::WebDatabaseManagerProxy::DidGetDatabaseOrigins(identifiers, callbackID), 0); 129 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared()); 140 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared()); 151 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared()); [all...] |
WebPlatformStrategies.cpp | 77 WebCookieManager::shared().dispatchCookiesDidChange(); 107 WebProcess::shared().connection()->sendSync(Messages::WebContext::GetPlugins(m_shouldRefreshPlugins), 120 return WebProcess::shared().isLinkVisited(linkHash); 125 WebProcess::shared().addVisitedLink(linkHash);
|
/bionic/libc/bionic/ |
semaphore.c | 38 * 31-bit signed value and a 1-bit 'shared' flag 59 * for the shared flag. 66 * One bit is used for the shared flag, another one for the 86 /* return the shared bitflag from a semaphore */ 165 unsigned int shared = (*pvalue & SEMCOUNT_SHARED_MASK); local 177 while (__bionic_cmpxchg((int)(old|shared), 178 (int)(new|shared), 189 unsigned int shared = (*pvalue & SEMCOUNT_SHARED_MASK); local 201 while (__bionic_cmpxchg((int)(old|shared), 202 (int)(new|shared), 219 unsigned int shared = (*pvalue & SEMCOUNT_SHARED_MASK); local 248 unsigned shared; local 270 unsigned int shared; local 338 unsigned int shared; local [all...] |
/external/webkit/Tools/MiniBrowser/win/ |
main.cpp | 62 MiniBrowser::shared().initialize(hInstance); 65 MiniBrowser::shared().createNewWindow(); 75 if (!MiniBrowser::shared().handleMessage(&message))
|
MiniBrowser.h | 35 static MiniBrowser& shared();
|
/external/webkit/Source/WebKit2/WebProcess/ResourceCache/ |
WebResourceCacheManager.cpp | 44 WebResourceCacheManager& WebResourceCacheManager::shared() function in class:WebKit::WebResourceCacheManager 46 static WebResourceCacheManager& shared = *new WebResourceCacheManager; local 47 return shared; 66 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared()); 98 WebProcess::shared().connection()->send(Messages::WebResourceCacheManagerProxy::DidGetCacheOrigins(identifiers, callbackID), 0); 103 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared()); 130 WebProcess::LocalTerminationDisabler terminationDisabler(WebProcess::shared()); 134 WebProcess::shared().clearResourceCaches(resourceCachesToClear);
|
/external/webkit/Tools/WebKitAPITest/ |
Test.h | 51 const bool TEST_CLASS_NAME(testCaseName, testName)::initialized = (TestsController::shared().addTest(new TEST_CLASS_NAME(testCaseName, testName)), true); \ 55 #define TEST_ASSERT(expression) do { if (!(expression)) { TestsController::shared().testFailed(__FILE__, __LINE__, #expression); return; } } while (0)
|
/packages/providers/UserDictionaryProvider/ |
Android.mk | 11 LOCAL_CERTIFICATE := shared
|
/sdk/emulator/opengl/tests/ut_rendercontrol_dec/ |
Android.mk | 3 $(call emugl-begin-host-shared-library,libut_rendercontrol_dec)
|
/external/skia/src/ports/ |
SkFontHost_tables.cpp | 47 SkSharedTTHeader shared; local 48 if (stream->read(&shared, sizeof(shared)) != sizeof(shared)) { 56 uint32_t tag = SkEndian_SwapBE32(shared.fCollection.fTag); 58 if (shared.fCollection.fNumOffsets == 0) { 62 offset = SkEndian_SwapBE32(shared.fCollection.fOffset0); 67 if (stream->read(&shared, sizeof(shared)) != sizeof(shared)) { [all...] |
/development/tools/emulator/opengl/system/gralloc/ |
Android.mk | 5 $(call emugl-begin-shared-library,gralloc.goldfish) 7 $(call emugl-set-shared-library-subpath,hw)
|
/external/webkit/Source/WebKit2/ |
Makefile | 8 include ../Makefile.shared
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/ |
PluginProcessConnectionManager.h | 44 static PluginProcessConnectionManager& shared();
|
/external/webkit/Tools/MiniBrowser/ |
Makefile | 9 include ../../Makefile.shared
|
/external/webkit/Tools/TestWebKitAPI/ |
Makefile | 9 include ../../Makefile.shared
|
/external/webkit/Tools/WebKitTestRunner/ |
Makefile | 9 include ../../Makefile.shared
|
/hardware/invensense/libsensors_iio/software/build/android/ |
shared.mk | 44 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 47 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 52 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 55 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 60 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 63 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 68 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 71 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
|