/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
Platform.java | 20 * Minimal GWT emulation of {@code com.google.common.collect.Platform}. 26 class Platform { 42 "Platform.newArray is not supported in GWT yet.");
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
SerializableTester.java | 61 return Platform.reserialize(object);
|
/external/lldb/source/Plugins/Platform/MacOSX/ |
PlatformMacOSX.h | 26 static lldb_private::Platform*
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
Canvas2DLayerManagerTest.cpp | 27 #include "platform/graphics/Canvas2DLayerManager.h" 31 #include "platform/graphics/test/MockWebGraphicsContext3D.h" 32 #include "public/platform/Platform.h" 33 #include "public/platform/WebGraphicsContext3DProvider.h" 34 #include "public/platform/WebThread.h" 247 blink::Platform::current()->currentThread()->exitRunLoop(); 275 blink::Platform::current()->currentThread()->postTask(new DeferredFrameTestTask(this, layer.get(), true)); 276 blink::Platform::current()->currentThread()->enterRunLoop(); 283 blink::Platform::current()->currentThread()->postTask(new DeferredFrameTestTask(this, layer.get(), true)) [all...] |
Canvas2DLayerManager.cpp | 26 #include "platform/graphics/Canvas2DLayerManager.h" 28 #include "public/platform/Platform.h" 65 blink::Platform::current()->currentThread()->removeTaskObserver(this); 84 blink::Platform::current()->currentThread()->removeTaskObserver(this); 108 blink::Platform::current()->currentThread()->addTaskObserver(this);
|
/external/chromium_org/content/child/ |
database_util.cc | 9 #include "third_party/WebKit/public/platform/WebString.h" 12 using blink::Platform; 17 Platform::FileHandle DatabaseUtil::DatabaseOpenFile(
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ViewportDescription.cpp | 36 #include "platform/weborigin/KURL.h" 37 #include "public/platform/Platform.h" 226 blink::Platform::current()->histogramEnumeration("Viewport.MetaTagType", XhtmlMobileProfile, TypeCount); 228 blink::Platform::current()->histogramEnumeration("Viewport.MetaTagType", NoViewportTag, TypeCount); 235 blink::Platform::current()->histogramEnumeration("Viewport.MetaTagType", ConstantWidth, TypeCount); 245 blink::Platform::current()->histogramSparse("Viewport.OverviewZoom", overviewZoomPercent); 249 blink::Platform::current()->histogramEnumeration("Viewport.MetaTagType", DeviceWidth, TypeCount); 252 blink::Platform::current()->histogramEnumeration("Viewport.MetaTagType", MetaWidthOther, TypeCount); 255 blink::Platform::current()->histogramEnumeration("Viewport.MetaTagType", MetaHandheldFriendly, TypeCount) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLParserThread.cpp | 34 #include "platform/Task.h" 35 #include "platform/TaskSynchronizer.h" 36 #include "public/platform/Platform.h" 70 if (blink::Platform::current()->currentThread() && s_sharedThread->isRunning()) { 97 m_thread = adoptPtr(blink::Platform::current()->createThread("HTMLParserThread"));
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
Crypto.cpp | 6 #include "platform/Crypto.h" 8 #include "public/platform/Platform.h" 9 #include "public/platform/WebArrayBuffer.h" 10 #include "public/platform/WebCrypto.h" 11 #include "public/platform/WebCryptoAlgorithm.h" 35 blink::WebCrypto* crypto = blink::Platform::current()->crypto(); 51 return adoptPtr(blink::Platform::current()->crypto()->createDigestor(toWebCryptoAlgorithmId(algorithm)));
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
ParallelJobs.h | 31 #include "platform/Task.h" 32 #include "public/platform/Platform.h" 33 #include "public/platform/WebThread.h" 67 size_t numberOfJobs = std::max(static_cast<size_t>(2), std::min(requestedJobNumber, blink::Platform::current()->numberOfProcessors())); 71 OwnPtr<blink::WebThread> thread = adoptPtr(blink::Platform::current()->createThread("Unfortunate parallel worker"));
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
ScrollbarThemeAura.cpp | 32 #include "platform/scroll/ScrollbarThemeAura.h" 34 #include "platform/LayoutTestSupport.h" 35 #include "platform/PlatformMouseEvent.h" 36 #include "platform/RuntimeEnabledFeatures.h" 37 #include "platform/graphics/GraphicsContext.h" 38 #include "platform/scroll/ScrollbarThemeClient.h" 39 #include "platform/scroll/ScrollbarThemeOverlay.h" 40 #include "public/platform/Platform.h" 41 #include "public/platform/WebRect.h [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
SpinLockTest.cpp | 34 #include "platform/Task.h" 35 #include "public/platform/Platform.h" 36 #include "public/platform/WebThread.h" 83 OwnPtr<blink::WebThread> thread1 = adoptPtr(blink::Platform::current()->createThread("thread1")); 84 OwnPtr<blink::WebThread> thread2 = adoptPtr(blink::Platform::current()->createThread("thread2"));
|
URLTestHelpers.cpp | 34 #include "public/platform/Platform.h" 35 #include "public/platform/WebURL.h" 36 #include "public/platform/WebURLResponse.h" 37 #include "public/platform/WebUnitTestSupport.h" 62 std::string filePath = std::string(Platform::current()->unitTestSupport()->webKitRootDir().utf8().data()); 67 Platform::current()->unitTestSupport()->registerMockedURL(fullURL, response, WebString::fromUTF8(filePath.c_str()));
|
AssociatedURLLoaderTest.cpp | 33 #include "public/platform/Platform.h" 34 #include "public/platform/WebString.h" 35 #include "public/platform/WebThread.h" 36 #include "public/platform/WebURL.h" 37 #include "public/platform/WebURLLoader.h" 38 #include "public/platform/WebURLLoaderClient.h" 39 #include "public/platform/WebURLRequest.h" 40 #include "public/platform/WebURLResponse.h" 41 #include "public/platform/WebUnitTestSupport.h [all...] |
/external/guava/guava/src/com/google/common/collect/ |
Platform.java | 30 class Platform { 95 private Platform() {}
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
SetHashCodeTester.java | 70 Platform.getMethod(SetHashCodeTester.class, "testHashCode"), 71 Platform.getMethod(SetHashCodeTester.class, "testHashCode_containingNull") };
|
ListListIteratorTester.java | 24 import static com.google.common.collect.testing.testers.Platform.listListIteratorTesterNumIterations; 118 return Platform.getMethod( 128 return Platform.getMethod(
|
/external/lldb/source/Plugins/Platform/Linux/ |
PlatformLinux.h | 17 #include "lldb/Target/Platform.h" 21 class PlatformLinux : public Platform 39 static Platform * 58 // lldb_private::Platform functions
|
/external/chromium_org/extensions/common/features/ |
simple_feature.h | 69 std::set<Platform>* platforms() { return &platforms_; } 77 Platform platform) const { 78 return IsAvailableToContext(extension, context, GURL(), platform); 91 Platform platform) const OVERRIDE; 96 Platform platform) const OVERRIDE; 135 std::set<Platform> platforms_;
|
manifest_feature.cc | 21 Feature::Platform platform) const { 25 platform);
|
/external/chromium_org/third_party/WebKit/Source/core/clipboard/ |
DataObjectItem.cpp | 36 #include "platform/clipboard/ClipboardMimeTypes.h" 37 #include "public/platform/Platform.h" 38 #include "public/platform/WebClipboard.h" 129 RefPtr<SharedBuffer> data = static_cast<PassRefPtr<SharedBuffer> >(blink::Platform::current()->clipboard()->readImage(blink::WebClipboard::BufferStandard)); 154 data = blink::Platform::current()->clipboard()->readPlainText(buffer); 158 data = blink::Platform::current()->clipboard()->readHTML(buffer, &ignoredSourceURL, &ignored, &ignored); 160 data = blink::Platform::current()->clipboard()->readCustomData(buffer, m_type); 163 return blink::Platform::current()->clipboard()->sequenceNumber(buffer) == m_sequenceNumber ? data : String();
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBFactory.cpp | 44 #include "platform/weborigin/DatabaseIdentifier.h" 45 #include "platform/weborigin/SecurityOrigin.h" 46 #include "public/platform/Platform.h" 47 #include "public/platform/WebIDBFactory.h" 95 blink::Platform::current()->idbFactory()->getDatabaseNames(WebIDBCallbacksImpl::create(request).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(scriptState->executionContext()->securityOrigin())); 111 blink::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBOpenCall, IDBMethodsMax); 133 blink::Platform::current()->idbFactory()->open(name, version, transactionId, WebIDBCallbacksImpl::create(request).leakPtr(), WebIDBDatabaseCallbacksImpl::create(databaseCallbacks).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(scriptState->executionContext()->securityOrigin())); 146 blink::Platform::current()->histogramEnumeration("WebCore.IndexedDB.FrontEndAPICalls", IDBDeleteDatabaseCall, IDBMethodsMax); 165 blink::Platform::current()->idbFactory()->deleteDatabase(name, WebIDBCallbacksImpl::create(request).leakPtr(), cre (…) [all...] |
/external/deqp/framework/platform/android/ |
tcuAndroidPlatform.cpp | 21 * \brief Android EGL platform. 171 // Platform 173 Platform::Platform (void) 179 Platform::~Platform (void) 183 bool Platform::processEvents (void)
|
/external/lldb/source/Plugins/Platform/FreeBSD/ |
PlatformFreeBSD.cpp | 31 Platform * 35 // freebsd platform 93 static ConstString g_host_name(Platform::GetHostPlatformName ()); 107 return "Local FreeBSD user platform plug-in."; 109 return "Remote FreeBSD user platform plug-in."; 120 // Force a host flag to true for the default platform object. 123 Platform::SetDefaultPlatform (default_platform_sp); 142 Platform(is_host) 212 error.SetErrorStringWithFormat("the platform is not currently connected, and '%s' doesn't exist in the system root.", exe_path); 239 // No valid architecture was specified, ask the platform fo [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
DatabaseBackendBase.cpp | 35 #include "platform/Logging.h" 43 #include "platform/weborigin/DatabaseIdentifier.h" 44 #include "public/platform/Platform.h" 45 #include "public/platform/WebDatabaseObserver.h" 608 if (blink::Platform::current()->databaseObserver()) { 609 blink::Platform::current()->databaseObserver()->reportOpenDatabaseResult( 618 if (blink::Platform::current()->databaseObserver()) { 619 blink::Platform::current()->databaseObserver()->reportChangeVersionResult( 628 if (blink::Platform::current()->databaseObserver()) [all...] |