HomeSort by relevance Sort by last modified time
    Searched refs:Platform (Results 51 - 75 of 343) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
ImageResourceTest.cpp 44 #include "core/platform/SharedBuffer.h"
45 #include "public/platform/Platform.h"
46 #include "public/platform/WebThread.h"
47 #include "public/platform/WebURL.h"
48 #include "public/platform/WebURLResponse.h"
49 #include "public/platform/WebUnitTestSupport.h"
59 WebKit::Platform::current()->currentThread()->exitRunLoop();
65 WebKit::Platform::current()->currentThread()->postTask(new QuitTask);
66 WebKit::Platform::current()->currentThread()->enterRunLoop()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/sql/chromium/
SQLiteFileSystemChromiumWin.cpp 32 #include "core/platform/sql/SQLiteFileSystem.h"
36 #include "public/platform/Platform.h"
58 HANDLE h = WebKit::Platform::current()->databaseOpenFile(String(fileName), desiredFlags);
85 return WebKit::Platform::current()->databaseDeleteFile(String(fileName), false);
96 DWORD attr = WebKit::Platform::current()->databaseGetFileAttributes(String(fileName));
SQLiteFileSystemChromiumPosix.cpp 32 #include "core/platform/sql/SQLiteFileSystem.h"
35 #include "public/platform/Platform.h"
72 fd = WebKit::Platform::current()->databaseOpenFile(String(fileName), desiredFlags);
75 fd = WebKit::Platform::current()->databaseOpenFile(String(fileName), newFlags);
106 return WebKit::Platform::current()->databaseDeleteFile(String(fileName), syncDir);
117 int attr = static_cast<int>(WebKit::Platform::current()->databaseGetFileAttributes(String(fileName)));
  /external/chromium_org/third_party/WebKit/Source/web/tests/
RenderLayerBackingTest.cpp 42 #include "public/platform/Platform.h"
43 #include "public/platform/WebUnitTestSupport.h"
55 m_layerTreeView = adoptPtr(Platform::current()->unitTestSupport()->createLayerTreeViewForTesting(WebUnitTestSupport::TestViewTypeUnitTest));
92 Platform::current()->unitTestSupport()->unregisterAllMockedURLs();
99 Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests();
PageSerializerTest.cpp 42 #include "core/platform/SerializedResource.h"
43 #include "public/platform/Platform.h"
44 #include "public/platform/WebString.h"
45 #include "public/platform/WebThread.h"
46 #include "public/platform/WebURL.h"
47 #include "public/platform/WebURLRequest.h"
48 #include "public/platform/WebURLResponse.h"
49 #include "public/platform/WebUnitTestSupport.h"
90 Platform::current()->unitTestSupport()->unregisterAllMockedURLs()
    [all...]
