OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:intType
(Results
1 - 6
of
6
) sorted by null
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
JsonMessageBuilder.java
321
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/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlMessageBuilder.java
376
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
) {
627
switch (
intType
) {
/external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp
953
const glu::DataType
intType
= outIsSigned ? (vecSize > 1 ? glu::getDataTypeIntVec(vecSize) : glu::TYPE_INT)
957
m_spec.outputs.push_back(Symbol("out0", glu::VarType(
intType
, glu::PRECISION_HIGHP)));
[
all
...]
/external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp
[
all
...]
es31fShaderIntegerFunctionTests.cpp
919
const glu::DataType
intType
= vecSize == 1 ? glu::TYPE_INT : glu::getDataTypeIntVec(vecSize);
922
m_spec.outputs.push_back(Symbol("count", glu::VarType(
intType
, glu::PRECISION_LOWP)))
[
all
...]
/external/javassist/src/main/javassist/
CtClass.java
100
public static CtClass
intType
;
152
intType
= new CtPrimitiveType("int", 'I', "java.lang.Integer",
155
primitiveTypes[4] =
intType
;
987
* addField(new CtField(CtClass.
intType
, "i", cc),
[
all
...]
Completed in 678 milliseconds