Home
last modified time | relevance | path

Searched refs:fromString (Results 1 – 25 of 82) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/platform/
DDecimalTest.cpp88 protected: Decimal fromString(const String& string) in fromString() function in DecimalTest
90 return Decimal::fromString(string); in fromString()
95 DecimalStepRange stepRange(fromString(minimum), fromString(maximum), fromString(step)); in stepDown()
96 Decimal value = fromString(valueString); in stepDown()
106 DecimalStepRange stepRange(fromString(minimum), fromString(maximum), fromString(step)); in stepUp()
107 Decimal value = fromString(valueString); in stepUp()
647 EXPECT_EQ(encode(0, 0, Positive), fromString("0")); in TEST_F()
648 EXPECT_EQ(encode(0, 0, Negative), fromString("-0")); in TEST_F()
649 EXPECT_EQ(Decimal(1), fromString("1")); in TEST_F()
650 EXPECT_EQ(encode(1, 0, Negative), fromString("-1")); in TEST_F()
[all …]
/external/smack/src/org/xbill/DNS/
DUpdate.java84 newPrereq(Record.fromString(name, type, dclass, 0, record, origin)); in present()
97 newPrereq(Record.fromString(name, type, dclass, 0, tokenizer, origin)); in present()
136 newUpdate(Record.fromString(name, type, dclass, ttl, record, origin)); in add()
146 newUpdate(Record.fromString(name, type, dclass, ttl, tokenizer, in add()
202 newUpdate(Record.fromString(name, type, DClass.NONE, 0, record, in delete()
213 newUpdate(Record.fromString(name, type, DClass.NONE, 0, tokenizer, in delete()
DGenerator.java219 Name name = Name.fromString(namestr, origin); in nextRecord()
222 return Record.fromString(name, type, dclass, ttl, rdata, origin); in nextRecord()
235 Name name = Name.fromString(namestr, origin); in expand()
237 list.add(Record.fromString(name, type, dclass, ttl, in expand()
DTokenizer.java515 Name name = Name.fromString(next, origin); in getName()
596 byte [] array = base64.fromString(s); in getBase64()
634 byte [] array = base16.fromString(s); in getHex()
662 byte [] array = base16.fromString(next); in getHexString()
678 byte [] array = b32.fromString(next); in getBase32String()
DLookup.java178 newdomains[i] = Name.fromString(domains[i], Name.root); in setDefaultSearchPath()
274 this(Name.fromString(name), type, dclass); in Lookup()
288 this(Name.fromString(name), type, DClass.IN); in Lookup()
300 this(Name.fromString(name), Type.A, DClass.IN); in Lookup()
337 newdomains[i] = Name.fromString(domains[i], Name.root); in setSearchPath()
DReverseMap.java58 return Name.fromString(sb.toString(), inaddr4); in fromAddress()
60 return Name.fromString(sb.toString(), inaddr6); in fromAddress()
/external/chromium_org/third_party/WebKit/Source/core/svg/
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;
DSVGAnimateElement.cpp106 bool SVGAnimateElement::calculateFromAndToValues(const String& fromString, const String& toString) in calculateFromAndToValues() argument
112 determinePropertyValueTypes(fromString, toString); in calculateFromAndToValues()
113 ensureAnimator()->calculateFromAndToValues(m_fromProperty, m_toProperty, fromString, toString); in calculateFromAndToValues()
117 bool SVGAnimateElement::calculateFromAndByValues(const String& fromString, const String& byString) in calculateFromAndByValues() argument
132 determinePropertyValueTypes(fromString, byString); in calculateFromAndByValues()
133 ensureAnimator()->calculateFromAndByValues(m_fromProperty, m_toProperty, fromString, byString); in calculateFromAndByValues()
359 float SVGAnimateElement::calculateDistance(const String& fromString, const String& toString) in calculateDistance() argument
366 return ensureAnimator()->calculateDistance(fromString, toString); in calculateDistance()
DSVGAnimatedTypeAnimator.cpp143 …Ptr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& t… in calculateFromAndToValues() argument
145 from = constructFromString(fromString); in calculateFromAndToValues()
149 …Ptr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& b… in calculateFromAndByValues() argument
151 from = constructFromString(fromString); in calculateFromAndByValues()
247 float SVGAnimatedTypeAnimator::calculateDistance(const String& fromString, const String& toString) in calculateDistance() argument
251 RefPtr<SVGPropertyBase> fromValue = createPropertyForAnimation(fromString); in calculateDistance()
DSVGAnimatedTypeAnimator.h54 float calculateDistance(const String& fromString, const String& toString);
56 …Ptr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& t…
57 …Ptr<SVGPropertyBase>& from, RefPtr<SVGPropertyBase>& to, const String& fromString, const String& b…
DSVGAnimateElement.h53 …virtual bool calculateFromAndToValues(const String& fromString, const String& toString) OVERRIDE F…
54 …virtual bool calculateFromAndByValues(const String& fromString, const String& byString) OVERRIDE F…
57 … virtual float calculateDistance(const String& fromString, const String& toString) OVERRIDE FINAL;
DSVGAnimateMotionElement.cpp203 bool SVGAnimateMotionElement::calculateFromAndToValues(const String& fromString, const String& toSt… in calculateFromAndToValues() argument
206 parsePoint(fromString, m_fromPoint); in calculateFromAndToValues()
211 bool SVGAnimateMotionElement::calculateFromAndByValues(const String& fromString, const String& bySt… in calculateFromAndByValues() argument
216 parsePoint(fromString, m_fromPoint); in calculateFromAndByValues()
309 float SVGAnimateMotionElement::calculateDistance(const String& fromString, const String& toString) in calculateDistance() argument
313 if (!parsePoint(fromString, from)) in calculateDistance()
DSVGString.cpp36 String fromString = toSVGString(from)->m_value; in calculateAnimatedValue() local
39 animationElement->animateDiscreteType<String>(percentage, fromString, toString, m_value); in calculateAnimatedValue()
DSVGAnimationElement.h178 virtual bool calculateFromAndToValues(const String& fromString, const String& toString) = 0;
179 virtual bool calculateFromAndByValues(const String& fromString, const String& byString) = 0;
/external/chromium-trace/trace-viewer/src/base/
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/chrome/browser/resources/chromeos/chromevox/speech_rules/
Dspeech_rule.js79 cvox.SpeechRule.Type.fromString = function(str) { function
127 cvox.SpeechRule.Component.fromString = function(input) { function in cvox.SpeechRule.Component
132 output.type = cvox.SpeechRule.Type.fromString(input.substring(0, 3));
252 cvox.SpeechRule.Action.fromString = function(input) { function in cvox.SpeechRule.Action
258 var comp = cvox.SpeechRule.Component.fromString(comps[i]);
/external/smack/src/com/kenai/jbosh/
DStaticBody.java100 return fromString(byteOut.toString()); in fromStream()
111 public static StaticBody fromString( in fromString() method in StaticBody
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/cenc/
DProtectionSystemSpecificHeaderBox.java37 …public static byte[] OMA2_SYSTEM_ID = UUIDConverter.convert(UUID.fromString("A2B55680-6F43-11E0-9A…
38 …public static byte[] PLAYREADY_SYSTEM_ID = UUIDConverter.convert(UUID.fromString("9A04F079-9840-42…
/external/chromium_org/remoting/webapp/
Dhost_daemon_facade.js212 var result = remoting.HostController.AsyncResult.fromString(
230 var result = remoting.HostController.AsyncResult.fromString(
236 var state = remoting.HostController.State.fromString(
Dhost_session.js47 remoting.HostSession.State.fromString = function(stateString) { function
/external/smack/src/org/jivesoftware/smack/packet/
DPrivacyItem.java62 this.setRule(PrivacyRule.fromString(type)); in PrivacyItem()
341 protected static PrivacyRule fromString(String value) { in fromString() method in PrivacyItem.PrivacyRule
/external/guava/guava/src/com/google/common/net/
DHostAndPort.java131 HostAndPort parsedHost = fromString(host); in fromParts()
148 public static HostAndPort fromString(String hostPortString) { in fromString() method in HostAndPort
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
DX500NameStyle.java38 RDN[] fromString(String dirName); in fromString() method
/external/chromium_org/third_party/WebKit/Source/web/
DWebSerializedScriptValue.cpp40 WebSerializedScriptValue WebSerializedScriptValue::fromString(const WebString& s) in fromString() function in blink::WebSerializedScriptValue
/external/chromium_org/third_party/WebKit/public/web/
DWebSerializedScriptValue.h60 BLINK_EXPORT static WebSerializedScriptValue fromString(const WebString&);

1234