HomeSort by relevance Sort by last modified time
    Searched defs:Platform (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/guava/guava-gwt/src-super/com/google/common/escape/super/com/google/common/escape/
Platform.java 22 class Platform {
  /external/guava/guava-gwt/src-super/com/google/common/testing/super/com/google/common/testing/
Platform.java 26 final class Platform {
35 private Platform() {}
  /external/guava/guava/src/com/google/common/base/
Platform.java 27 final class Platform {
28 private Platform() {}
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Platform.java 24 class Platform {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
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.");
ObjectArrays.java 43 return Platform.newArray(reference, length);
58 Platform.unsafeArrayCopy(array, 0, result, 1, array.length);
80 Platform.unsafeArrayCopy(
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
Platform.java 30 class Platform {
  /external/guava/guava-testlib/src/com/google/common/testing/
Platform.java 32 final class Platform {
53 private Platform() {}
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLProvider.java 39 // Make sure the platform is initialized.
40 Platform.setup();
Platform.java 22 class Platform {
24 public static final Platform MAPPER = new Platform();
28 * Runs all the setup for the platform that only needs to run once.
40 private Platform() {
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
Platform.java 25 final class Platform {
26 private Platform() {}
  /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);
Platform.java 28 class Platform {
82 private Platform() {}
TestMapEntrySetGenerator.java 49 Platform.unsafeArrayCopy(elements, 0, entries, 0, elements.length);
  /external/chromium_org/webkit/common/user_agent/
user_agent_unittest.cc 21 enum Platform {
  /external/guava/guava/src/com/google/common/collect/
Platform.java 30 class Platform {
95 private Platform() {}
ObjectArrays.java 44 return Platform.newArray(type, length);
55 return Platform.newArray(reference, length);
68 Platform.unsafeArrayCopy(first, 0, result, 0, first.length);
69 Platform.unsafeArrayCopy(second, 0, result, first.length, second.length);
85 Platform.unsafeArrayCopy(array, 0, result, 1, array.length);
107 Platform.unsafeArrayCopy(
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
Platform.java 26 class Platform {
CollectionIteratorTester.java 97 new IteratorTester<E>(Platform.collectionIteratorTesterNumIterations(), features, elements,
124 return Platform.getMethod(
134 return Platform.getMethod(
159 return Platform.getMethod(
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
Platform.java 3 public enum Platform {
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Platform.java 25 final class Platform {
26 private Platform() {}
  /external/chromium_org/base/test/expectations/
expectation.h 40 // A Platform stores information about the OS environment.
41 struct Platform {
42 // The name of the platform. E.g., "Win", or "Mac".
45 // The variant of the platform, either an OS version like "XP" or "10.8", or
50 // Converts a text string |modifier| to a Platform struct, written to
53 Platform* out_platform) WARN_UNUSED_RESULT;
55 // Returns the Platform for the currently running binary.
56 Platform GetCurrentPlatform();
83 std::vector<Platform> platforms;
  /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/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/public/platform/
Platform.h 98 class Platform {
108 WEBKIT_EXPORT static void initialize(Platform*);
110 WEBKIT_EXPORT static Platform* current();
159 // Creates a platform dependent WebMIDIAccessor. MIDIAccessor under platform
251 // false on platform specific error conditions.
270 // Allocates discardable memory. May return 0, even if the platform supports
433 // Add a trace event to the platform tracing system. Depending on the actual
510 // Returns true if the platform is capable of producing an offscreen context suitable for accelerating 2d canvas.
511 // This will return false if the platform cannot promise that contexts will be preserved across operations lik
    [all...]

Completed in 711 milliseconds

1 2 3