Home
last modified time | relevance | path

Searched refs:JAVA_SPECIFICATION_VERSION (Results 1 – 21 of 21) sorted by relevance

/external/guava/android/guava-tests/test/com/google/common/io/
DFilesCreateTempDirTest.java20 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
115 return JAVA_SPECIFICATION_VERSION.value().equals("1.8"); in isJava8()
/external/guava/guava-tests/test/com/google/common/io/
DFilesCreateTempDirTest.java20 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
115 return JAVA_SPECIFICATION_VERSION.value().equals("1.8"); in isJava8()
/external/guava/android/guava-tests/test/com/google/common/base/
DFinalizableReferenceQueueClassLoaderUnloadingTest.java20 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
296 return JAVA_SPECIFICATION_VERSION.value().startsWith("9") in isJdk9OrHigher()
297 || JAVA_SPECIFICATION_VERSION.value().startsWith("10"); in isJdk9OrHigher()
DThrowablesTest.java20 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
344 Integer javaVersion = Ints.tryParse(JAVA_SPECIFICATION_VERSION.value()); in testLazyStackTraceWorksInProd()
/external/guava/guava-tests/test/com/google/common/base/
DFinalizableReferenceQueueClassLoaderUnloadingTest.java20 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
296 return JAVA_SPECIFICATION_VERSION.value().startsWith("9") in isJdk9OrHigher()
297 || JAVA_SPECIFICATION_VERSION.value().startsWith("10"); in isJdk9OrHigher()
DThrowablesTest.java20 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
344 Integer javaVersion = Ints.tryParse(JAVA_SPECIFICATION_VERSION.value()); in testLazyStackTraceWorksInProd()
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
DSystemUtils.java405 …public static final String JAVA_SPECIFICATION_VERSION = SystemProperties.getJavaSpecificationVersi… field in SystemUtils
407 …final JavaVersion JAVA_SPECIFICATION_VERSION_AS_ENUM = JavaVersion.get(JAVA_SPECIFICATION_VERSION);
1887 return isJavaVersionMatch(JAVA_SPECIFICATION_VERSION, versionPrefix); in getJavaVersionMatches()
DSystemProperties.java129 public static final String JAVA_SPECIFICATION_VERSION = "java.specification.version"; field in SystemProperties
486 return getProperty(JAVA_SPECIFICATION_VERSION); in getJavaSpecificationVersion()
/external/auto/value/src/test/java/com/google/auto/value/processor/
DNullablesTest.java18 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
107 double javaVersion = Double.parseDouble(JAVA_SPECIFICATION_VERSION.value()); in nullableMentionedInMethods()
DAutoBuilderCompilationTest.java18 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
139 double version = Double.parseDouble(JAVA_SPECIFICATION_VERSION.value()); in simpleRecord()
DAutoValueCompilationTest.java18 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
62 Double.parseDouble(JAVA_SPECIFICATION_VERSION.value()) >= 9.0;
/external/guava/guava/src/com/google/common/base/
DStandardSystemProperty.java63 JAVA_SPECIFICATION_VERSION("java.specification.version"), enumConstant
/external/guava/android/guava/src/com/google/common/base/
DStandardSystemProperty.java63 JAVA_SPECIFICATION_VERSION("java.specification.version"), enumConstant
/external/auto/factory/src/test/java/com/google/auto/factory/processor/
DAutoFactoryProcessorTest.java20 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
565 assume().that(JAVA_SPECIFICATION_VERSION.value()).doesNotMatch("1\\..*"); in checkerFrameworkNullableType()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DServiceManagerTest.java19 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
670 return JAVA_SPECIFICATION_VERSION.value().equals("1.8"); in isJava8()
DAbstractFutureTest.java19 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
286 Integer javaVersion = Ints.tryParse(JAVA_SPECIFICATION_VERSION.value()); in testToString_delayedTimeout()
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/
DServiceManagerTest.java19 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
654 return JAVA_SPECIFICATION_VERSION.value().equals("1.8"); in isJava8()
DAbstractFutureTest.java19 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
286 Integer javaVersion = Ints.tryParse(JAVA_SPECIFICATION_VERSION.value()); in testToString_delayedTimeout()
/external/turbine/java/com/google/turbine/main/
DMain.java19 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
322 if (release == Integer.parseInt(JAVA_SPECIFICATION_VERSION.value())) { in release()
/external/auto/value/src/it/functional/src/test/java/com/google/auto/value/
DAutoValueJava8Test.java18 import static com.google.common.base.StandardSystemProperty.JAVA_SPECIFICATION_VERSION;
170 double javaVersion = Double.parseDouble(JAVA_SPECIFICATION_VERSION.value()); in testEqualsParameterIsAnnotated()
DAutoAnnotationTest.java76 .that(Double.parseDouble(StandardSystemProperty.JAVA_SPECIFICATION_VERSION.value())) in testEqualsParameterAnnotation()