URLTestHelpers.cpp 34 #include "public/platform/Platform.h"
35 #include "public/platform/WebString.h"
36 #include "public/platform/WebURL.h"
37 #include "public/platform/WebURLResponse.h"
38 #include "public/platform/WebUnitTestSupport.h"
63 std::string filePath = std::string(Platform::current()->unitTestSupport()->webKitRootDir().utf8().data());
68 Platform::current()->unitTestSupport()->registerMockedURL(fullURL, response, WebString::fromUTF8(filePath.c_str()));
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ObjectArrays.java 43 return Platform.newArray(reference, length);
58 Platform.unsafeArrayCopy(array, 0, result, 1, array.length);
80 Platform.unsafeArrayCopy(
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/collect/testing/
MinimalCollection.java 50 this.contents = Platform.clone(contents);
74 Platform.checkCast(type, object); // behave badly
96 Platform.unsafeArrayCopy(contents, 0, result, 0, contents.length);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/
NdkEnvSupplier.java 23 import org.eclipse.core.runtime.Platform;
39 if (Platform.getOS().equals(Platform.OS_WIN32)) {
  /external/chromium_org/base/test/expectations/
expectation.cc 36 static bool IsValidPlatform(const Platform* platform) {
37 const std::string& name = platform->name;
38 const std::string& variant = platform->variant;
75 Platform* out_platform) {
88 Platform GetCurrentPlatform() {
89 Platform platform; local
91 platform.name = "Win";
94 platform.variant = "XP"
    [all...]
expectation_unittest.cc 52 test_expectations::Platform platform; local
54 EXPECT_TRUE(PlatformFromString("Win", &platform));
55 EXPECT_EQ("Win", platform.name);
56 EXPECT_EQ("", platform.variant);
58 EXPECT_TRUE(PlatformFromString("Mac-10.6", &platform));
59 EXPECT_EQ("Mac", platform.name);
60 EXPECT_EQ("10.6", platform.variant);
62 EXPECT_TRUE(PlatformFromString("ChromeOS", &platform));
63 EXPECT_EQ("ChromeOS", platform.name)
98 test_expectations::Platform platform; local
104 test_expectations::Platform platform; local
    [all...]
  /external/chromium_org/chrome/common/extensions/features/
feature.h 50 enum Platform {
103 // Gets the platform the code is currently running on.
104 static Platform GetCurrentPlatform();
127 Platform platform) const = 0;
139 Platform platform) const = 0;
  /external/chromium_org/content/child/
database_util.h 19 static WebKit::Platform::FileHandle DatabaseOpenFile(
database_util.cc 9 #include "third_party/WebKit/public/platform/WebString.h"
12 using WebKit::Platform;
17 Platform::FileHandle DatabaseUtil::DatabaseOpenFile(
  /external/chromium_org/content/public/test/
unittest_test_suite.cc 10 #include "third_party/WebKit/public/platform/Platform.h"
16 // A stubbed out WebKit platform support impl.
18 : public WebKit::Platform {
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/chromium/
AudioDestinationChromium.cpp 33 #include "core/platform/audio/chromium/AudioDestinationChromium.h"
35 #include "core/platform/audio/AudioFIFO.h"
36 #include "core/platform/audio/AudioPullFIFO.h"
37 #include "public/platform/Platform.h"
62 m_callbackBufferSize = WebKit::Platform::current()->audioHardwareBufferSize();
85 m_audioDevice = adoptPtr(WebKit::Platform::current()->createAudioDevice(m_callbackBufferSize, numberOfInputChannels, numberOfOutputChannels, sampleRate, this, inputDeviceId));
130 return static_cast<float>(WebKit::Platform::current()->audioHardwareSampleRate());
135 return static_cast<float>(WebKit::Platform::current()->audioHardwareOutputChannels());
AudioBusChromium.cpp 29 #include "core/platform/audio/AudioBus.h"
31 #include "public/platform/Platform.h"
32 #include "public/platform/WebAudioBus.h"
39 if (WebKit::Platform::current()->loadAudioResource(&webAudioBus, data, size, sampleRate))
46 const WebKit::WebData& resource = WebKit::Platform::current()->loadResource(name);
  /external/guava/guava-testlib/src/com/google/common/testing/
SerializableTester.java 61 return Platform.reserialize(object);
  /external/okhttp/android/main/java/com/squareup/okhttp/internal/
Platform.java 37 public final class Platform {
38 private static final Platform PLATFORM = new Platform();
46 public static Platform get() {
47 return PLATFORM;
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ScrollbarThemeChromiumDefault.cpp 32 #include "core/platform/chromium/ScrollbarThemeChromiumDefault.h"
35 #include "core/platform/PlatformMouseEvent.h"
36 #include "core/platform/Scrollbar.h"
37 #include "core/platform/chromium/ScrollbarThemeChromiumOverlay.h"
38 #include "core/platform/graphics/GraphicsContext.h"
39 #include "public/platform/default/WebThemeEngine.h"
40 #include "public/platform/Platform.h"
41 #include "public/platform/WebRect.h"
59 IntSize scrollbarSize = WebKit::Platform::current()->themeEngine()->getSize(WebKit::WebThemeEngine::PartScrollbarVerticalTrack)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumAndroid.cpp 31 #include "core/platform/LayoutTestSupport.h"
32 #include "core/platform/ScrollbarTheme.h"
33 #include "core/platform/graphics/Color.h"
40 #include "public/platform/android/WebThemeEngine.h"
41 #include "public/platform/Platform.h"
86 IntSize size = WebKit::Platform::current()->themeEngine()->getSize(WebKit::WebThemeEngine::PartInnerSpinButton);
102 IntSize scrollbarSize = WebKit::Platform::current()->themeEngine()->getSize(WebKit::WebThemeEngine::PartScrollbarDownArrow);
  /external/chromium_org/third_party/WebKit/Source/web/
DateTimeChooserImpl.cpp 41 #include "core/platform/DateComponents.h"
42 #include "core/platform/DateTimeChooserClient.h"
43 #include "core/platform/Language.h"
44 #include "core/platform/NotImplemented.h"
45 #include "core/platform/text/PlatformLocale.h"
47 #include "public/platform/Platform.h"
48 #include "public/platform/WebLocalizedString.h"
111 todayLabelString = Platform::current()->queryLocalizedString(WebLocalizedString::ThisMonthButtonLabel);
112 otherDateLabelString = Platform::current()->queryLocalizedString(WebLocalizedString::OtherMonthLabel)
    [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") };

Completed in 617 milliseconds

1 23 4 5 6 7 8 91011>>