Searched refs:intType (Results 1 - 25 of 30) sorted by relevance

12

/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
H A DXmlMessageBuilder.java376 int intType = option.getInt(ENCODING_FIELD_TYPE);
377 EncodingType type = encodingTypeFromIntValue(intType);
583 int intType = encodingTypeToIntVal(encoding.getType());
584 result.put(ENCODING_FIELD_TYPE, intType);
622 * @param intType the value used on the wire
625 private static EncodingType encodingTypeFromIntValue(int intType) { argument
627 switch (intType) {
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/
H A DAndroidTranslatorUnitTest.java27 ctClass, ctClass.getDeclaredMethod("substring", new CtClass[]{CtClass.intType}),
68 ctClass, ctClass.getDeclaredMethod("valueOf", new CtClass[]{CtClass.intType}),
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DType.java62 } else if (ctClass.equals(CtClass.intType)) {
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DAnalyzerTest.java207 /* 6 */ code.addInvokestatic(stringClass, "valueOf", stringClass, new CtClass[]{CtClass.intType});
224 /* 1 */ code.addInvokestatic(intClass, "valueOf", intClass, new CtClass[]{CtClass.intType});
241 /* 1 */ code.addInvokestatic(stringClass, "valueOf", stringClass, new CtClass[]{CtClass.intType});
262 /* 9 */ code.addInvokestatic(stringClass, "valueOf", stringClass, new CtClass[]{CtClass.intType});
284 /* 7 */ code.addInvokestatic(stringClass, "valueOf", stringClass, new CtClass[]{CtClass.intType});
H A DScannerTest.java107 CtMethod method = new CtMethod(CtClass.voidType, "doit", new CtClass[] {CtClass.intType}, clazz);
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
H A DJsonMessageBuilder.java321 int intType = option.getInt(ENCODING_FIELD_TYPE);
322 EncodingType type = EncodingType.fromIntVal(intType);
535 int intType = encoding.getType().getAsInt();
536 result.put(ENCODING_FIELD_TYPE, intType);
/external/guice/core/test/com/google/inject/
H A DKeyTest.java124 Type intType = int.class;
125 assertEquals(integerKey, Key.get(intType));
126 assertEquals(integerKey2, Key.get(intType, Named.class));
127 assertEquals(integerKey3, Key.get(intType, Names.named("int")));
/external/javassist/sample/vector/
H A DVectorAssistant.java120 CtClass[] args2 = { CtClass.intType };
/external/javassist/src/main/javassist/expr/
H A DNewArray.java111 return CtClass.intType;
213 params[i] = CtClass.intType;
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/
H A DKeyTest.java209 TypeMirror intType = intMethod.getReturnType();
210 assertThat(intType.getKind().isPrimitive()).isTrue();
213 assertThat(types.isSameType(intType, integerType)).named("type equality").isFalse();
/external/javassist/src/main/javassist/
H A DCtClass.java100 public static CtClass intType; field in class:CtClass
152 intType = new CtPrimitiveType("int", 'I', "java.lang.Integer",
155 primitiveTypes[4] = intType;
987 * addField(new CtField(CtClass.intType, "i", cc),
/external/deqp/modules/glshared/
H A DglsShaderExecUtil.cpp121 const glu::VarType intType (intBaseType, glu::PRECISION_HIGHP);
123 src << "flat " << out << " " << glu::declare(intType, outputPrefix + output->name) << ";\n";
200 const glu::VarType intType (intBaseType, glu::PRECISION_HIGHP);
202 src << "flat out " << glu::declare(intType, outputPrefix + output->name) << ";\n";
324 const glu::VarType intType (intBasicType, glu::PRECISION_HIGHP);
326 decl.varType = intType;
436 const glu::VarType intType (intBaseType, glu::PRECISION_HIGHP);
438 src << "flat in " << glu::declare(intType, inputPrefix + output->name) << ";\n";
/external/javassist/src/main/javassist/bytecode/analysis/
H A DType.java60 public static final Type INTEGER = new Type(CtClass.intType);
109 prims.put(CtClass.intType, INTEGER);
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotation.java140 else if (type == CtClass.intType)
/external/javassist/src/main/javassist/tools/rmi/
H A DStubGenerator.java147 f = new CtField(CtClass.intType, fieldObjectId, proxy);
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderIntegerFunctionTests.cpp1167 const glu::DataType intType = vecSize == 1 ? glu::TYPE_INT : glu::getDataTypeIntVec(vecSize); local
1170 m_spec.outputs.push_back(Symbol("count", glu::VarType(intType, glu::PRECISION_MEDIUMP)));
1232 const glu::DataType intType = vecSize == 1 ? glu::TYPE_INT : glu::getDataTypeIntVec(vecSize); local
1235 m_spec.outputs.push_back(Symbol("lsb", glu::VarType(intType, glu::PRECISION_LOWP)));
1297 const glu::DataType intType = vecSize == 1 ? glu::TYPE_INT : glu::getDataTypeIntVec(vecSize); local
1300 m_spec.outputs.push_back(Symbol("msb", glu::VarType(intType, glu::PRECISION_LOWP)));
H A DvktShaderCommonFunctionTests.cpp1268 const glu::DataType intType = outIsSigned ? (vecSize > 1 ? glu::getDataTypeIntVec(vecSize) : glu::TYPE_INT) local
1272 m_spec.outputs.push_back(Symbol("out0", glu::VarType(intType, glu::PRECISION_HIGHP)));
2101 const glu::DataType intType = vecSize > 1 ? glu::getDataTypeIntVec(vecSize) : glu::TYPE_INT; local
2105 m_spec.outputs.push_back(Symbol("out1", glu::VarType(intType, glu::PRECISION_HIGHP)));
2252 const glu::DataType intType = vecSize > 1 ? glu::getDataTypeIntVec(vecSize) : glu::TYPE_INT; local
2255 m_spec.inputs.push_back(Symbol("in1", glu::VarType(intType, glu::PRECISION_HIGHP)));
2486 const glu::DataType intType = vecSize > 1 ? glu::getDataTypeIntVec(vecSize) : glu::TYPE_INT; local
2493 intGroup->addChild(new BitsToFloatCase(getTestContext(), intType, glu::ShaderType(shaderType)));
H A DvktShaderExecutor.cpp155 const glu::VarType intType (intBaseType, glu::PRECISION_HIGHP);
157 src << "layout(location = " << locationNumber << ") flat out " << glu::declare(intType, outputPrefix + output->name) << ";\n";
235 const glu::VarType intType (intBasicType, glu::PRECISION_HIGHP);
237 decl.varType = intType;
304 const glu::VarType intType (intBaseType, glu::PRECISION_HIGHP);
306 src << "layout(location = " << locationNumber << ") flat in " << glu::declare(intType, inputPrefix + output->name) << ";\n";
351 const glu::VarType intType (intBaseType, glu::PRECISION_HIGHP);
353 src << "layout(location = " << locationNumber << ") flat out " << glu::declare(intType, outputPrefix + output->name) << ";\n";
/external/deqp/modules/gles31/functional/
H A Des31fShaderIntegerFunctionTests.cpp919 const glu::DataType intType = vecSize == 1 ? glu::TYPE_INT : glu::getDataTypeIntVec(vecSize); local
922 m_spec.outputs.push_back(Symbol("count", glu::VarType(intType, glu::PRECISION_LOWP)));
979 const glu::DataType intType = vecSize == 1 ? glu::TYPE_INT : glu::getDataTypeIntVec(vecSize); local
982 m_spec.outputs.push_back(Symbol("lsb", glu::VarType(intType, glu::PRECISION_LOWP)));
1057 const glu::DataType intType = vecSize == 1 ? glu::TYPE_INT : glu::getDataTypeIntVec(vecSize); local
1060 m_spec.outputs.push_back(Symbol("msb", glu::VarType(intType, glu::PRECISION_LOWP)));
H A Des31fShaderCommonFunctionTests.cpp1036 const glu::DataType intType = outIsSigned ? (vecSize > 1 ? glu::getDataTypeIntVec(vecSize) : glu::TYPE_INT) local
1040 m_spec.outputs.push_back(Symbol("out0", glu::VarType(intType, glu::PRECISION_HIGHP)));
1744 const glu::DataType intType = vecSize > 1 ? glu::getDataTypeIntVec(vecSize) : glu::TYPE_INT;
1748 m_spec.outputs.push_back(Symbol("out1", glu::VarType(intType, glu::PRECISION_HIGHP)));
1835 const glu::DataType intType = vecSize > 1 ? glu::getDataTypeIntVec(vecSize) : glu::TYPE_INT;
1838 m_spec.inputs.push_back(Symbol("in1", glu::VarType(intType, glu::PRECISION_HIGHP)));
2205 const glu::DataType intType = vecSize > 1 ? glu::getDataTypeIntVec(vecSize) : glu::TYPE_INT;
2212 intGroup->addChild(new BitsToFloatCase(m_context, intType, glu::ShaderType(shaderType)));
/external/clang/utils/ABITest/
H A DABITestGen.py519 intType = BuiltinType('int',4)
523 sbtg = FixedTypeGenerator([charType, intType, floatType, doubleType])
551 'i32' : intType,
/external/javassist/src/main/javassist/bytecode/
H A DBytecode.java101 * b.addReturn(CtClass.intType);
735 || type == CtClass.intType)
768 || type == CtClass.intType)
/external/guice/extensions/multibindings/test/com/google/inject/multibindings/
H A DMapBinderTest.java103 private final TypeLiteral<Integer> intType = TypeLiteral.get(Integer.class); field in class:MapBinderTest
333 assertMapVisitor(Key.get(mapOfInteger), stringType, intType, setOf(module), BOTH, false, 1,
383 assertMapVisitor(Key.get(mapOfInteger), stringType, intType, setOf(module), BOTH, false, 0,
H A DMultibinderTest.java97 final TypeLiteral<Integer> intType = TypeLiteral.get(Integer.class); field in class:MultibinderTest
251 assertSetVisitor(Key.get(setOfInteger), intType, setOf(module), BOTH, false, 1,
328 assertSetVisitor(Key.get(setOfInteger), intType, setOf(module), BOTH, false, 0,
/external/deqp/modules/gles3/functional/
H A Des3fShaderCommonFunctionTests.cpp953 const glu::DataType intType = outIsSigned ? (vecSize > 1 ? glu::getDataTypeIntVec(vecSize) : glu::TYPE_INT) local
957 m_spec.outputs.push_back(Symbol("out0", glu::VarType(intType, glu::PRECISION_HIGHP)));
1699 const glu::DataType intType = vecSize > 1 ? glu::getDataTypeIntVec(vecSize) : glu::TYPE_INT; local
1704 intGroup->addChild(new BitsToFloatCase(m_context, intType, glu::ShaderType(shaderType)));

Completed in 2081 milliseconds

12