/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGLength.h | 106 SVGLengthType toType = unitType(); 110 || toType == LengthTypeUnknown 111 || (!from.isZero() && fromType != LengthTypePercentage && toType == LengthTypePercentage) 112 || (!isZero() && fromType == LengthTypePercentage && toType != LengthTypePercentage) 113 || (!from.isZero() && !isZero() && (fromType == LengthTypeEMS || fromType == LengthTypeEXS) && fromType != toType)) 119 if (fromType == LengthTypePercentage || toType == LengthTypePercentage) { 128 if (fromType == toType || from.isZero() || isZero() || fromType == LengthTypeEMS || fromType == LengthTypeEXS) { 134 length.newValueSpecifiedUnits(toType, WebCore::blend(fromValue, toValue, progress), exceptionState); 148 float fromValue = nonRelativeLengthContext.convertValueFromUserUnits(fromValueInUserUnits, unitMode(), toType, exceptionState); 153 length.newValueSpecifiedUnits(toType, WebCore::blend(fromValue, toValue, progress), exceptionState) [all...] |
SVGAnimationElement.h | 138 void animateDiscreteType(float percentage, const AnimatedType& fromType, const AnimatedType& toType, AnimatedType& animatedType) 141 animatedType = AnimatedType(toType);
|
SVGPathBlender.cpp | 285 static inline bool isSegmentEqual(const SVGPathSegType& fromType, const SVGPathSegType& toType, const PathCoordinateMode& fromMode, const PathCoordinateMode& toMode) 287 if (fromType == toType && (fromType == PathSegUnknown || fromType == PathSegClosePath)) 291 unsigned short to = toType;
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
typewrapping.h.pump | 102 #define SMART_WRAPPER_(wrapper, toType, fromType, from) \ 103 (wrapper<toType, fromType>::Wrap(from)) 109 typename unwrapper<fromType>::ToType 122 template <typename ToType, typename FromType> class Wrapper, 158 template <typename ToType, typename FromType> class Wrapper, 200 template<typename ToType, typename FromType> \ 218 typedef FromType ToType; \ 219 static FORCE_INLINE ToType Unwrap(FromType from) { \ 241 typedef unwrappedType ToType; \ 265 #define WRAP(ruleSet, toType, fromType, from) [all...] |
/frameworks/base/core/java/android/animation/ |
AnimatorInflater.java | 210 int toType = hasTo ? tvTo.type : 0; 214 (hasTo && (toType >= TypedValue.TYPE_FIRST_COLOR_INT) && 215 (toType <= TypedValue.TYPE_LAST_COLOR_INT))) { 231 if (toType == TypedValue.TYPE_DIMENSION) { 241 if (toType == TypedValue.TYPE_DIMENSION) { 261 if (toType == TypedValue.TYPE_DIMENSION) { 263 } else if ((toType >= TypedValue.TYPE_FIRST_COLOR_INT) && 264 (toType <= TypedValue.TYPE_LAST_COLOR_INT)) { 275 if (toType == TypedValue.TYPE_DIMENSION) { 277 } else if ((toType >= TypedValue.TYPE_FIRST_COLOR_INT) & [all...] |
/external/clang/lib/Sema/ |
SemaOverload.cpp | 69 static bool IsStandardConversion(Sema &S, Expr* From, QualType ToType, 76 QualType &ToType, 81 IsUserDefinedConversion(Sema &S, Expr *From, QualType ToType, 261 QualType ToType = getToType(1); 270 if (const PointerType* ToPtrType = ToType->getAs<PointerType>()) 318 QualType ToType = getToType(1); 327 if (FromType->isRealFloatingType() && ToType->isIntegralType(Ctx)) { 329 } else if (FromType->isIntegralType(Ctx) && ToType->isRealFloatingType()) { 335 llvm::APFloat Result(Ctx.getFloatTypeSemantics(ToType)); 361 if (FromType->isRealFloatingType() && ToType->isRealFloatingType() & [all...] |
SemaExprCXX.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSRule.h | 111 #define DEFINE_CSS_RULE_TYPE_CASTS(ToType, TYPE_NAME) \ 112 DEFINE_TYPE_CASTS(ToType, CSSRule, rule, rule->type() == CSSRule::TYPE_NAME, rule.type() == CSSRule::TYPE_NAME)
|
/ndk/sources/android/support/src/musl-locale/ |
iconv.c | 156 unsigned char totype = tomap[-1]; local 291 switch (totype) { 312 if (c < 128+totype) { 319 for (c=0; c<128-totype; c++) { 334 put_16((void *)*out, c, totype); 341 put_16((void *)*out, (c>>10)|0xd800, totype); 342 put_16((void *)(*out + 2), (c&0x3ff)|0xdc00, totype); 349 put_32((void *)*out, c, totype);
|
/external/clang/lib/AST/ |
ASTDiagnostic.cpp | 232 QualType ToType, bool PrintTree, 260 QualType ToType = 261 QualType::getFromOpaquePtr(reinterpret_cast<void*>(TDT.ToType)); 263 if (FormatTemplateTypeDiff(Context, FromType, ToType, TDT.PrintTree, 278 Val = TDT.PrintFromType ? TDT.FromType : TDT.ToType; 393 /// ToType - The type that FromType is compared to. Only in tree printing 395 QualType ToType; 439 /// FromType, ToType - The type arguments. 440 QualType FromType, ToType; 473 FromType(), ToType(), FromExpr(0), ToExpr(0), FromTD(0), ToTD(0) [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
MovieTransition.java | 80 mType = toType(); 102 mType = toType(); 126 mType = toType(); 152 mType = toType(); 285 private int toType() {
|
MovieEffect.java | 62 mType = toType(effect);
147 private static int toType(Effect effect) {
|
/external/llvm/lib/IR/ |
Core.cpp | 942 LLVMValueRef LLVMConstTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) { 944 unwrap(ToType))); 947 LLVMValueRef LLVMConstSExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) { 949 unwrap(ToType))); 952 LLVMValueRef LLVMConstZExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) { 954 unwrap(ToType))); 957 LLVMValueRef LLVMConstFPTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) { 959 unwrap(ToType))); 962 LLVMValueRef LLVMConstFPExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) { 964 unwrap(ToType))); [all...] |
/cts/tools/signature-tools/src/signature/compare/ |
Main.java | 94 String toType = args[++at]; 143 IApi toApi = getApi(toType, nameTo, toFiles, packages);
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
system.h | 897 #define CONST_CAST2(TOTYPE,FROMTYPE,X) (const_cast<TOTYPE> (X)) 902 #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((__extension__(union {FROMTYPE _q; TOTYPE _nq;})(X))._nq) 915 #define CONST_CAST2(TOTYPE,FROMTYPE,X) \ 916 ((TOTYPE) helper_const_non_const_cast ((const char *) (FROMTYPE) (X))) 918 #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((TOTYPE)(FROMTYPE)(X))
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
system.h | 897 #define CONST_CAST2(TOTYPE,FROMTYPE,X) (const_cast<TOTYPE> (X)) 902 #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((__extension__(union {FROMTYPE _q; TOTYPE _nq;})(X))._nq) 915 #define CONST_CAST2(TOTYPE,FROMTYPE,X) \ 916 ((TOTYPE) helper_const_non_const_cast ((const char *) (FROMTYPE) (X))) 918 #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((TOTYPE)(FROMTYPE)(X))
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
system.h | 897 #define CONST_CAST2(TOTYPE,FROMTYPE,X) (const_cast<TOTYPE> (X)) 902 #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((__extension__(union {FROMTYPE _q; TOTYPE _nq;})(X))._nq) 915 #define CONST_CAST2(TOTYPE,FROMTYPE,X) \ 916 ((TOTYPE) helper_const_non_const_cast ((const char *) (FROMTYPE) (X))) 918 #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((TOTYPE)(FROMTYPE)(X))
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
system.h | 897 #define CONST_CAST2(TOTYPE,FROMTYPE,X) (const_cast<TOTYPE> (X)) 902 #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((__extension__(union {FROMTYPE _q; TOTYPE _nq;})(X))._nq) 915 #define CONST_CAST2(TOTYPE,FROMTYPE,X) \ 916 ((TOTYPE) helper_const_non_const_cast ((const char *) (FROMTYPE) (X))) 918 #define CONST_CAST2(TOTYPE,FROMTYPE,X) ((TOTYPE)(FROMTYPE)(X))
|
/external/llvm/include/llvm-c/ |
Core.h | [all...] |
/art/runtime/base/ |
casts.h | 38 // implicit_cast<ToType>(expr)
|
/external/chromium_org/third_party/skia/src/animator/ |
SkScript.cpp | 343 bool SkScriptEngine::convertTo(SkDisplayTypes toType, SkScriptValue* value ) { 345 if (type == toType) 349 if (ToOpType(toType) == kString) { 364 return convertTo(toType, value); 366 return ConvertTo(this, toType, value); [all...] |
SkScriptTokenizer.cpp | 155 SkOperand2::OpType toType, SkScriptEngine2::TypeOp op) { 156 if (value->fIsConstant == SkScriptValue2::kConstant && convertTo(toType, value)) 161 value->fType = toType; 346 bool SkScriptEngine2::convertTo(SkOperand2::OpType toType, SkScriptValue2* value ) { 348 if (type == toType) 353 return convertTo(toType, value); 355 return ConvertTo(this, toType, value); [all...] |
/external/compiler-rt/lib/ubsan/ |
ubsan_handlers.h | 101 const TypeDescriptor &ToType;
|
/external/skia/src/animator/ |
SkScript.cpp | 343 bool SkScriptEngine::convertTo(SkDisplayTypes toType, SkScriptValue* value ) { 345 if (type == toType) 349 if (ToOpType(toType) == kString) { 364 return convertTo(toType, value); 366 return ConvertTo(this, toType, value); [all...] |
SkScriptTokenizer.cpp | 155 SkOperand2::OpType toType, SkScriptEngine2::TypeOp op) { 156 if (value->fIsConstant == SkScriptValue2::kConstant && convertTo(toType, value)) 161 value->fType = toType; 346 bool SkScriptEngine2::convertTo(SkOperand2::OpType toType, SkScriptValue2* value ) { 348 if (type == toType) 353 return convertTo(toType, value); 355 return ConvertTo(this, toType, value); [all...] |