HomeSort by relevance Sort by last modified time
    Searched refs:toType (Results 1 - 25 of 25) sorted by null

  /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), es);
148 float fromValue = nonRelativeLengthContext.convertValueFromUserUnits(fromValueInUserUnits, unitMode(), toType, es);
153 length.newValueSpecifiedUnits(toType, WebCore::blend(fromValue, toValue, progress), es)
    [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;
  /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...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
MovieEffect.java 62 mType = toType(effect);
147 private static int toType(Effect effect) {
MovieTransition.java 80 mType = toType();
102 mType = toType();
126 mType = toType();
152 mType = toType();
285 private int toType() {
  /cts/tools/signature-tools/src/signature/compare/
Main.java 94 String toType = args[++at];
143 IApi toApi = getApi(toType, nameTo, toFiles, packages);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
es_generator.py 68 def ConvertValue(value, fromType, toType):
76 if not Converters[fromType].has_key(toType):
77 print >> sys.stderr, "No converter found for type '%s' to type '%s'. Ignoring." % (fromType, toType)
81 conversionString = Converters[fromType][toType]
    [all...]
  /external/mesa3d/src/mesa/main/
es_generator.py 68 def ConvertValue(value, fromType, toType):
76 if not Converters[fromType].has_key(toType):
77 print >> sys.stderr, "No converter found for type '%s' to type '%s'. Ignoring." % (fromType, toType)
81 conversionString = Converters[fromType][toType]
    [all...]
  /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...]
SkScript.h 91 static bool ConvertTo(SkScriptEngine* , SkDisplayTypes toType, SkScriptValue* value);
SkScript2.h 53 static bool ConvertTo(SkScriptEngine2* , SkOperand2::OpType toType, SkScriptValue2* value);
  /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...]
SkScript.h 91 static bool ConvertTo(SkScriptEngine* , SkDisplayTypes toType, SkScriptValue* value);
SkScript2.h 53 static bool ConvertTo(SkScriptEngine2* , SkOperand2::OpType toType, SkScriptValue2* value);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding_1.3.100.I20100601-0800.jar 
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
VertexBuffer9.cpp 346 template <GLenum fromType, bool normalized, unsigned int toType>
347 struct ConversionRule : Cast<typename GLToCType<fromType>::type, typename D3DToCType<toType>::type> { };
  /libcore/luni/src/main/java/java/sql/
DatabaseMetaData.java     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.cpp     [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 168 public boolean supportsConvert(int fromType, int toType)
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 

Completed in 806 milliseconds