Home
last modified time | relevance | path

Searched refs:Platform (Results 1 – 25 of 391) sorted by relevance

12345678910>>...16

/external/chromium_org/third_party/WebKit/Source/web/
DWebKit.cpp83 if (Platform::current()) { in generateEntropy()
84 Platform::current()->cryptographicallyRandomValues(buffer, length); in generateEntropy()
97 void initialize(Platform* platform) in initialize()
127 return Platform::current()->currentTime(); in currentTimeFunction()
132 return Platform::current()->monotonicallyIncreasingTime(); in monotonicallyIncreasingTimeFunction()
137 Platform::current()->cryptographicallyRandomValues(buffer, length); in cryptographicallyRandomValues()
142 Platform::current()->callOnMainThread(function, context); in callOnMainThreadFunction()
145 void initializeWithoutV8(Platform* platform) in initializeWithoutV8()
151 Platform::initialize(platform); in initializeWithoutV8()
176 if (Platform::current()->currentThread()) { in shutdown()
[all …]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
DPlatform.cpp36 static Platform* s_platform = 0;
38 void Platform::initialize(Platform* platform) in initialize()
43 void Platform::shutdown() in shutdown()
48 Platform* Platform::current() in current()
/external/chromium_org/third_party/WebKit/Source/platform/
DEventTracer.cpp40 COMPILE_ASSERT(sizeof(blink::Platform::TraceEventHandle) == sizeof(TraceEvent::TraceEventHandle), T…
49 traceSamplingState[0] = blink::Platform::current()->getTraceSamplingState(0); in initialize()
53 traceSamplingState[1] = blink::Platform::current()->getTraceSamplingState(1); in initialize()
56 traceSamplingState[2] = blink::Platform::current()->getTraceSamplingState(2); in initialize()
63 return blink::Platform::current()->getTraceCategoryEnabledFlag(categoryName); in getTraceCategoryEnabledFlag()
70 …return blink::Platform::current()->addTraceEvent(phase, categoryEnabledFlag, name, id, numArgs, ar… in addTraceEvent()
75 blink::Platform::current()->updateTraceEventDuration(categoryEnabledFlag, name, handle); in updateTraceEventDuration()
DMIMETypeRegistry.cpp44 return blink::Platform::current()->mimeRegistry()->mimeTypeForExtension(ext); in getMIMETypeForExtension()
50 return blink::Platform::current()->mimeRegistry()->wellKnownMimeTypeForExtension(ext); in getWellKnownMIMETypeForExtension()
72 return blink::Platform::current()->mimeRegistry()->supportsImageMIMEType(mimeType) in isSupportedImageMIMEType()
92 return blink::Platform::current()->mimeRegistry()->supportsJavaScriptMIMEType(mimeType) in isSupportedJavaScriptMIMEType()
98 return blink::Platform::current()->mimeRegistry()->supportsNonImageMIMEType(mimeType) in isSupportedNonImageMIMEType()
105 … && blink::Platform::current()->mimeRegistry()->supportsMediaSourceMIMEType(mimeType, codecs); in isSupportedMediaSourceMIMEType()
DSharedTimer.cpp35 blink::Platform::current()->setSharedTimerFiredFunction(f); in setSharedTimerFiredFunction()
40 blink::Platform::current()->setSharedTimerFireInterval(fireTime); in setSharedTimerFireInterval()
45 blink::Platform::current()->stopSharedTimer(); in stopSharedTimer()
DFileMetadata.cpp61 if (!blink::Platform::current()->fileUtilities()->getFileInfo(path, webFileInfo)) in getFileMetadata()
71 return blink::Platform::current()->fileUtilities()->directoryName(path); in directoryName()
76 return blink::Platform::current()->fileUtilities()->filePathToURL(path); in filePathToURL()
/external/chromium_org/third_party/WebKit/Source/core/platform/
DPasteboard.cpp75 blink::Platform::current()->clipboard()->writePlainText(plainText); in writePlainText()
77 blink::Platform::current()->clipboard()->writePlainText(text); in writePlainText()
90 …blink::Platform::current()->clipboard()->writeImage(webImage, blink::WebURL(url), blink::WebString… in writeImage()
95 blink::Platform::current()->clipboard()->writeDataObject(dataObject); in writeDataObject()
100 …return blink::Platform::current()->clipboard()->isFormatAvailable(blink::WebClipboard::FormatSmart… in canSmartReplace()
105 …return blink::Platform::current()->clipboard()->isFormatAvailable(blink::WebClipboard::FormatHTML,… in isHTMLAvailable()
110 return blink::Platform::current()->clipboard()->readPlainText(m_buffer); in plainText()
116 …blink::WebString markup = blink::Platform::current()->clipboard()->readHTML(m_buffer, &webURL, &fr… in readHTML()
136 …blink::Platform::current()->clipboard()->writeHTML(markup, documentURL, text, canSmartCopyOrDelete… in writeHTML()
/external/jmonkeyengine/engine/src/core/com/jme3/system/
DJmeSystemDelegate.java125 public Platform getPlatform() { in getPlatform()
130 return is64 ? Platform.Windows64 : Platform.Windows32; in getPlatform()
132 return is64 ? Platform.Linux64 : Platform.Linux32; in getPlatform()
135 return is64 ? Platform.MacOSX_PPC64 : Platform.MacOSX_PPC32; in getPlatform()
137 return is64 ? Platform.MacOSX64 : Platform.MacOSX32; in getPlatform()
/external/compiler-rt/make/
DAppleBI.mk47 $(call GetCNAVar,STRIP,Platform.darwin_bni,Release,) -S $(SYMROOT)/libcompiler_rt.dylib \
56 $(call GetCNAVar,CC,Platform.darwin_bni,Release,$*) \
73 $(call GetCNAVar,LIPO,Platform.darwin_bni,Release,) -create $^ -o $@
74 $(call GetCNAVar,DSYMUTIL,Platform.darwin_bni,Release,) $@
88 $(call GetCNAVar,STRIP,Platform.darwin_bni,Release,) -S $(SYMROOT)/libcompiler_rt.dylib \
95 $(call GetCNAVar,LIPO,Platform.darwin_bni,Release,) -create $^ -o $@
103 $(call GetCNAVar,AR,Platform.darwin_bni,Release,) -d $@ $${DEL_LIST}; \
104 $(call GetCNAVar,RANLIB,Platform.darwin_bni,Release,) $@ ; \
110 $(call GetCNAVar,LIPO,Platform.darwin_bni,Release,) -create $^ -o $@
/external/chromium_org/third_party/WebKit/Source/core/testing/
DInternalProfilers.cpp43 blink::Platform::current()->startHeapProfiling(prefix); in startHeapProfiling()
48 blink::Platform::current()->stopHeapProfiling(); in stopHeapProfiling()
53 blink::Platform::current()->dumpHeapProfiling(reason); in dumpHeapProfiling()
58 String text = blink::Platform::current()->getHeapProfile(); in getHeapProfile()
DUnitTestHelpers.cpp40 blink::Platform::current()->currentThread()->exitRunLoop(); in run()
46 blink::Platform::current()->currentThread()->postTask(new QuitTask); in runPendingTasks()
47 blink::Platform::current()->currentThread()->enterRunLoop(); in runPendingTasks()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DCanvas2DLayerManagerTest.cpp192 blink::Platform::current()->currentThread()->exitRunLoop(); in doDeferredFrameTestTask()
220 …blink::Platform::current()->currentThread()->postTask(new DeferredFrameTestTask(this, layer.get(),… in deferredFrameTest()
221 blink::Platform::current()->currentThread()->enterRunLoop(); in deferredFrameTest()
228 …blink::Platform::current()->currentThread()->postTask(new DeferredFrameTestTask(this, layer.get(),… in deferredFrameTest()
229 blink::Platform::current()->currentThread()->enterRunLoop(); in deferredFrameTest()
233 …blink::Platform::current()->currentThread()->postTask(new DeferredFrameTestTask(this, layer.get(),… in deferredFrameTest()
234 blink::Platform::current()->currentThread()->enterRunLoop(); in deferredFrameTest()
239 …blink::Platform::current()->currentThread()->postTask(new DeferredFrameTestTask(this, layer.get(),… in deferredFrameTest()
240 blink::Platform::current()->currentThread()->enterRunLoop(); in deferredFrameTest()
244 …blink::Platform::current()->currentThread()->postTask(new DeferredFrameTestTask(this, layer.get(),… in deferredFrameTest()
[all …]
DAssociatedURLLoaderTest.cpp74 m_baseFilePath = Platform::current()->unitTestSupport()->webKitRootDir(); in AssociatedURLLoaderTest()
88 Platform::current()->unitTestSupport()->registerMockedURL(url, response, localPath); in RegisterMockedUrl()
115 Platform::current()->unitTestSupport()->unregisterMockedURL(url); in SetUp()
120 Platform::current()->unitTestSupport()->unregisterAllMockedURLs(); in TearDown()
127 Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests(); in serveRequests()
193 Platform::current()->currentThread()->exitRunLoop(); in didFail()
234 Platform::current()->currentThread()->enterRunLoop(); in CheckFails()
260Platform::current()->unitTestSupport()->registerMockedURL(url, m_expectedResponse, m_frameFilePath… in CheckAccessControlHeaders()
309Platform::current()->unitTestSupport()->registerMockedURL(url, m_expectedResponse, m_frameFilePath… in TEST_F()
343Platform::current()->unitTestSupport()->registerMockedURL(url, m_expectedResponse, m_frameFilePath… in TEST_F()
[all …]
DFrameTestHelpers.cpp60 Platform::current()->currentThread()->postTask(this); in PostThis()
65 Platform::current()->currentThread()->exitRunLoop(); in run()
96 Platform::current()->currentThread()->enterRunLoop(); in runPendingTasks()
138 Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests(); in initializeAndLoad()
/external/chromium_org/base/test/expectations/
Dexpectation.h41 struct Platform { struct
53 Platform* out_platform) WARN_UNUSED_RESULT;
56 Platform GetCurrentPlatform();
83 std::vector<Platform> platforms;
/external/guava/guava/src/com/google/common/collect/
DObjectArrays.java44 return Platform.newArray(type, length); in newArray()
55 return Platform.newArray(reference, length); in newArray()
68 Platform.unsafeArrayCopy(first, 0, result, 0, first.length); in concat()
69 Platform.unsafeArrayCopy(second, 0, result, first.length, second.length); in concat()
85 Platform.unsafeArrayCopy(array, 0, result, 1, array.length); in concat()
107 Platform.unsafeArrayCopy( in arraysCopyOf()
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/
DJmeAndroidSystem.java14 import com.jme3.system.Platform;
74 public Platform getPlatform() { in getPlatform()
78 return Platform.Android_ARM5; in getPlatform()
80 return Platform.Android_ARM6; in getPlatform()
82 return Platform.Android_ARM7; in getPlatform()
84 return Platform.Android_ARM5; // unknown ARM in getPlatform()
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollbarThemeGtkOrAura.cpp65 …IntSize scrollbarSize = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::… in scrollbarThickness()
84 …blink::Platform::current()->themeEngine()->paint(canvas, scrollbar->orientation() == HorizontalScr… in paintTrackPiece()
127 …blink::Platform::current()->themeEngine()->paint(canvas, paintPart, state, blink::WebRect(rect), 0… in paintButton()
140 …blink::Platform::current()->themeEngine()->paint(canvas, scrollbar->orientation() == HorizontalScr… in paintThumb()
151 …IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartScrol… in buttonSize()
156 …IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartScrol… in buttonSize()
163 …IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartScrol… in minimumThumbLength()
167 …IntSize size = blink::Platform::current()->themeEngine()->getSize(blink::WebThemeEngine::PartScrol… in minimumThumbLength()
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
DSubtleCrypto.cpp86 …blink::Platform::current()->crypto()->encrypt(algorithm, key->key(), data, dataSize, result->resul… in startCryptoOperation()
89 …blink::Platform::current()->crypto()->decrypt(algorithm, key->key(), data, dataSize, result->resul… in startCryptoOperation()
92 …blink::Platform::current()->crypto()->sign(algorithm, key->key(), data, dataSize, result->result()… in startCryptoOperation()
95 …blink::Platform::current()->crypto()->verifySignature(algorithm, key->key(), reinterpret_cast<cons… in startCryptoOperation()
98 blink::Platform::current()->crypto()->digest(algorithm, data, dataSize, result->result()); in startCryptoOperation()
152 …blink::Platform::current()->crypto()->generateKey(algorithm, extractable, keyUsages, result->resul… in generateKey()
180 …blink::Platform::current()->crypto()->importKey(format, keyDataBytes, keyData->byteLength(), algor… in importKey()
202 blink::Platform::current()->crypto()->exportKey(format, key->key(), result->result()); in exportKey()
236 …blink::Platform::current()->crypto()->wrapKey(format, key->key(), wrappingKey->key(), wrapAlgorith… in wrapKey()
277 …blink::Platform::current()->crypto()->unwrapKey(format, wrappedKeyData, wrappedKeyDataSize, unwrap… in unwrapKey()
/external/chromium_org/tools/cr/cr/base/
Dplatform.py17 class Platform(cr.Plugin, cr.Plugin.Type): class
40 super(Platform, self).__init__()
43 super(Platform, self).Activate(context)
60 for entry in Platform.GetActivePlugin(context).paths:
Dlinux.py23 return cr.Platform.System() == 'Linux'
26 class LinuxPlatform(cr.Platform):
36 return cr.Platform.System() == 'Linux'
/external/chromium_org/chrome/common/extensions/features/
Dsimple_feature.h43 std::set<Platform>* platforms() { return &platforms_; } in platforms()
61 Platform platform) const { in IsAvailableToContext()
75 Platform platform) const OVERRIDE;
80 Platform platform) const OVERRIDE;
114 std::set<Platform> platforms_;
/external/chromium_org/third_party/WebKit/Source/core/animation/
DCompositorAnimationsTestHelper.h127 class PlatformProxy : public blink::Platform {
141 blink::Platform* m_platform;
146 m_platform = blink::Platform::current(); in SetUp()
147 blink::Platform::initialize(&m_proxyPlatform); in SetUp()
152 blink::Platform::initialize(m_platform); in TearDown()
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DDatabaseBackendBase.cpp609 if (blink::Platform::current()->databaseObserver()) { in reportOpenDatabaseResult()
610 blink::Platform::current()->databaseObserver()->reportOpenDatabaseResult( in reportOpenDatabaseResult()
619 if (blink::Platform::current()->databaseObserver()) { in reportChangeVersionResult()
620 blink::Platform::current()->databaseObserver()->reportChangeVersionResult( in reportChangeVersionResult()
629 if (blink::Platform::current()->databaseObserver()) { in reportStartTransactionResult()
630 blink::Platform::current()->databaseObserver()->reportStartTransactionResult( in reportStartTransactionResult()
639 if (blink::Platform::current()->databaseObserver()) { in reportCommitTransactionResult()
640 blink::Platform::current()->databaseObserver()->reportCommitTransactionResult( in reportCommitTransactionResult()
649 if (blink::Platform::current()->databaseObserver()) { in reportExecuteStatementResult()
650 blink::Platform::current()->databaseObserver()->reportExecuteStatementResult( in reportExecuteStatementResult()
[all …]
/external/okhttp/android/main/java/com/squareup/okhttp/internal/
DPlatform.java37 public final class Platform { class
38 private static final Platform PLATFORM = new Platform();
46 public static Platform get() { in get()

12345678910>>...16