Home
last modified time | relevance | path

Searched refs:baseValue (Results 1 – 18 of 18) sorted by relevance

/external/webkit/Source/JavaScriptCore/dfg/
DDFGOperations.cpp67 JSValue baseValue = JSValue::decode(encodedBase); in operationGetByVal() local
70 if (LIKELY(baseValue.isCell())) { in operationGetByVal()
71 JSCell* base = baseValue.asCell(); in operationGetByVal()
89 return JSValue::encode(baseValue.get(exec, i)); in operationGetByVal()
101 return JSValue::encode(baseValue.get(exec, ident)); in operationGetByVal()
106 JSValue baseValue = JSValue::decode(encodedBase); in operationGetById() local
107 PropertySlot slot(baseValue); in operationGetById()
108 return JSValue::encode(baseValue.get(exec, *identifier, slot)); in operationGetById()
116 JSValue baseValue = JSValue::decode(encodedBase); in operationPutByValInternal() local
123 if (isJSArray(globalData, baseValue)) { in operationPutByValInternal()
[all …]
/external/icu4c/i18n/
Dnfrule.h56 …ERuleType getType() const { return (ERuleType)(baseValue <= kNoBase ? (ERuleType)baseValue : kOthe… in getType()
57 void setType(ERuleType ruleType) { baseValue = (int32_t)ruleType; } in setType()
59 int64_t getBaseValue() const { return baseValue; } in getBaseValue()
84 double matchToDelimiter(const UnicodeString& text, int32_t startPos, double baseValue,
95 int64_t baseValue;
Dnfrule.cpp32 : baseValue((int32_t)0) in NFRule()
132 if ((rule1->baseValue > 0 in makeRules()
133 && (rule1->baseValue % util64_pow(rule1->radix, rule1->exponent)) == 0) in makeRules()
148 if (rule1->baseValue >= 0) { in makeRules()
149 rule2->baseValue = rule1->baseValue; in makeRules()
151 ++rule1->baseValue; in makeRules()
166 rule2->baseValue = rule1->baseValue; in makeRules()
468 baseValue = newBaseValue; in setBaseValue()
475 if (baseValue >= 1) { in setBaseValue()
509 if (radix == 0 || baseValue < 1) { in expectedExponent()
[all …]
Dnfsubs.cpp153 double baseValue,
213 double baseValue,
280 double baseValue,
312 double baseValue, in doParse() argument
316 { result.setDouble(baseValue); return TRUE; } in doParse()
678 double baseValue, in doParse() argument
684 fprintf(stderr, "<nfsubs> %x bv: %g ub: %g\n", this, baseValue, upperBound); in doParse()
746 tempResult = composeRuleValue(tempResult, baseValue); in doParse()
929 double baseValue, in doParse() argument
937 … return NFSubstitution::doParse(text, parsePosition, baseValue, upperBound, lenientParse, result); in doParse()
[all …]
Dnfsubs.h188 double baseValue,
/external/webkit/Source/JavaScriptCore/jit/
DJITStubs.cpp806 …allFrame, CodeBlock* codeBlock, ReturnAddressPtr returnAddress, JSValue baseValue, const PutProper… in tryCachePutByID() argument
810 if (!baseValue.isCell()) in tryCachePutByID()
819 JSCell* baseCell = baseValue.asCell(); in tryCachePutByID()
856 …allFrame, CodeBlock* codeBlock, ReturnAddressPtr returnAddress, JSValue baseValue, const Identifie… in tryCacheGetByID() argument
862 if (!baseValue.isCell()) { in tryCacheGetByID()
869 if (isJSArray(globalData, baseValue) && propertyName == callFrame->propertyNames().length) { in tryCacheGetByID()
874 if (isJSString(globalData, baseValue) && propertyName == callFrame->propertyNames().length) { in tryCacheGetByID()
887 JSCell* baseCell = baseValue.asCell(); in tryCacheGetByID()
897 if (slot.slotBase() == baseValue) { in tryCacheGetByID()
934 …size_t count = normalizePrototypeChain(callFrame, baseValue, slot.slotBase(), propertyName, offset… in tryCacheGetByID()
[all …]
DJITStubs.h285 …GetByID(CallFrame*, CodeBlock*, ReturnAddressPtr returnAddress, JSValue baseValue, const Identifie…
286 …PutByID(CallFrame*, CodeBlock*, ReturnAddressPtr returnAddress, JSValue baseValue, const PutProper…
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp1199 …D(CallFrame* callFrame, CodeBlock* codeBlock, Instruction* vPC, JSValue baseValue, const PutProper… in tryCachePutByID() argument
1205 if (!baseValue.isCell()) in tryCachePutByID()
1214 JSCell* baseCell = baseValue.asCell(); in tryCachePutByID()
1274 …D(CallFrame* callFrame, CodeBlock* codeBlock, Instruction* vPC, JSValue baseValue, const Identifie… in tryCacheGetByID() argument
1281 if (!baseValue.isCell()) { in tryCacheGetByID()
1287 if (isJSArray(globalData, baseValue) && propertyName == callFrame->propertyNames().length) { in tryCacheGetByID()
1292 if (isJSString(globalData, baseValue) && propertyName == callFrame->propertyNames().length) { in tryCacheGetByID()
1303 Structure* structure = baseValue.asCell()->structure(); in tryCacheGetByID()
1326 if (slot.slotBase() == baseValue) { in tryCacheGetByID()
1383 …size_t count = normalizePrototypeChain(callFrame, baseValue, slot.slotBase(), propertyName, offset… in tryCacheGetByID()
[all …]
DInterpreter.h135 …void tryCacheGetByID(CallFrame*, CodeBlock*, Instruction*, JSValue baseValue, const Identifier& pr…
137 …void tryCachePutByID(CallFrame*, CodeBlock*, Instruction*, JSValue baseValue, const PutPropertySlo…
/external/webkit/Source/WebCore/svg/
DSVGAnimateTransformElement.cpp114 void SVGAnimateTransformElement::resetToBaseValue(const String& baseValue) in resetToBaseValue() argument
121 …t->setAttribute(SVGNames::gradientTransformAttr, baseValue.isEmpty() ? "matrix(1 0 0 1 0 0)" : bas… in resetToBaseValue()
125 if (baseValue.isEmpty()) { in resetToBaseValue()
129 targetElement->setAttribute(SVGNames::transformAttr, baseValue); in resetToBaseValue()
/external/webkit/Source/WebCore/svg/animation/
DSMILTimeContainer.cpp203 String baseValue; in baseValueFor() local
205baseValue = computedStyle(targetElement)->getPropertyValue(cssPropertyID(attributeName.localName()… in baseValueFor()
207 baseValue = targetElement->getAttribute(attributeName); in baseValueFor()
208 m_savedBaseValues.add(key, baseValue); in baseValueFor()
209 return baseValue; in baseValueFor()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2010-05-247460 The bug was caused by incorrect use of baseCell instead of baseValue,
7461 baseValue contains the original object for the lookup (and hence the
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1680269 svgElement.className.baseValue = "foo" does not work
87535 (WebCore::::baseValue):
DChangeLog-2010-01-292589 - Remove baseValue/setBaseValue code from SVGDocumentExtensions, not needed anymore.
2632 (WebCore::SVGAnimatedProperty::baseValue):
DChangeLog-2006-12-3132870 (WebCore::SVGDocumentExtensions::baseValue):
DChangeLog-2007-10-1462720 (WebCore::SVGDocumentExtensions::baseValue):
DChangeLog-2008-08-106416 (WebCore::SVGDocumentExtensions::baseValue):
DChangeLog-2010-12-0630270 (WebCore::DeprecatedSVGAnimatedProperty::baseValue):