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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/core/platform/
__init__.py 7 from telemetry.core.platform import linux_platform_backend
8 from telemetry.core.platform import mac_platform_backend
9 from telemetry.core.platform import win_platform_backend
11 class Platform(object):
12 """The platform that the target browser is running on.
14 Provides a limited interface to interact with the platform itself, where
83 """Returns a string description of the Platform OS.
89 """Returns a string description of the Platform OS version.
116 if sys.platform.startswith('linux'):
118 elif sys.platform == 'darwin'
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListAddAtIndexTester.java 142 return Platform.getMethod(
ListSetTester.java 149 return Platform.getMethod(ListSetTester.class, "testSet_null");
ListSubListTester.java 310 return Platform
324 return Platform
337 return Platform.getMethod(
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
JmeSystem.java 111 public static Platform getPlatform() {
  /external/mesa3d/src/egl/main/
egldisplay.h 127 _EGLPlatformType Platform; /**< The type of the platform display */
128 void *PlatformDisplay; /**< A pointer to the platform display */
egldisplay.c 65 * Map --with-egl-platforms names to platform types.
68 _EGLPlatformType platform; member in struct:__anon24784
82 * Return the native platform by parsing EGL_PLATFORM.
100 plat = egl_platforms[i].platform;
139 * Try detecting native platform with the help of native display characteristcs.
152 /* fbdev is the only platform that can be a file descriptor. */
176 /* If not matched to any other platform, fallback to x11. */
186 * Return the native platform. It is the platform of the EGL native types.
208 _eglLog(_EGL_DEBUG, "Native platform type: %s (%s)"
    [all...]
  /external/okhttp/
Android.mk 19 okhttp_system_src_files := $(filter-out %/Platform.java, $(okhttp_common_src_files))
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLProvider.java 39 // Make sure the platform is initialized.
40 Platform.setup();
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
CharEscaper.java 123 char[] dest = Platform.charBufferFromThreadLocal();
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscaper.java 124 char[] dest = Platform.charBufferFromThreadLocal();
  /external/chromium_org/content/worker/
worker_webkitplatformsupport_impl.cc 25 #include "third_party/WebKit/public/platform/WebBlobRegistry.h"
26 #include "third_party/WebKit/public/platform/WebFileInfo.h"
27 #include "third_party/WebKit/public/platform/WebString.h"
28 #include "third_party/WebKit/public/platform/WebURL.h"
33 using WebKit::Platform;
175 Platform::FileHandle
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
ChromiumDataObject.cpp 32 #include "core/platform/chromium/ChromiumDataObject.h"
38 #include "core/platform/chromium/ClipboardMimeTypes.h"
39 #include "core/platform/chromium/ClipboardUtilitiesChromium.h"
40 #include "public/platform/Platform.h"
41 #include "public/platform/WebClipboard.h"
48 uint64_t sequenceNumber = WebKit::Platform::current()->clipboard()->sequenceNumber(currentPasteboardBuffer());
50 WebKit::WebVector<WebKit::WebString> webTypes = WebKit::Platform::current()->clipboard()->readAvailableTypes(currentPasteboardBuffer(), &ignored);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
CrossProcessFontLoading.mm 24 // defined in WebCore/platform/cocoa/FontPlatformDataCocoa.mm .
30 #import "core/platform/graphics/chromium/CrossProcessFontLoading.h"
33 #import "core/platform/graphics/FontPlatformData.h"
34 #include "core/platform/LinkHash.h"
35 #import "public/platform/mac/WebSandboxSupport.h"
36 #import "public/platform/Platform.h"
115 WebKit::WebSandboxSupport* sandboxSupport = WebKit::Platform::current()->sandboxSupport();
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/harfbuzz/
FontPlatformDataHarfBuzz.cpp 32 #include "core/platform/graphics/harfbuzz/FontPlatformDataHarfBuzz.h"
36 #include "core/platform/NotImplemented.h"
37 #include "core/platform/graphics/FontCache.h"
38 #include "core/platform/graphics/harfbuzz/HarfBuzzFace.h"
40 #include "public/platform/linux/WebFontInfo.h"
41 #include "public/platform/linux/WebFontRenderStyle.h"
42 #include "public/platform/linux/WebSandboxSupport.h"
43 #include "public/platform/Platform.h"
271 else if (WebKit::Platform::current()->sandboxSupport()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
LinkHighlight.cpp 37 #include "core/platform/graphics/Color.h"
44 #include "public/platform/Platform.h"
45 #include "public/platform/WebAnimationCurve.h"
46 #include "public/platform/WebCompositorSupport.h"
47 #include "public/platform/WebFloatAnimationCurve.h"
48 #include "public/platform/WebFloatPoint.h"
49 #include "public/platform/WebRect.h"
50 #include "public/platform/WebSize.h"
74 WebCompositorSupport* compositorSupport = Platform::current()->compositorSupport()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/main/
egldisplay.c 65 * Map --with-egl-platforms names to platform types.
68 _EGLPlatformType platform; member in struct:__anon14419
82 * Return the native platform by parsing EGL_PLATFORM.
100 plat = egl_platforms[i].platform;
139 * Try detecting native platform with the help of native display characteristcs.
152 /* fbdev is the only platform that can be a file descriptor. */
176 /* If not matched to any other platform, fallback to x11. */
186 * Return the native platform. It is the platform of the EGL native types.
208 _eglLog(_EGL_DEBUG, "Native platform type: %s (%s)"
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ObjectArraysTest.java 155 Integer[] starting = Platform.clone(array1);
156 Integer[] array2 = Platform.clone(array1);
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyWriter.java 19 import com.squareup.okhttp.internal.Platform;
42 Platform.get().newDeflaterOutputStream(nameValueBlockBuffer, deflater, true));
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/mockspdyserver/
MockSpdyServer.java 23 import com.squareup.okhttp.internal.Platform;
186 Platform.get().setNpnProtocols(sslSocket, NPN_PROTOCOLS);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizardState.java 34 import org.eclipse.core.runtime.Platform;
69 public File projectLocation = new File(Platform.getLocation().toOSString());
SampleSelectionPage.java 26 import org.eclipse.core.runtime.Platform;
212 mValues.projectLocation = Platform.getLocation().toFile();
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollingCoordinatorChromiumTest.cpp 37 #include "core/platform/graphics/GraphicsLayer.h"
41 #include "public/platform/Platform.h"
42 #include "public/platform/WebLayer.h"
43 #include "public/platform/WebLayerPositionConstraint.h"
44 #include "public/platform/WebLayerTreeView.h"
45 #include "public/platform/WebUnitTestSupport.h"
56 m_layerTreeView = adoptPtr(Platform::current()->unitTestSupport()->createLayerTreeViewForTesting(WebUnitTestSupport::TestViewTypeUnitTest));
94 Platform::current()->unitTestSupport()->unregisterAllMockedURLs();
101 Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests()
    [all...]
WebPageNewSerializerTest.cpp 42 #include "public/platform/Platform.h"
43 #include "public/platform/WebString.h"
44 #include "public/platform/WebThread.h"
45 #include "public/platform/WebURL.h"
46 #include "public/platform/WebURLRequest.h"
47 #include "public/platform/WebURLResponse.h"
48 #include "public/platform/WebUnitTestSupport.h"
130 Platform::current()->unitTestSupport()->unregisterAllMockedURLs();
159 Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests()
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpURLConnectionImpl.java 22 import com.squareup.okhttp.internal.Platform;
519 Platform.get().logW("Ignoring header " + field + " because its value was null.");
543 Platform.get().logW("Ignoring header " + field + " because its value was null.");

Completed in 1108 milliseconds

1 2 3 4 5 67 8 91011>>