Searched refs:fromString (Results 1 - 25 of 89) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGString.cpp36 String fromString = toSVGString(from)->m_value; local
39 animationElement->animateDiscreteType<String>(percentage, fromString, toString, m_value);
H A DSVGAnimateMotionElement.h48 virtual bool calculateFromAndToValues(const String& fromString, const String& toString) OVERRIDE;
49 virtual bool calculateFromAndByValues(const String& fromString, const String& byString) OVERRIDE;
52 virtual float calculateDistance(const String& fromString, const String& toString) OVERRIDE;
H A DSVGAnimateElement.h52 virtual bool calculateFromAndToValues(const String& fromString, const String& toString) OVERRIDE FINAL;
53 virtual bool calculateFromAndByValues(const String& fromString, const String& byString) OVERRIDE FINAL;
56 virtual float calculateDistance(const String& fromString, const String& toString) OVERRIDE FINAL;
H A DSVGAnimatedTypeAnimator.h54 float calculateDistance(const String& fromString, const String& toString);
56 void calculateFromAndToValues(RefPtr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& toString);
57 void calculateFromAndByValues(RefPtr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& byString);
H A DSVGAnimateElement.cpp108 bool SVGAnimateElement::calculateFromAndToValues(const String& fromString, const String& toString) argument
114 determinePropertyValueTypes(fromString, toString);
115 ensureAnimator()->calculateFromAndToValues(m_fromProperty, m_toProperty, fromString, toString);
119 bool SVGAnimateElement::calculateFromAndByValues(const String& fromString, const String& byString) argument
134 determinePropertyValueTypes(fromString, byString);
135 ensureAnimator()->calculateFromAndByValues(m_fromProperty, m_toProperty, fromString, byString);
361 float SVGAnimateElement::calculateDistance(const String& fromString, const String& toString) argument
368 return ensureAnimator()->calculateDistance(fromString, toString);
H A DSVGAnimatedTypeAnimator.cpp143 void SVGAnimatedTypeAnimator::calculateFromAndToValues(RefPtr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& toString) argument
145 from = constructFromString(fromString);
149 void SVGAnimatedTypeAnimator::calculateFromAndByValues(RefPtr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& byString) argument
151 from = constructFromString(fromString);
247 float SVGAnimatedTypeAnimator::calculateDistance(const String& fromString, const String& toString) argument
251 RefPtr<SVGPropertyBase> fromValue = createPropertyForAnimation(fromString);
H A DSVGAnimateMotionElement.cpp216 bool SVGAnimateMotionElement::calculateFromAndToValues(const String& fromString, const String& toString) argument
219 parsePoint(fromString, m_fromPoint);
224 bool SVGAnimateMotionElement::calculateFromAndByValues(const String& fromString, const String& byString) argument
229 parsePoint(fromString, m_fromPoint);
322 float SVGAnimateMotionElement::calculateDistance(const String& fromString, const String& toString) argument
326 if (!parsePoint(fromString, from))
H A DSVGAnimationElement.h177 virtual bool calculateFromAndToValues(const String& fromString, const String& toString) = 0;
178 virtual bool calculateFromAndByValues(const String& fromString, const String& byString) = 0;
180 virtual float calculateDistance(const String& /*fromString*/, const String& /*toString*/) { return -1.f; }
/external/chromium-trace/trace-viewer/src/base/
H A Dcolor_test.js11 var c = base.Color.fromString('rgb(1, 2, 3)');
19 var c = base.Color.fromString('rgba(1, 2, 3, 0.5)');
27 var c = base.Color.fromString('#010203');
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimalTest.cpp88 protected: Decimal fromString(const String& string) function in class:DecimalTest
90 return Decimal::fromString(string);
95 DecimalStepRange stepRange(fromString(minimum), fromString(maximum), fromString(step));
96 Decimal value = fromString(valueString);
106 DecimalStepRange stepRange(fromString(minimum), fromString(maximum), fromString(step));
107 Decimal value = fromString(valueStrin
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
H A DX500NameStyle.java38 RDN[] fromString(String dirName); method in interface:X500NameStyle
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/cenc/
H A DProtectionSystemSpecificHeaderBox.java37 public static byte[] OMA2_SYSTEM_ID = UUIDConverter.convert(UUID.fromString("A2B55680-6F43-11E0-9A3F-0002A5D5C51B"));
38 public static byte[] PLAYREADY_SYSTEM_ID = UUIDConverter.convert(UUID.fromString("9A04F079-9840-4286-AB92-E65BE0885F95"));
/external/smack/src/com/kenai/jbosh/
H A DStaticBody.java100 return fromString(byteOut.toString());
111 public static StaticBody fromString( method in class:StaticBody
/external/smack/src/org/xbill/DNS/
H A DReverseMap.java58 return Name.fromString(sb.toString(), inaddr4);
60 return Name.fromString(sb.toString(), inaddr6);
H A DUpdate.java84 newPrereq(Record.fromString(name, type, dclass, 0, record, origin));
97 newPrereq(Record.fromString(name, type, dclass, 0, tokenizer, origin));
136 newUpdate(Record.fromString(name, type, dclass, ttl, record, origin));
146 newUpdate(Record.fromString(name, type, dclass, ttl, tokenizer,
202 newUpdate(Record.fromString(name, type, DClass.NONE, 0, record,
213 newUpdate(Record.fromString(name, type, DClass.NONE, 0, tokenizer,
H A DGenerator.java219 Name name = Name.fromString(namestr, origin);
222 return Record.fromString(name, type, dclass, ttl, rdata, origin);
235 Name name = Name.fromString(namestr, origin);
237 list.add(Record.fromString(name, type, dclass, ttl,
H A DTokenizer.java515 Name name = Name.fromString(next, origin);
596 byte [] array = base64.fromString(s);
634 byte [] array = base16.fromString(s);
662 byte [] array = base16.fromString(next);
678 byte [] array = b32.fromString(next);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
H A Dspeech_rule.js79 cvox.SpeechRule.Type.fromString = function(str) {
127 cvox.SpeechRule.Component.fromString = function(input) {
132 output.type = cvox.SpeechRule.Type.fromString(input.substring(0, 3));
252 cvox.SpeechRule.Action.fromString = function(input) {
258 var comp = cvox.SpeechRule.Component.fromString(comps[i]);
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwBrowserProcess.java70 UUID uuid = UUID.fromString(fragments[1]);
/external/chromium_org/remoting/webapp/
H A Dhost_session.js47 remoting.HostSession.State.fromString = function(stateString) {
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSerializedScriptValue.cpp42 WebSerializedScriptValue WebSerializedScriptValue::fromString(const WebString& s) function in class:blink::WebSerializedScriptValue
/external/chromium_org/third_party/WebKit/public/web/
H A DWebSerializedScriptValue.h60 BLINK_EXPORT static WebSerializedScriptValue fromString(const WebString&);
/external/guava/guava/src/com/google/common/net/
H A DHostSpecifier.java78 final HostAndPort parsedHost = HostAndPort.fromString(specifier);
/external/smack/src/org/xbill/DNS/tests/
H A Dprimary.java36 Name origin = Name.fromString(args[arg++], Name.root);
/external/smack/src/org/xbill/DNS/utils/
H A Dbase16.java46 fromString(String str) { method in class:base16

Completed in 2523 milliseconds

1234