HomeSort by relevance Sort by last modified time
    Searched refs:Platform (Results 76 - 100 of 433) sorted by null

1 2 34 5 6 7 8 91011>>

  /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...]
  /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/deqp/framework/common/
tcuTestContext.cpp 32 Platform& platform,
37 : m_platform (platform)
  /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...]
tcuAndroidTestActivity.hpp 54 Platform m_platform;
  /external/deqp/framework/platform/null/
tcuNullRenderContext.hpp 34 class Platform;
  /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 38 public final class Platform {
39 private static final Platform PLATFORM = new Platform();
41 public static Platform get() {
42 return PLATFORM;
  /external/opencv3/samples/winrt_universal/VideoCaptureXAML/video_capture_xaml/video_capture_xaml.Shared/
App.xaml.cpp 36 using namespace Platform;
61 Resuming += ref new Windows::Foundation::EventHandler<Platform::Object ^>(this, &video_capture_xaml::App::OnResuming);
170 void video_capture_xaml::App::OnResuming(Platform::Object ^sender, Platform::Object ^args)
172 // throw ref new Platform::NotImplementedException();
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/
Platform.java 20 * Minimal GWT emulation of {@code com.google.common.collect.testing.Platform}.
26 final class Platform {
77 private Platform() {}
  /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() {}
  /external/opencv3/samples/winrt/OcvImageProcessing/OcvImageProcessing/
MainPage.xaml.h 34 void Button_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
46 cv::String ConvertPath(Platform::String^ path);
  /external/opencv3/samples/winrt_universal/VideoCaptureXAML/video_capture_xaml/video_capture_xaml.Windows/
MainPage.xaml.cpp 17 using namespace Platform;
57 void video_capture_xaml::MainPage::OnVisibilityChanged(Platform::Object ^sender,
  /external/opencv3/samples/winrt_universal/VideoCaptureXAML/video_capture_xaml/video_capture_xaml.WindowsPhone/
MainPage.xaml.cpp 17 using namespace Platform;
56 void video_capture_xaml::MainPage::OnVisibilityChanged(Platform::Object ^sender,
  /external/opencv3/samples/wp8/OpenCVXaml/OpenCVComponent/
OpenCVComponent.cpp 12 using namespace Platform;
43 return ref new Platform::Collections::VectorView<int>(output);
  /external/pdfium/testing/
test_support.h 47 v8::Platform** platform);
49 bool InitializeV8ForPDFium(v8::Platform** platform);
  /external/v8/include/
v8-platform.h 40 * V8 Platform abstraction layer.
45 class Platform {
57 virtual ~Platform() {}
70 * indicates that the task will run a long time. The Platform implementation
146 * Adds a trace event to the platform tracing system. This function call is
  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
common.hpp 47 * Detects running platform and attempts to use included pinmap, this is run on
89 * Get platform type, board must be initialised.
91 * @return mraa::platform Platform type enum
93 inline Platform
96 return (Platform) mraa_get_platform_type();
146 * Return Platform Name. Returns NULL if no platform inited.
148 * @return platform name
158 * Return platform versioning info. Returns NULL if no info present
    [all...]
  /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/v8/test/cctest/
test-trace-event.cc 19 #define GET_TRACE_OBJECTS_LIST platform.GetMockTraceObjects()
43 class MockTracingPlatform : public v8::Platform {
45 explicit MockTracingPlatform(v8::Platform* platform) {}
112 v8::Platform* old_platform = i::V8::GetCurrentPlatform();
113 MockTracingPlatform platform(old_platform);
114 i::V8::SetPlatformForTesting(&platform);
126 v8::Platform* old_platform = i::V8::GetCurrentPlatform();
127 MockTracingPlatform platform(old_platform);
128 i::V8::SetPlatformForTesting(&platform);
    [all...]
  /external/opencv3/samples/winrt/FaceDetection/FaceDetection/
MainPage.xaml.cpp 18 using namespace Platform;
42 void FaceDetection::MainPage::InitBtn_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
56 void FaceDetection::MainPage::detectBtn_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  /external/opencv3/samples/winrt_universal/PhoneTutorial/
MainPage.xaml.cpp 17 using namespace Platform;
72 void PhoneTutorial::MainPage::Process_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
118 void PhoneTutorial::MainPage::Reset_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
  /external/conscrypt/src/main/java/org/conscrypt/
ServerSessionContext.java 60 // This will already have gone through Platform#wrapSSLSession
71 return Platform.wrapSSLSession(session);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractTester.java 80 return Platform.format("%s[%s]", super.getName(), suiteName);
  /external/v8/test/unittests/
run-all-unittests.cc 18 platform_ = v8::platform::CreateDefaultPlatform();
33 v8::Platform* platform_;

Completed in 599 milliseconds

1 2 34 5 6 7 8 91011>>