/external/r8/src/main/java/com/android/tools/r8/ir/desugar/ |
D | LambdaMainMethodSourceCode.java | 299 private int adjustType(int register, DexType fromType, DexType toType) { in adjustType() argument 300 if (fromType == toType) { in adjustType() 305 boolean toTypePrimitive = toType.isPrimitiveType(); in adjustType() 309 return addPrimitiveWideningConversion(register, fromType, toType); in adjustType() 319 return addPrimitiveWideningConversion(unboxedRegister, fromTypeAsPrimitive, toType); in adjustType() 327 if (toType == boxedFromType || in adjustType() 328 toType == factory().objectType || in adjustType() 331 toType == factory().boxedNumberType)) { in adjustType() 336 if (fromType.isArrayType() && toType == factory().objectType) { in adjustType() 341 if (fromType.isClassType() && toType.isClassType()) { in adjustType() [all …]
|
/external/guice/core/src/com/google/inject/internal/ |
D | TypeConverterBindingProcessor.java | 55 public Object convert(String value, TypeLiteral<?> toType) { in prepareBuiltInConverters() 70 public Object convert(String value, TypeLiteral<?> toType) { in prepareBuiltInConverters() 71 return Enum.valueOf((Class) toType.getRawType(), value); in prepareBuiltInConverters() 90 public Object convert(String value, TypeLiteral<?> toType) { in prepareBuiltInConverters() 113 public Object convert(String value, TypeLiteral<?> toType) { in convertToPrimitiveType()
|
/external/r8/src/main/java/com/android/tools/r8/ir/regalloc/ |
D | SpillMoveSet.java | 148 MoveType toType = to.getType(); in moveTypeForIntervals() local 150 if (toType == MoveType.OBJECT || fromType == MoveType.OBJECT) { in moveTypeForIntervals() 152 assert toType == MoveType.OBJECT || toType == MoveType.SINGLE; in moveTypeForIntervals() 155 assert toType == fromType; in moveTypeForIntervals() 156 return toType; in moveTypeForIntervals()
|
/external/webrtc/talk/session/media/ |
D | typewrapping.h.pump | 102 #define SMART_WRAPPER_(wrapper, toType, fromType, from) \ 103 (wrapper<toType, fromType>::Wrap(from)) 265 #define WRAP(ruleSet, toType, fromType, from) \ 266 SMART_WRAPPER_(ruleSet::SmartWrapper, toType, fromType, from) 280 #define WRAP_CALL$i(ruleSet, toType, function$for j [[, argType$j, arg$j]]) \ 284 toType$for j [[, \ 291 toType$for j [[, \
|
/external/guice/core/src/com/google/inject/spi/ |
D | TypeConverter.java | 32 Object convert(String value, TypeLiteral<?> toType); in convert() argument
|
/external/guice/core/test/com/google/inject/ |
D | TypeConversionTest.java | 379 public Object convert(String value, TypeLiteral<?> toType) { in testStringIsConvertedOnlyOnce() 455 public Object convert(String value, TypeLiteral<?> toType) { in mockTypeConverter() 467 public Object convert(String value, TypeLiteral<?> toType) {
|
D | ParentInjectorTest.java | 289 public Object convert(String value, TypeLiteral<?> toType) {
|
/external/python/cpython2/Mac/Modules/ae/ |
D | _AEmodule.c | 93 DescType toType; in AEDesc_AECoerceDesc() local 99 PyMac_GetOSType, &toType)) in AEDesc_AECoerceDesc() 102 toType, in AEDesc_AECoerceDesc() 940 DescType toType; in AE_AECoercePtr() local 948 PyMac_GetOSType, &toType)) in AE_AECoercePtr() 953 toType, in AE_AECoercePtr()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXISelDAGToDAG.cpp | 2160 unsigned int toType; in tryStore() local 2162 toType = NVPTX::PTXLdStInstCode::Float; in tryStore() 2164 toType = NVPTX::PTXLdStInstCode::Unsigned; in tryStore() 2200 getI32Imm(toType, dl), getI32Imm(toTypeWidth, dl), Addr, in tryStore() 2229 getI32Imm(toType, dl), getI32Imm(toTypeWidth, dl), Base, in tryStore() 2283 getI32Imm(toType, dl), getI32Imm(toTypeWidth, dl), Base, in tryStore() 2336 getI32Imm(toType, dl), getI32Imm(toTypeWidth, dl), N2, in tryStore()
|
/external/guice/core/test/com/google/inject/spi/ |
D | ElementsTest.java | 764 public Object convert(String value, TypeLiteral<?> toType) { in testConvertToTypes()
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCDatabaseMetaData.java | 168 public boolean supportsConvert(int fromType, int toType) in supportsConvert() argument
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 1195 typedef ExprResult PerformCastFn(Sema &S, Expr *operand, QualType toType); 1200 ExprResult doIntegralCast(Sema &S, Expr *op, QualType toType) { in doIntegralCast() argument 1201 return S.ImpCastExprToType(op, toType, CK_IntegralCast); in doIntegralCast() 1204 ExprResult doComplexIntegralCast(Sema &S, Expr *op, QualType toType) { in doComplexIntegralCast() argument 1205 return S.ImpCastExprToType(op, S.Context.getComplexType(toType), in doComplexIntegralCast()
|