/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/ |
D | TypeSerializer.java | 79 public WritableTypeId typeId(Object value, JsonToken valueShape) { in typeId() method in TypeSerializer 106 public WritableTypeId typeId(Object value, JsonToken valueShape, in typeId() method in TypeSerializer 108 WritableTypeId typeId = typeId(value, valueShape); in typeId() local 113 public WritableTypeId typeId(Object value, Class<?> typeForId, in typeId() method in TypeSerializer 115 WritableTypeId typeId = typeId(value, valueShape); in typeId() local 137 WritableTypeId typeId) throws IOException; in writeTypePrefix() 162 WritableTypeId typeId) throws IOException; in writeTypeSuffix() 292 …public void writeCustomTypePrefixForScalar(Object value, JsonGenerator g, String typeId) throws IO… in writeCustomTypePrefixForScalar() 304 …public void writeCustomTypePrefixForObject(Object value, JsonGenerator g, String typeId) throws IO… in writeCustomTypePrefixForObject() 316 …public void writeCustomTypePrefixForArray(Object value, JsonGenerator g, String typeId) throws IOE… in writeCustomTypePrefixForArray() [all …]
|
/external/python/pyasn1/pyasn1/type/ |
D | char.py | 172 typeId = AbstractCharacterString.getTypeId() variable in NumericString 187 typeId = AbstractCharacterString.getTypeId() variable in PrintableString 202 typeId = AbstractCharacterString.getTypeId() variable in TeletexString 209 typeId = AbstractCharacterString.getTypeId() variable in T61String 224 typeId = AbstractCharacterString.getTypeId() variable in VideotexString 239 typeId = AbstractCharacterString.getTypeId() variable in IA5String 254 typeId = AbstractCharacterString.getTypeId() variable in GraphicString 269 typeId = AbstractCharacterString.getTypeId() variable in VisibleString 276 typeId = AbstractCharacterString.getTypeId() variable in ISO646String 290 typeId = AbstractCharacterString.getTypeId() variable in GeneralString [all …]
|
D | useful.py | 31 typeId = char.GraphicString.getTypeId() variable in ObjectDescriptor 169 typeId = char.VideotexString.getTypeId() variable in GeneralizedTime 186 typeId = char.VideotexString.getTypeId() variable in UTCTime
|
/external/deqp-deps/glslang/SPIRV/ |
D | SpvBuilder.h | 194 Op getTypeClass(Id typeId) const { return getOpCode(typeId); } in getTypeClass() 198 int getNumTypeComponents(Id typeId) const { return getNumTypeConstituents(typeId); } in getNumTypeComponents() 202 StorageClass getTypeStorageClass(Id typeId) const { return module.getStorageClass(typeId); } in getTypeStorageClass() 203 ImageFormat getImageTypeFormat(Id typeId) const in getImageTypeFormat() 214 bool isBoolType(Id typeId) in isBoolType() 216 bool isIntType(Id typeId) const in isIntType() 218 bool isUintType(Id typeId) const in isUintType() 220 bool isFloatType(Id typeId) const { return getTypeClass(typeId) == OpTypeFloat; } in isFloatType() 221 bool isPointerType(Id typeId) const { return getTypeClass(typeId) == OpTypePointer; } in isPointerType() 222 bool isScalarType(Id typeId) const in isScalarType() [all …]
|
D | SpvBuilder.cpp | 639 Id typeId = getTypeId(resultId); in getDerefTypeId() local 723 Id Builder::getContainedTypeId(Id typeId, int member) const in getContainedTypeId() 755 bool Builder::containsType(Id typeId, spv::Op typeOp, unsigned int width) const in containsType() 803 Id Builder::findScalarConstant(Op typeClass, Op opcode, Id typeId, unsigned value) in findScalarConstant() 818 Id Builder::findScalarConstant(Op typeClass, Op opcode, Id typeId, unsigned v1, unsigned v2) in findScalarConstant() 872 Id Builder::makeNullConstant(Id typeId) in makeNullConstant() 898 Id typeId = makeBoolType(); in makeBoolConstant() local 925 Id Builder::makeIntConstant(Id typeId, unsigned value, bool specConstant) in makeIntConstant() 946 Id Builder::makeInt64Constant(Id typeId, unsigned long long value, bool specConstant) in makeInt64Constant() 974 Id typeId = makeFloatType(32); in makeFloatConstant() local [all …]
|
/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/ |
D | SpvBuilder.h | 194 Op getTypeClass(Id typeId) const { return getOpCode(typeId); } in getTypeClass() 198 int getNumTypeComponents(Id typeId) const { return getNumTypeConstituents(typeId); } in getNumTypeComponents() 202 StorageClass getTypeStorageClass(Id typeId) const { return module.getStorageClass(typeId); } in getTypeStorageClass() 203 ImageFormat getImageTypeFormat(Id typeId) const in getImageTypeFormat() 214 bool isBoolType(Id typeId) in isBoolType() 216 bool isIntType(Id typeId) const in isIntType() 218 bool isUintType(Id typeId) const in isUintType() 220 bool isFloatType(Id typeId) const { return getTypeClass(typeId) == OpTypeFloat; } in isFloatType() 221 bool isPointerType(Id typeId) const { return getTypeClass(typeId) == OpTypePointer; } in isPointerType() 222 bool isScalarType(Id typeId) const in isScalarType() [all …]
|
D | SpvBuilder.cpp | 639 Id typeId = getTypeId(resultId); in getDerefTypeId() local 723 Id Builder::getContainedTypeId(Id typeId, int member) const in getContainedTypeId() 755 bool Builder::containsType(Id typeId, spv::Op typeOp, unsigned int width) const in containsType() 803 Id Builder::findScalarConstant(Op typeClass, Op opcode, Id typeId, unsigned value) in findScalarConstant() 818 Id Builder::findScalarConstant(Op typeClass, Op opcode, Id typeId, unsigned v1, unsigned v2) in findScalarConstant() 872 Id Builder::makeNullConstant(Id typeId) in makeNullConstant() 898 Id typeId = makeBoolType(); in makeBoolConstant() local 925 Id Builder::makeIntConstant(Id typeId, unsigned value, bool specConstant) in makeIntConstant() 946 Id Builder::makeInt64Constant(Id typeId, unsigned long long value, bool specConstant) in makeInt64Constant() 974 Id typeId = makeFloatType(32); in makeFloatConstant() local [all …]
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/ |
D | JsonValueSerializer.java | 378 WritableTypeId typeId) throws IOException { in writeTypePrefix() 386 WritableTypeId typeId) throws IOException { in writeTypeSuffix() 455 public void writeCustomTypePrefixForScalar(Object value, JsonGenerator gen, String typeId) in writeCustomTypePrefixForScalar() 462 …public void writeCustomTypePrefixForObject(Object value, JsonGenerator gen, String typeId) throws … in writeCustomTypePrefixForObject() 468 …public void writeCustomTypePrefixForArray(Object value, JsonGenerator gen, String typeId) throws I… in writeCustomTypePrefixForArray() 474 …public void writeCustomTypeSuffixForScalar(Object value, JsonGenerator gen, String typeId) throws … in writeCustomTypeSuffixForScalar() 480 …public void writeCustomTypeSuffixForObject(Object value, JsonGenerator gen, String typeId) throws … in writeCustomTypeSuffixForObject() 486 …public void writeCustomTypeSuffixForArray(Object value, JsonGenerator gen, String typeId) throws I… in writeCustomTypeSuffixForArray()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/ |
D | AsExternalTypeSerializer.java | 61 …protected final void _writeScalarSuffix(Object value, JsonGenerator g, String typeId) throws IOExc… in _writeScalarSuffix() 67 …protected final void _writeObjectSuffix(Object value, JsonGenerator g, String typeId) throws IOExc… in _writeObjectSuffix() 74 …protected final void _writeArraySuffix(Object value, JsonGenerator g, String typeId) throws IOExce… in _writeArraySuffix()
|
D | AsWrapperTypeSerializer.java | 46 protected String _validTypeId(String typeId) { in _validTypeId() 51 protected final void _writeTypeId(JsonGenerator g, String typeId) throws IOException in _writeTypeId()
|
D | TypeDeserializerBase.java | 145 String typeId) throws IOException in _findDeserializer() 249 …ected Object _deserializeWithNativeTypeId(JsonParser p, DeserializationContext ctxt, Object typeId) in _deserializeWithNativeTypeId() 281 protected JavaType _handleUnknownTypeId(DeserializationContext ctxt, String typeId) in _handleUnknownTypeId()
|
D | AsWrapperTypeDeserializer.java | 86 Object typeId = p.getTypeId(); in _deserialize() local 103 final String typeId = p.getText(); in _deserialize() local
|
D | AsArrayTypeDeserializer.java | 90 Object typeId = p.getTypeId(); in _deserialize() local 96 String typeId = _locateTypeId(p, ctxt); in _deserialize() local
|
D | AsPropertyTypeDeserializer.java | 70 Object typeId = p.getTypeId(); in deserializeTypedFromObject() local 114 String typeId = p.getText(); in _deserializeTypedForId() local
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/ |
D | ExternalTypeHandler.java | 89 final String typeId = p.getText(); in handleTypePropertyValue() local 106 String propName, Object bean, String typeId, int index) in _handleTypePropertyValue() 151 String typeId = p.getText(); in handlePropertyValue() local 188 String typeId = _typeIds[index]; in handlePropertyValue() local 206 String typeId = _typeIds[i]; in complete() local 263 String typeId = _typeIds[i]; in complete() local 329 int index, String typeId) throws IOException in _deserialize() 351 Object bean, int index, String typeId) throws IOException in _deserializeAndSet()
|
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/write/ |
D | WriteTypeIdTest.java | 38 WritableTypeId typeId = new WritableTypeId(data, JsonToken.START_OBJECT, "typeId"); in testBasicTypeIdWriteForObject() local 96 WritableTypeId typeId = new WritableTypeId(data, JsonToken.START_ARRAY, "typeId"); in testBasicTypeIdWriteForArray() local
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/exc/ |
D | InvalidTypeIdException.java | 34 JavaType baseType, String typeId) in InvalidTypeIdException() 42 JavaType baseType, String typeId) { in from()
|
/external/google-fruit/include/fruit/impl/data_structures/ |
D | fixed_size_allocator.defn.h | 46 inline void FixedSizeAllocator::FixedSizeAllocatorData::addType(TypeId typeId) { in addType() 56 inline void FixedSizeAllocator::FixedSizeAllocatorData::addExternallyAllocatedType(TypeId typeId) { in addExternallyAllocatedType()
|
/external/angle/src/compiler/translator/ |
D | OutputSPIRV.cpp | 545 const spirv::IdRef typeId = mBuilder.getTypeData(type, {}).id; in getSymbolIdAndStorageClass() local 559 spirv::IdRef typeId, in nodeDataInitLValue() 642 spirv::IdRef typeId, in accessChainPushSwizzle() 669 spirv::IdRef typeId) in accessChainPushDynamicComponent() 1025 const spirv::IdRef typeId = mBuilder.getTypeData(type, {}).id; in createConstant() local 1101 spirv::IdRef typeId, in createComplexConstant() 1127 spirv::IdRef OutputSPIRVTraverser::createConstructor(TIntermAggregate *node, spirv::IdRef typeId) in createConstructor() 1234 spirv::IdRef typeId, in createArrayOrStructConstructor() 1245 spirv::IdRef typeId, in createConstructorVectorFromScalar() 1260 spirv::IdRef typeId, in createConstructorVectorFromMatrix() [all …]
|
D | BuildSPIRV.cpp | 485 spirv::IdRef SPIRVBuilder::getTypePointerId(spirv::IdRef typeId, spv::StorageClass storageClass) in getTypePointerId() 553 spirv::IdRef typeId; in declareType() local 1143 const spirv::IdRef typeId = getSpirvTypeData(spirvType, nullptr).id; in getBasicConstantHelper() local 1174 spirv::IdRef SPIRVBuilder::getNullConstant(spirv::IdRef typeId) in getNullConstant() 1212 const spirv::IdRef typeId = getSpirvTypeData(vecType, nullptr).id; in getVectorConstantHelper() local 1251 spirv::IdRef SPIRVBuilder::getCompositeConstant(spirv::IdRef typeId, const spirv::IdRefList &values) in getCompositeConstant() 1303 spirv::IdRef SPIRVBuilder::declareVariable(spirv::IdRef typeId, in declareVariable() 1339 const spirv::IdRef typeId = getSpirvTypeData(spirvType, nullptr).id; in declareSpecConst() local 1501 void SPIRVBuilder::writePerVertexBuiltIns(const TType &type, spirv::IdRef typeId) in writePerVertexBuiltIns() 1746 void SPIRVBuilder::writeMemberDecorations(const SpirvType &type, spirv::IdRef typeId) in writeMemberDecorations()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
D | DexBackedTypedExceptionHandler.java | 38 private final int typeId; field in DexBackedTypedExceptionHandler
|
/external/conscrypt/android-stub/src/main/java/android/util/ |
D | StatsEvent.java | 88 private void writeByteArray(byte[] value, byte typeId) { in writeByteArray() 112 private void writeTypeId(byte typeId) { in writeTypeId()
|
/external/python/pyasn1/pyasn1/codec/der/ |
D | decoder.py | 35 typeId = typeDecoder.protoComponent.__class__.typeId variable
|
/external/angle/src/libANGLE/renderer/ |
D | glslang_wrapper_utils.cpp | 1075 spirv::IdRef typeId; member 1176 void SpirvIDDiscoverer::visitTypeHelper(spirv::IdResult id, spirv::IdRef typeId) in visitTypeHelper() 1238 spirv::IdRef typeId) in visitTypePointer() 1285 SpirvVariableType SpirvIDDiscoverer::visitVariable(spirv::IdResultType typeId, in visitVariable() 1400 spirv::IdRef typeId, in transformMemberDecorate() 1501 spirv::IdResultType typeId, in transformAccessChain() 1560 spirv::IdRef typeId, in transformTypePointer() 1597 TransformationState SpirvInactiveVaryingRemover::transformVariable(spirv::IdResultType typeId, in transformVariable() 1667 spirv::IdRef typeId) in visitTypePointer() 1674 spirv::IdResultType typeId, in visitVariable() [all …]
|
/external/python/pyasn1/pyasn1/codec/cer/ |
D | decoder.py | 55 typeId = typeDecoder.protoComponent.__class__.typeId variable
|