HomeSort by relevance Sort by last modified time
    Searched defs:Platform (Results 26 - 50 of 164) sorted by null

12 3 4 5 6 7

  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
Platform.java 28 final class Platform {
75 private Platform() {}
CollectionIteratorTester.java 94 new IteratorTester<E>(Platform.collectionIteratorTesterNumIterations(), features, elements,
  /external/libunwind/doc/
unw_getcontext.tex 22 platform-specific, but, in general, at least all preserved
29 \section{Platform-specific Notes}
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
platformtest.cpp 17 // This file is for giving the performance characteristics of the platform (compiler/OS/CPU).
37 class Platform : public PerfTest {
65 TEST_F(Platform, CheckSum) {
70 TEST_F(Platform, strlen) {
77 TEST_F(Platform, memcmp) {
83 TEST_F(Platform, pow) {
90 TEST_F(Platform, Whitespace_strlen) {
97 TEST_F(Platform, Whitespace_strspn) {
104 TEST_F(Platform, fread) {
114 TEST_F(Platform, read) {
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Platform.java 25 final class Platform {
26 private Platform() {}
  /external/deqp/framework/platform/raspi/
tcuRaspiPlatform.cpp 21 * \brief Raspberry PI platform.
30 tcu::Platform* createPlatform (void)
32 return new tcu::rpi::Platform();
173 // Platform
175 Platform::Platform (void)
183 Platform::~Platform (void)
  /external/caliper/caliper/src/main/java/com/google/caliper/platform/
Platform.java 17 package com.google.caliper.platform;
29 * An abstraction of the platform within which caliper (both the scheduler and the actual workers)
32 public abstract class Platform {
34 private final Platform.Type platformType;
36 public Platform(Type platformType) {
41 * Get the executable for the virtual machine for this platform.
44 * the same platform in one go.
54 * The name of the platform type.
71 * Checks to see whether the specific class is supported on this platform.
74 * matches this platform
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLProvider.java 52 // Make sure the platform is initialized.
53 Platform.setup();
OpenSSLSocketImpl.java 155 private final Object guard = Platform.closeGuardGet();
261 peerHostname = Platform.getHostStringFromInetSocketAddress(
316 Platform.closeGuardOpen(guard, "close");
358 Platform.getFileDescriptor(socket), this, getSoTimeout(), client,
384 Platform.logEvent(logMessage);
596 Platform.checkServerTrusted(x509tm, peerCertChain, authMethod, this);
612 Platform.checkClientTrusted(x509tm, peerCertChain, authType, this);
741 Platform.blockGuardOnNetwork();
758 return NativeCrypto.SSL_read(sslNativePointer, Platform.getFileDescriptor(socket),
808 Platform.blockGuardOnNetwork()
    [all...]
OpenSSLECGroupContext.java 75 String curveName = Platform.getCurveName(params);
191 Platform.setCurveName(spec, curveName);
OpenSSLEngineImpl.java 175 Platform.logEvent(logMessage);
666 Platform.checkServerTrusted(x509tm, peerCertChain, authMethod, this);
669 Platform.checkClientTrusted(x509tm, peerCertChain, authType, this);
  /external/deqp/framework/platform/ios/
tcuIOSPlatform.hh 23 * \brief iOS Platform implementation.
74 class Platform : public tcu::Platform, private glu::Platform
77 Platform (ScreenManager* screenManager);
78 virtual ~Platform (void);
80 const glu::Platform& getGLPlatform (void) const { return static_cast<const glu::Platform&>(*this); }
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalCollection.java 53 this.contents = Platform.clone(contents);
77 Platform.checkCast(type, object); // behave badly
  /external/deqp/framework/platform/android/
tcuAndroidPlatform.cpp 21 * \brief Android EGL platform.
288 // Platform
290 Platform::Platform (NativeActivity& activity)
298 Platform::~Platform (void)
302 bool Platform::processEvents (void)
308 vk::Library* Platform::createLibrary (void) const
313 void Platform::describePlatform (std::ostream& dst) const
318 void Platform::getMemoryLimits (vk::PlatformMemoryLimits& limits) cons
    [all...]
  /external/deqp/framework/platform/X11/
tcuX11EglPlatform.cpp 21 * \brief X11Egl Platform.
289 Platform::Platform (EventState& eventState)
294 MovePtr<ContextFactory> Platform::createContextFactory (void)
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Platform.java 37 * Minimal GWT emulation of {@code com.google.common.collect.Platform}.
43 final class Platform {
144 private Platform() {}
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionIteratorTester.java 96 new IteratorTester<E>(Platform.collectionIteratorTesterNumIterations(), features, elements,
  /external/okhttp/android/main/java/com/squareup/okhttp/internal/
Platform.java 38 public final class Platform {
39 private static final Platform PLATFORM = new Platform();
41 public static Platform get() {
42 return PLATFORM;
  /external/chromium-trace/catapult/telemetry/telemetry/core/
platform.py 14 from telemetry.internal.platform import (platform_backend as
18 # Remote platform is a dictionary from device ids to remote platform instances.
34 _host_platform = Platform(backend)
51 """ Returns a platform instance for the device.
67 logging.error('Fail to create platform instance for %s.', device.name)
71 class Platform(object):
72 """The platform that the target browser is running on.
74 Provides a limited interface to interact with the platform itself, where
122 """Returns a string description of the Platform device, or None
    [all...]
  /external/conscrypt/src/openjdk/java/org/conscrypt/
Platform.java 50 public class Platform {
228 * Convert from platform's GCMParameterSpec to our internal version.
239 * Creates a platform version of {@code GCMParameterSpec}.
  /external/okhttp/android/test/java/com/squareup/okhttp/internal/
PlatformTest.java 42 * Tests for {@link Platform}.
48 Platform platform = new Platform(); local
53 platform.configureTlsExtensions(arbitrarySocketImpl, "host", protocols);
55 platform.configureTlsExtensions(npnOnlySSLSocketImpl, "host", protocols);
58 platform.configureTlsExtensions(openSslSocket, "host", protocols);
61 assertArrayEquals(Platform.concatLengthPrefixed(protocols), openSslSocket.alpnProtocols);
66 Platform platform = new Platform() local
    [all...]
  /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 */
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Platform.java 37 * Access to platform-specific features.
54 public class Platform {
55 private static final Platform PLATFORM = findPlatform();
57 public static Platform get() {
58 return PLATFORM;
103 /** Attempt to match the host runtime to a capable Platform implementation. */
104 private static Platform findPlatform() {
110 // Older platform before being unbundled.
160 return new Platform();
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
ocl.hpp 182 // dev.isAMD() doesn't work for OpenCL CPU devices from AMD OpenCL platform.
183 // This method should use platform name instead of vendor name.
253 friend void initializeContextFromHandle(Context& ctx, void* platform, void* context, void* device);
262 class CV_EXPORTS Platform
265 Platform();
266 ~Platform();
267 Platform(const Platform& p);
268 Platform& operator = (const Platform& p)
    [all...]
  /external/v8/tools/
run_perf.py 578 class Platform(object):
613 class DesktopPlatform(Platform):
658 class AndroidPlatform(Platform): # pragma: no cover
793 "option will run tests using android platform.")
854 platform = Platform.GetPlatform(options)
872 platform.PreExecution()
879 platform.PreTests(node, path)
890 yield platform.Run(runnable, i)
897 platform.PostExecution(
    [all...]

Completed in 717 milliseconds

12 3 4 5 6 7