HomeSort by relevance Sort by last modified time
    Searched refs:getMajorVersion (Results 1 - 25 of 252) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/nist-sip/java/javax/sip/header/
MimeVersionHeader.java 8 int getMajorVersion();
  /libcore/ojluni/src/main/java/java/sql/
Driver.java 126 int getMajorVersion();
  /dalvik/dx/src/com/android/dx/cf/iface/
ClassFile.java 51 public int getMajorVersion();
  /external/nist-sip/java/gov/nist/javax/sip/header/
MimeVersion.java 83 public int getMajorVersion() {
  /cts/tests/acceleration/src/android/acceleration/cts/
BaseAccelerationTest.java 70 return getMajorVersion(configInfo.reqGlEsVersion);
77 private static int getMajorVersion(int glEsVersion) {
  /cts/tests/tests/hardware/src/android/hardware/cts/
GlUtils.java 29 static int getMajorVersion() {
HardwareBufferTest.java 73 sHasFloatBuffers = GlUtils.getMajorVersion() >= 3 ||
  /external/deqp/framework/egl/
egluGLUtil.cpp 65 switch (apiType.getMajorVersion())
90 if (contextType.getMajorVersion() <= 2)
93 attribList.push_back(contextType.getMajorVersion());
101 attribList.push_back(contextType.getMajorVersion());
116 attribList.push_back(contextType.getMajorVersion());
  /cts/tests/tests/opengl/src/android/opengl/cts/
ByteBufferTest.java 50 if (Egl14Utils.getMajorVersion() >= 3) {
OpenGlEsVersionTest.java 98 if (getMajorVersion(reportedVersion) != 3 || getMinorVersion(reportedVersion) < 1)
132 if (getMajorVersion(reportedVersion) != 3 || getMinorVersion(reportedVersion) < 1) {
155 int major = getMajorVersion(reportedVersion);
295 private static int getMajorVersion(int glEsVersion) {
Egl14Utils.java 37 static int getMajorVersion() {
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver1.java 97 public int getMajorVersion() {
99 } // end method getMajorVersion()
TestHelper_Driver4.java 113 public int getMajorVersion() {
115 } // end method getMajorVersion()
  /libcore/luni/src/test/java/libcore/java/sql/
DriverTest.java 52 assertTrue(getDriver().getMajorVersion() > 0);
  /external/deqp/framework/opengl/
gluRenderContext.cpp 43 return a.getMajorVersion() > b.getMajorVersion() ||
44 (a.getMajorVersion() == b.getMajorVersion() && a.getMinorVersion() >= b.getMinorVersion());
169 if (apiType.getProfile() == PROFILE_ES && apiType.getMajorVersion() == 2)
gluRenderContext.hpp 76 int getMajorVersion (void) const { return int((m_bits>>MAJOR_SHIFT) & ((1u<<MAJOR_BITS)-1u)); }
148 using ApiType::getMajorVersion;
gluStrUtil.cpp 133 str << apiType.getMajorVersion() << "." << apiType.getMinorVersion();
  /external/deqp/framework/platform/osx/
tcuOSXPlatform.cpp 92 if (type.getAPI().getMajorVersion() == 4)
94 else if (type.getAPI().getMajorVersion() == 3)
  /external/deqp/framework/opengl/simplereference/
sglrReferenceUtils.cpp 50 const bool useClampingNormalization = (ctxType.getProfile() == glu::PROFILE_ES && ctxType.getMajorVersion() >= 3) ||
51 (ctxType.getMajorVersion() == 4 && ctxType.getMinorVersion() >= 2);
  /external/javasqlite/src/main/java/SQLite/
JDBCDriver.java 119 public int getMajorVersion() {
  /external/smali/smalidea/src/main/java/org/jf/smalidea/errorReporting/
ITNProxy.java 57 params.put("app.version.major", appInfo.getMajorVersion());
  /external/deqp/framework/platform/null/
tcuNullRenderContext.cpp 171 else if (glu::isContextTypeGLCore(ctxType) && ctxType.getMajorVersion() == 3)
176 else if (glu::isContextTypeGLCore(ctxType) && ctxType.getMajorVersion() == 4 && ctxType.getMinorVersion() <= 4)
  /dalvik/dx/src/com/android/dx/cf/direct/
DirectClassFile.java 262 public int getMajorVersion() {
  /external/javassist/src/main/javassist/bytecode/
MethodInfo.java 397 if (cf.getMajorVersion() >= ClassFile.JAVA_6)
  /external/javassist/src/main/javassist/compiler/
MemberCodeGen.java 44 public int getMajorVersion() {
49 return cf.getMajorVersion();
974 if (getMajorVersion() < ClassFile.JAVA_5)
    [all...]

Completed in 901 milliseconds

1 2 3 4 5 6 7 8 91011