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

1 23 4 5 6 7 8 91011>>

  /external/caliper/caliper/src/main/java/com/google/caliper/platform/
Platform.java 17 package com.google.caliper.platform;
30 * An abstraction of the platform within which caliper (both the scheduler and the actual workers)
33 public abstract class Platform {
35 private final Platform.Type platformType;
37 public Platform(Type platformType) {
42 * Get the executable for the virtual machine for this platform.
45 * the same platform in one go.
55 * The name of the platform type.
82 * Checks to see whether the specific class is supported on this platform.
85 * matches this platform
    [all...]
SupportedPlatform.java 17 package com.google.caliper.platform;
33 Platform.Type[] value();
  /external/deqp/external/vulkancts/framework/vulkan/
vkPlatform.hpp 23 * \brief Vulkan platform abstraction.
130 * \brief Vulkan platform interface
132 class Platform
135 Platform (void) {}
136 ~Platform (void) {}
146 inline PlatformMemoryLimits getMemoryLimits (const Platform& platform)
149 platform.getMemoryLimits(limits);
vkPlatform.cpp 21 * \brief Vulkan platform abstraction.
69 wsi::Display* Platform::createWsiDisplay (wsi::Type) const
74 void Platform::describePlatform (std::ostream& dst) const
76 dst << "vk::Platform::describePlatform() not implemented";
  /external/deqp/framework/common/
tcuTestContext.hpp 36 class Platform;
51 TestContext (Platform& platform, Archive& rootArchive, TestLog& log, const CommandLine& cmdLine, qpWatchDog* watchDog);
57 Platform& getPlatform (void) { return m_platform; }
77 Platform& m_platform; //!< Platform port implementation.
  /external/deqp/framework/egl/
egluGLContextFactory.hpp 32 class Platform;
  /external/deqp/framework/platform/lnx/
tcuLnxVulkanPlatform.hpp 23 * \brief Linux Vulkan Platform.
36 class VulkanPlatform : public vk::Platform
  /external/deqp/framework/platform/win32/
tcuWin32VulkanPlatform.hpp 23 * \brief Win32 Vulkan platform
35 class VulkanPlatform : public vk::Platform
  /external/guava/guava/src/com/google/common/base/
Ticker.java 60 return Platform.systemNanoTime();
  /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)
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressDxe/
ArmVExpressInternal.h 29 // This 'enum' is needed as variations based on existing platform exist
59 // Array that contains the list of the VExpress based platform supported by this DXE driver
63 Get information about the VExpress platform the firmware is running on given its Id.
65 @param[in] PlatformId Id of the VExpress platform.
66 @param[out] Platform Address where the pointer to the platform information
71 @retval EFI_SUCCESS The platform information was returned.
72 @retval EFI_NOT_FOUND The platform was not recognised.
78 OUT CONST ARM_VEXPRESS_PLATFORM** Platform
83 Get information about the VExpress platform the firmware is running on.
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/AcpiTables/
AcpiTables.inf 4 # ACPI table data and ASL sources required to boot the platform.
31 Platform.h
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
PlatformModule.java 19 import com.google.caliper.platform.Platform;
20 import com.google.caliper.platform.dalvik.DalvikModule;
21 import com.google.caliper.platform.dalvik.DalvikPlatform;
22 import com.google.caliper.platform.jvm.JvmModule;
23 import com.google.caliper.platform.jvm.JvmPlatform;
32 * Provider of a {@link Platform} instance appropriate for the current platform.
42 static Platform providePlatform(
VmDataCollectingVisitor.java 24 import com.google.caliper.platform.Platform;
35 private final Platform platform; field in class:VmDataCollectingVisitor
38 @Inject VmDataCollectingVisitor(Platform platform) {
39 this.platform = platform;
49 platform.checkVmProperties(options);
69 Maps.filterKeys(logMessage.properties(), platform.vmPropertiesToRetain())))
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
Platform.java 35 final class Platform {
56 private Platform() {}
  /device/linaro/bootloader/edk2/OvmfPkg/PlatformDxe/
Platform.inf 2 # This driver effectuates OVMF's platform configuration settings and exposes
28 Platform.c
29 Platform.uni
  /external/conscrypt/common/src/main/java/org/conscrypt/
AddressUtils.java 44 return sniHostname.indexOf('.') != -1 && !Platform.isLiteralIpAddress(sniHostname);
  /external/v8/src/profiler/
tracing-cpu-profiler.h 8 #include "include/v8-platform.h"
12 #include "src/base/platform/mutex.h"
21 private v8::Platform::TraceStateObserver {
26 // v8::Platform::TraceStateObserver
  /external/v8/src/
v8.cc 10 #include "src/base/platform/platform.h"
36 v8::Platform* V8::platform_ = NULL;
94 void V8::InitializePlatform(v8::Platform* platform) {
96 CHECK(platform);
97 platform_ = platform;
109 v8::Platform* V8::GetCurrentPlatform() {
115 void V8::SetPlatformForTesting(v8::Platform* platform) { platform_ = platform;
    [all...]
  /external/mockito/subprojects/android/src/main/java/org/mockito/android/internal/creation/
AndroidByteBuddyMockMaker.java 5 import org.mockito.internal.util.Platform;
17 if (Platform.isAndroid() || Platform.isAndroidMockMakerRequired()) {
  /external/caliper/caliper/src/main/java/com/google/caliper/config/
VmConfig.java 22 import com.google.caliper.platform.Platform;
42 private final Platform platform; field in class:VmConfig
50 this.platform = builder.platform;
56 public VmConfig(File vmHome, Iterable<String> options, File vmExecutable, Platform platform) {
57 this.platform = platform;
120 private final Platform platform; field in class:VmConfig.Builder
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/
NdkCommandLauncher.java 28 import org.eclipse.core.runtime.Platform;
46 if (Platform.OS_WIN32.equals(Platform.getOS())) {
63 if (Platform.getOS().equals(Platform.OS_WIN32)) {
  /external/okhttp/android/test/java/com/squareup/okhttp/internal/
PlatformTest.java 48 * Tests for {@link Platform}.
54 Platform platform = new Platform(); local
59 platform.configureTlsExtensions(arbitrarySocketImpl, "host", protocols);
61 platform.configureTlsExtensions(npnOnlySSLSocketImpl, "host", protocols);
64 platform.configureTlsExtensions(openSslSocket, "host", protocols);
67 assertArrayEquals(Platform.concatLengthPrefixed(protocols), openSslSocket.alpnProtocols);
72 Platform platform = new Platform() local
87 Platform platform = new Platform(); local
96 Platform platform = new Platform(); local
101 Platform platform = new Platform(); local
    [all...]
  /external/okhttp/android/main/java/com/squareup/okhttp/internal/
Platform.java 41 public class Platform {
42 private static final AtomicReference<Platform> INSTANCE_HOLDER
43 = new AtomicReference<>(new Platform());
46 protected Platform() {
49 public static Platform get() {
54 * Atomically replaces the Platform instance returned by future
60 * Platform p = getAndSetForTest(...);
70 public static Platform getAndSetForTest(Platform platform) {
    [all...]
  /external/compiler-rt/make/
AppleBI.mk 51 $(call GetCNAVar,STRIP,Platform.darwin_bni,Release,) -S $(SYMROOT)/libcompiler_rt.dylib \
60 $(call GetCNAVar,CC,Platform.darwin_bni,Release,$*) \
77 $(call GetCNAVar,LIPO,Platform.darwin_bni,Release,) -create $^ -o $@
78 $(call GetCNAVar,DSYMUTIL,Platform.darwin_bni,Release,) $@
92 $(call GetCNAVar,STRIP,Platform.darwin_bni,Release,) -S $(SYMROOT)/libcompiler_rt.dylib \
98 $(call GetCNAVar,LIPO,Platform.darwin_bni,Release,) -create $^ -o $@
106 $(call GetCNAVar,AR,Platform.darwin_bni,Release,) -d $@ $${DEL_LIST}; \
107 $(call GetCNAVar,RANLIB,Platform.darwin_bni,Release,) $@ ; \
113 $(call GetCNAVar,LIPO,Platform.darwin_bni,Release,) -create $^ -o $@
121 $(call GetCNAVar,STRIP,Platform.darwin_bni,Release,) -S $(SYMROOT)/libcompiler_rt_sim.dylib
    [all...]

Completed in 935 milliseconds

1 23 4 5 6 7 8 91011>>