/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
Platform.cpp | 32 #include "public/platform/Platform.h" 36 static Platform* s_platform = 0; 38 void Platform::initialize(Platform* platform) 40 s_platform = platform; 43 void Platform::shutdown() 48 Platform* Platform::current( [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/ |
SharedTimer.cpp | 27 #include "platform/SharedTimer.h" 29 #include "public/platform/Platform.h" 35 blink::Platform::current()->setSharedTimerFiredFunction(f); 40 blink::Platform::current()->setSharedTimerFireInterval(fireTime); 45 blink::Platform::current()->stopSharedTimer();
|
EventTracer.cpp | 32 #include "platform/EventTracer.h" 34 #include "public/platform/Platform.h" 40 COMPILE_ASSERT(sizeof(blink::Platform::TraceEventHandle) == sizeof(TraceEvent::TraceEventHandle), TraceEventHandle_types_must_be_compatible); 49 traceSamplingState[0] = blink::Platform::current()->getTraceSamplingState(0); 53 traceSamplingState[1] = blink::Platform::current()->getTraceSamplingState(1); 56 traceSamplingState[2] = blink::Platform::current()->getTraceSamplingState(2); 63 return blink::Platform::current()->getTraceCategoryEnabledFlag(categoryName); 70 return blink::Platform::current()->addTraceEvent(phase, categoryEnabledFlag, name, id, numArgs, argNames, argTypes, argValues, flags); 75 blink::Platform::current()->updateTraceEventDuration(categoryEnabledFlag, name, handle) [all...] |
MIMETypeRegistry.cpp | 32 #include "platform/MIMETypeRegistry.h" 34 #include "platform/plugins/PluginData.h" 36 #include "public/platform/Platform.h" 37 #include "public/platform/WebMimeRegistry.h" 44 return blink::Platform::current()->mimeRegistry()->mimeTypeForExtension(ext); 50 return blink::Platform::current()->mimeRegistry()->wellKnownMimeTypeForExtension(ext); 72 return blink::Platform::current()->mimeRegistry()->supportsImageMIMEType(mimeType) 92 return blink::Platform::current()->mimeRegistry()->supportsJavaScriptMIMEType(mimeType) 98 return blink::Platform::current()->mimeRegistry()->supportsNonImageMIMEType(mimeType [all...] |
FileMetadata.cpp | 32 #include "platform/FileMetadata.h" 34 #include "public/platform/Platform.h" 35 #include "public/platform/WebFileInfo.h" 36 #include "public/platform/WebFileUtilities.h" 61 if (!blink::Platform::current()->fileUtilities()->getFileInfo(path, webFileInfo)) 71 return blink::Platform::current()->fileUtilities()->directoryName(path); 76 return blink::Platform::current()->fileUtilities()->filePathToURL(path);
|
/external/guava/guava-gwt/src-super/com/google/common/escape/super/com/google/common/escape/ |
Platform.java | 22 class Platform {
|
/external/guava/guava-gwt/src-super/com/google/common/testing/super/com/google/common/testing/ |
Platform.java | 26 final class Platform { 35 private Platform() {}
|
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
InternalProfilers.cpp | 34 #include "public/platform/Platform.h" 43 blink::Platform::current()->startHeapProfiling(prefix); 48 blink::Platform::current()->stopHeapProfiling(); 53 blink::Platform::current()->dumpHeapProfiling(reason); 58 String text = blink::Platform::current()->getHeapProfile();
|
UnitTestHelpers.cpp | 29 #include "public/platform/Platform.h" 30 #include "public/platform/WebThread.h" 40 blink::Platform::current()->currentThread()->exitRunLoop(); 46 blink::Platform::current()->currentThread()->postTask(new QuitTask); 47 blink::Platform::current()->currentThread()->enterRunLoop();
|
/libcore/crypto/src/main/java/org/conscrypt/ |
Platform.java | 22 class Platform { 24 public static final Platform MAPPER = new Platform(); 28 * Runs all the setup for the platform that only needs to run once. 40 private Platform() {
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebKit.h | 34 #include "../platform/Platform.h" 43 // using any other WebKit APIs. The provided Platform; must be 45 BLINK_EXPORT void initialize(Platform*); 48 // using any other WebKit APIs. The provided Platform must be 52 BLINK_EXPORT void initializeWithoutV8(Platform*); 58 // Once shutdown, the Platform passed to initialize will no longer 64 // Once shutdown, the Platform passed to initializeWithoutV8 will no longer 77 // Enables the named log channel. See WebCore/platform/Logging.h for details.
|
/external/chromium_org/v8/include/ |
v8-platform.h | 46 * V8 Platform abstraction layer. 51 class Platform { 65 * indicates that the task will run a long time. The Platform implementation 81 virtual ~Platform() {}
|
/external/guava/guava/src/com/google/common/base/ |
Platform.java | 27 final class Platform { 28 private Platform() {}
|
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/ |
Platform.java | 25 final class Platform { 26 private Platform() {}
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
Platform.java | 25 final class Platform { 26 private Platform() {}
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebKit.cpp | 45 #include "platform/LayoutTestSupport.h" 46 #include "platform/Logging.h" 47 #include "platform/graphics/ImageDecodingStore.h" 48 #include "platform/graphics/media/MediaPlayer.h" 49 #include "public/platform/Platform.h" 50 #include "public/platform/WebPrerenderingSupport.h" 51 #include "public/platform/WebThread.h" 83 if (Platform::current()) { 84 Platform::current()->cryptographicallyRandomValues(buffer, length) [all...] |
/external/chromium_org/tools/cr/cr/base/ |
linux.py | 5 """The linux specific host and platform implementation module.""" 23 return cr.Platform.System() == 'Linux' 26 class LinuxPlatform(cr.Platform): 27 """The implementation of Platform for the linux target.""" 36 return cr.Platform.System() == 'Linux'
|
/sdk/eclipse/plugins/com.android.ide.eclipse.base/src/com/android/ide/eclipse/base/ |
InstallDetails.java | 19 import org.eclipse.core.runtime.Platform; 25 private static final String ECLIPSE_PLATFORM_PLUGIN_ID = "org.eclipse.platform"; //$NON-NLS-1$ 28 * Returns true if the ADT plugin is available in the current platform. This is useful 32 Bundle b = Platform.getBundle(ADT_PLUGIN_ID); 36 /** Returns the version of current eclipse platform. */ 38 Bundle b = Platform.getBundle(ECLIPSE_PLATFORM_PLUGIN_ID);
|
/external/chromium_org/base/test/expectations/ |
expectation.h | 40 // A Platform stores information about the OS environment. 41 struct Platform { 42 // The name of the platform. E.g., "Win", or "Mac". 45 // The variant of the platform, either an OS version like "XP" or "10.8", or 50 // Converts a text string |modifier| to a Platform struct, written to 53 Platform* out_platform) WARN_UNUSED_RESULT; 55 // Returns the Platform for the currently running binary. 56 Platform GetCurrentPlatform(); 83 std::vector<Platform> platforms;
|
/external/chromium_org/third_party/WebKit/Source/platform/network/ |
DNS.cpp | 28 #include "platform/network/DNS.h" 30 #include "public/platform/Platform.h" 31 #include "public/platform/WebPrescientNetworking.h" 37 blink::WebPrescientNetworking* prescientNetworking = blink::Platform::current()->prescientNetworking();
|
/external/jmonkeyengine/engine/src/core/com/jme3/system/ |
Platform.java | 3 public enum Platform {
|
JmeSystemDelegate.java | 125 public Platform getPlatform() {
130 return is64 ? Platform.Windows64 : Platform.Windows32;
132 return is64 ? Platform.Linux64 : Platform.Linux32;
135 return is64 ? Platform.MacOSX_PPC64 : Platform.MacOSX_PPC32;
137 return is64 ? Platform.MacOSX64 : Platform.MacOSX32;
140 throw new UnsupportedOperationException("The specified platform: " + os + " is not supported."); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/ |
Pasteboard.cpp | 32 #include "core/platform/Pasteboard.h" 34 #include "core/platform/chromium/ChromiumDataObject.h" 35 #include "platform/clipboard/ClipboardUtilities.h" 36 #include "platform/graphics/Image.h" 37 #include "platform/graphics/skia/NativeImageSkia.h" 38 #include "platform/weborigin/KURL.h" 39 #include "public/platform/Platform.h" 40 #include "public/platform/WebDragData.h" 41 #include "public/platform/WebString.h [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/ |
OriginAccessEntryTest.cpp | 32 #include "platform/weborigin/OriginAccessEntry.h" 34 #include "platform/weborigin/KURL.h" 35 #include "platform/weborigin/SecurityOrigin.h" 36 #include "public/platform/Platform.h" 37 #include "public/platform/WebPublicSuffixList.h" 53 class OriginAccessEntryTestPlatform : public blink::Platform { 69 OriginAccessEntryTestPlatform platform; local 70 blink::Platform::initialize(&platform); [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
SQLTransactionClient.cpp | 37 #include "platform/weborigin/DatabaseIdentifier.h" 38 #include "platform/weborigin/SecurityOrigin.h" 39 #include "public/platform/Platform.h" 40 #include "public/platform/WebDatabaseObserver.h" 47 if (blink::Platform::current()->databaseObserver()) { 48 blink::Platform::current()->databaseObserver()->databaseModified(
|