/external/webkit/Source/JavaScriptCore/dfg/ |
D | DFGOperations.cpp | 67 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/ |
D | nfrule.h | 56 …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;
|
D | nfrule.cpp | 32 : 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 …]
|
D | nfsubs.cpp | 153 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 …]
|
D | nfsubs.h | 188 double baseValue,
|
/external/webkit/Source/JavaScriptCore/jit/ |
D | JITStubs.cpp | 806 …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 …]
|
D | JITStubs.h | 285 …GetByID(CallFrame*, CodeBlock*, ReturnAddressPtr returnAddress, JSValue baseValue, const Identifie… 286 …PutByID(CallFrame*, CodeBlock*, ReturnAddressPtr returnAddress, JSValue baseValue, const PutProper…
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 1199 …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 …]
|
D | Interpreter.h | 135 …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/ |
D | SVGAnimateTransformElement.cpp | 114 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/ |
D | SMILTimeContainer.cpp | 203 String baseValue; in baseValueFor() local 205 …baseValue = 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/ |
D | ChangeLog-2010-05-24 | 7460 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/ |
D | ChangeLog-2009-06-16 | 80269 svgElement.className.baseValue = "foo" does not work 87535 (WebCore::::baseValue):
|
D | ChangeLog-2010-01-29 | 2589 - Remove baseValue/setBaseValue code from SVGDocumentExtensions, not needed anymore. 2632 (WebCore::SVGAnimatedProperty::baseValue):
|
D | ChangeLog-2006-12-31 | 32870 (WebCore::SVGDocumentExtensions::baseValue):
|
D | ChangeLog-2007-10-14 | 62720 (WebCore::SVGDocumentExtensions::baseValue):
|
D | ChangeLog-2008-08-10 | 6416 (WebCore::SVGDocumentExtensions::baseValue):
|
D | ChangeLog-2010-12-06 | 30270 (WebCore::DeprecatedSVGAnimatedProperty::baseValue):
|