Searched refs:getInteger (Results 1 - 25 of 58) sorted by relevance

123

/external/deqp/modules/gles31/functional/
H A Des31fShaderBuiltinConstantTests.cpp47 static int getInteger (const glw::Functions& gl, deUint32 pname) function in namespace:deqp::gles31::Functional::__anon5413
56 static int getInteger (const glw::Functions& gl) function in namespace:deqp::gles31::Functional::__anon5413
58 return getInteger(gl, Pname);
308 { "gl_MaxVertexAttribs", getInteger<GL_MAX_VERTEX_ATTRIBS> },
309 { "gl_MaxVertexUniformVectors", getInteger<GL_MAX_VERTEX_UNIFORM_VECTORS> },
312 { "gl_MaxFragmentUniformVectors", getInteger<GL_MAX_FRAGMENT_UNIFORM_VECTORS> },
313 { "gl_MaxDrawBuffers", getInteger<GL_MAX_DRAW_BUFFERS> },
315 { "gl_MaxVertexTextureImageUnits", getInteger<GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS> },
316 { "gl_MaxCombinedTextureImageUnits", getInteger<GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS> },
317 { "gl_MaxTextureImageUnits", getInteger<GL_MAX_TEXTURE_IMAGE_UNIT
[all...]
H A Des31fNegativeTestShared.hpp66 int getInteger (glw::GLenum pname) const;
H A Des31fNegativeTestShared.cpp77 int NegativeTestContext::getInteger (GLenum pname) const function in class:deqp::gles31::Functional::NegativeTestShared::NegativeTestContext
H A Des31fNegativeVertexArrayApiTests.cpp72 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
87 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
102 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
116 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
136 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
191 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
225 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
226 int maxVertexAttribRelativeOffset = ctx.getInteger(GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET);
288 int maxVertexAttribs = ctx.getInteger(GL_MAX_VERTEX_ATTRIBS);
289 int maxVertexAttribRelativeOffset = ctx.getInteger(GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSE
[all...]
H A Des31fShaderHelperInvocationTests.cpp146 static int getInteger (const glw::Functions& gl, deUint32 pname) function in namespace:deqp::gles31::Functional::__anon5422
230 const int maxSamples = getInteger(gl, GL_MAX_SAMPLES);
333 const int maxSamples = getInteger(gl, GL_MAX_SAMPLES);
492 const int maxSamples = getInteger(gl, GL_MAX_SAMPLES);
H A Des31fNegativeTextureApiTests.cpp96 int numMaxTextureUnits = ctx.getInteger(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS);
238 deUint32 log2MaxTextureSize = deLog2Floor32(ctx.getInteger(GL_MAX_TEXTURE_SIZE)) + 1;
244 deUint32 log2MaxCubemapSize = deLog2Floor32(ctx.getInteger(GL_MAX_CUBE_MAP_TEXTURE_SIZE)) + 1;
332 int maxTextureSize = ctx.getInteger(GL_MAX_TEXTURE_SIZE) + 1;
333 int maxCubemapSize = ctx.getInteger(GL_MAX_CUBE_MAP_TEXTURE_SIZE) + 1;
686 deUint32 log2MaxTextureSize = deLog2Floor32(ctx.getInteger(GL_MAX_TEXTURE_SIZE)) + 1;
692 deUint32 log2MaxCubemapSize = deLog2Floor32(ctx.getInteger(GL_MAX_CUBE_MAP_TEXTURE_SIZE)) + 1;
780 int maxTextureSize = ctx.getInteger(GL_MAX_TEXTURE_SIZE) + 1;
781 int maxCubemapSize = ctx.getInteger(GL_MAX_CUBE_MAP_TEXTURE_SIZE) + 1;
1012 deUint32 log2MaxTextureSize = deLog2Floor32(ctx.getInteger(GL_MAX_TEXTURE_SIZ
[all...]
/external/emma/core/java12/com/vladium/util/
H A DIntegerFactory.java22 public static Integer getInteger (final int value) method in class:IntegerFactory
/external/v8/src/inspector/
H A Dremote-object-id.cc24 parsedObjectId->getInteger("injectedScriptId", &m_injectedScriptId);
38 bool success = parsedObjectId->getInteger("id", &remoteObjectId->m_id);
55 parsedObjectId->getInteger("ordinal", &remoteCallFrameId->m_frameOrdinal);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTypedArray.java33 public int getInteger(int index, int defValue) { method in class:ShadowTypedArray
H A DShadowResources.java185 public int getInteger(int id) throws Resources.NotFoundException { method in class:ShadowResources
/external/swiftshader/src/Main/
H A DSwiftConfig.cpp720 config.pixelShaderVersion = ini.getInteger("Capabilities", "PixelShaderVersion", 30);
721 config.vertexShaderVersion = ini.getInteger("Capabilities", "VertexShaderVersion", 30);
722 config.textureMemory = ini.getInteger("Capabilities", "TextureMemory", 256);
723 config.identifier = ini.getInteger("Capabilities", "Identifier", 0);
724 config.vertexRoutineCacheSize = ini.getInteger("Caches", "VertexRoutineCacheSize", 1024);
725 config.pixelRoutineCacheSize = ini.getInteger("Caches", "PixelRoutineCacheSize", 1024);
726 config.setupRoutineCacheSize = ini.getInteger("Caches", "SetupRoutineCacheSize", 1024);
727 config.vertexCacheSize = ini.getInteger("Caches", "VertexCacheSize", 64);
728 config.textureSampleQuality = ini.getInteger("Quality", "TextureSampleQuality", 2);
729 config.mipmapQuality = ini.getInteger("Qualit
[all...]
H A DFrameBufferWin.cpp61 int api = ini.getInteger("Testing", "FrameBufferAPI", 0);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DTypedArrayTest.java39 assertThat(typedArray.getInteger(0, 24), equalTo(24));
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DJavaBeanWithNullValues.java43 public Integer getInteger() { method in class:JavaBeanWithNullValues
H A DJavaBeanWithNullValuesTest.java46 assertNotNull(parsed.getInteger());
57 assertNotNull(parsed.getInteger());
125 assertEquals(new Integer(1), parsed.getInteger());
/external/swiftshader/src/Common/
H A DConfigurator.hpp33 int getInteger(std::string sectionName, std::string valueName, int defaultValue = 0) const;
H A DConfigurator.cpp216 int Configurator::getInteger(string keyName, string valueName, int defaultValue) const function in class:sw::Configurator
227 return getInteger(keyName, valueName, (int)defaultValue) != 0;
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DMediaCodecVideoDecoder.java541 int new_width = format.getInteger(MediaFormat.KEY_WIDTH);
542 int new_height = format.getInteger(MediaFormat.KEY_HEIGHT);
547 width = format.getInteger(MediaFormat.KEY_WIDTH);
548 height = format.getInteger(MediaFormat.KEY_HEIGHT);
551 colorFormat = format.getInteger(MediaFormat.KEY_COLOR_FORMAT);
558 stride = format.getInteger("stride");
561 sliceHeight = format.getInteger("slice-height");
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
H A DViewInflater.java495 setInteger(view, attr, getInteger(Gravity.class, value));
499 setInteger(view, attr, getInteger(InputType.class, value));
521 int style = getInteger(Typeface.class, value);
555 setIntegerField(layout, "gravity", getInteger(Gravity.class, value));
572 anchor = getInteger(RelativeLayout.class, value);
577 setIntegerField(layout, layoutAttr, getInteger(layout.getClass(), value));
586 setInteger(view, "backgroundResource", getInteger(view, value));
607 setInteger(view, "imageResource", getInteger(view, value));
722 m.invoke(view, mContext, getInteger(view, value));
724 m.invoke(view, getInteger(vie
770 private Integer getInteger(Class<?> clazz, String value) { method in class:ViewInflater
809 private Integer getInteger(View view, String value) { method in class:ViewInflater
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderBuiltinVarTests.cpp57 static int getInteger (const glw::Functions& gl, deUint32 pname) function in namespace:deqp::gles3::Functional
66 static int getInteger (const glw::Functions& gl) function in namespace:deqp::gles3::Functional
68 return getInteger(gl, Pname);
1096 { "max_vertex_attribs", "gl_MaxVertexAttribs", getInteger<GL_MAX_VERTEX_ATTRIBS> },
1097 { "max_vertex_uniform_vectors", "gl_MaxVertexUniformVectors", getInteger<GL_MAX_VERTEX_UNIFORM_VECTORS> },
1098 { "max_fragment_uniform_vectors", "gl_MaxFragmentUniformVectors", getInteger<GL_MAX_FRAGMENT_UNIFORM_VECTORS> },
1099 { "max_texture_image_units", "gl_MaxTextureImageUnits", getInteger<GL_MAX_TEXTURE_IMAGE_UNITS> },
1100 { "max_vertex_texture_image_units", "gl_MaxVertexTextureImageUnits", getInteger<GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS> },
1101 { "max_combined_texture_image_units", "gl_MaxCombinedTextureImageUnits", getInteger<GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS> },
1102 { "max_draw_buffers", "gl_MaxDrawBuffers", getInteger<GL_MAX_DRAW_BUFFER
[all...]
/external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
H A DInterfaceControlMessageTest.java43 * @see IntegerAccessor#getInteger(IntegerAccessor.GetIntegerResponse)
46 public void getInteger(GetIntegerResponse response) { method in class:InterfaceControlMessageTest.IntegerAccessorImpl
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
H A DTestBean1.java53 public Integer getInteger() { method in class:TestBean1
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowResourcesTest.java141 assertThat(valuesTypedArray.getInteger(1, 0)).isEqualTo(3875);
180 assertThat(resources.getInteger(R.integer.meaning_of_life)).isEqualTo(42);
181 assertThat(resources.getInteger(R.integer.test_integer1)).isEqualTo(2000);
182 assertThat(resources.getInteger(R.integer.test_integer2)).isEqualTo(9);
183 assertThat(resources.getInteger(R.integer.test_large_hex)).isEqualTo(-65536);
184 assertThat(resources.getInteger(R.integer.test_value_with_zero)).isEqualTo(7210);
185 assertThat(resources.getInteger(R.integer.meaning_of_life_as_item)).isEqualTo(42);
190 assertThat(resources.getInteger(R.integer.reference_to_meaning_of_life)).isEqualTo(42);
H A DShadowTypedArrayTest.java40 assertThat(context.obtainStyledAttributes(new int[]{android.R.attr.alpha}).getInteger(0, -1)).isEqualTo(-1);
/external/javassist/src/test/test/javassist/convert/
H A DArrayAccessReplaceTest.java403 public Object getInteger(int i) { method in class:ArrayAccessReplaceTest.Complex
411 ((Object[])ns)[1] = getInteger(x);

Completed in 753 milliseconds

123