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

  /external/chromium/third_party/icu/source/i18n/
nfrule.h 56 ERuleType getType() const { return (ERuleType)(baseValue <= kNoBase ? (ERuleType)baseValue : kOtherRule); }
57 void setType(ERuleType ruleType) { baseValue = (int32_t)ruleType; }
59 int64_t getBaseValue() const { return baseValue; }
84 double matchToDelimiter(const UnicodeString& text, int32_t startPos, double baseValue,
95 int64_t baseValue;
nfrule.cpp 33 : baseValue((int32_t)0)
98 // new it up and initialize its basevalue and divisor
133 if ((rule1->baseValue > 0
134 && (rule1->baseValue % util64_pow(rule1->radix, rule1->exponent)) == 0)
149 if (rule1->baseValue >= 0) {
150 rule2->baseValue = rule1->baseValue;
152 ++rule1->baseValue;
167 rule2->baseValue = rule1->baseValue;
    [all...]
nfsubs.cpp 152 double baseValue,
212 double baseValue,
279 double baseValue,
311 double baseValue,
315 { result.setDouble(baseValue); return TRUE; }
656 * @param baseValue A partial parse result that should be
669 * baseValue with whatever was returned from matching the
677 double baseValue,
683 fprintf(stderr, "<nfsubs> %x bv: %g ub: %g\n", this, baseValue, upperBound);
745 tempResult = composeRuleValue(tempResult, baseValue);
    [all...]
nfsubs.h 168 * @param baseValue A partial parse result that should be
181 * baseValue with whatever was returned from matching the
188 double baseValue,
  /external/icu4c/i18n/
nfrule.h 56 ERuleType getType() const { return (ERuleType)(baseValue <= kNoBase ? (ERuleType)baseValue : kOtherRule); }
57 void setType(ERuleType ruleType) { baseValue = (int32_t)ruleType; }
59 int64_t getBaseValue() const { return baseValue; }
84 double matchToDelimiter(const UnicodeString& text, int32_t startPos, double baseValue,
95 int64_t baseValue;
nfrule.cpp 33 : baseValue((int32_t)0)
98 // new it up and initialize its basevalue and divisor
133 if ((rule1->baseValue > 0
134 && (rule1->baseValue % util64_pow(rule1->radix, rule1->exponent)) == 0)
149 if (rule1->baseValue >= 0) {
150 rule2->baseValue = rule1->baseValue;
152 ++rule1->baseValue;
167 rule2->baseValue = rule1->baseValue;
    [all...]
nfsubs.cpp 152 double baseValue,
212 double baseValue,
279 double baseValue,
311 double baseValue,
315 { result.setDouble(baseValue); return TRUE; }
656 * @param baseValue A partial parse result that should be
669 * baseValue with whatever was returned from matching the
677 double baseValue,
683 fprintf(stderr, "<nfsubs> %x bv: %g ub: %g\n", this, baseValue, upperBound);
745 tempResult = composeRuleValue(tempResult, baseValue);
    [all...]
nfsubs.h 168 * @param baseValue A partial parse result that should be
181 * baseValue with whatever was returned from matching the
188 double baseValue,
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp 783 NEVER_INLINE void JITThunks::tryCachePutByID(CallFrame* callFrame, CodeBlock* codeBlock, ReturnAddressPtr returnAddress, JSValue baseValue, const PutPropertySlot& slot, StructureStubInfo* stubInfo)
787 if (!baseValue.isCell())
796 JSCell* baseCell = asCell(baseValue);
833 NEVER_INLINE void JITThunks::tryCacheGetByID(CallFrame* callFrame, CodeBlock* codeBlock, ReturnAddressPtr returnAddress, JSValue baseValue, const Identifier& propertyName, const PropertySlot& slot, StructureStubInfo* stubInfo)
839 if (!baseValue.isCell()) {
846 if (isJSArray(globalData, baseValue) && propertyName == callFrame->propertyNames().length) {
851 if (isJSString(globalData, baseValue) && propertyName == callFrame->propertyNames().length) {
864 JSCell* baseCell = asCell(baseValue);
874 if (slot.slotBase() == baseValue) {
909 size_t count = normalizePrototypeChain(callFrame, baseValue, slot.slotBase(), propertyName, offset)
    [all...]
JITStubs.h 247 static void tryCacheGetByID(CallFrame*, CodeBlock*, ReturnAddressPtr returnAddress, JSValue baseValue, const Identifier& propertyName, const PropertySlot&, StructureStubInfo* stubInfo);
248 static void tryCachePutByID(CallFrame*, CodeBlock*, ReturnAddressPtr returnAddress, JSValue baseValue, const PutPropertySlot&, StructureStubInfo* stubInfo);
  /external/webkit/WebCore/svg/animation/
SMILTimeContainer.cpp 203 String baseValue;
205 baseValue = computedStyle(target)->getPropertyValue(cssPropertyID(attributeName));
207 baseValue = target->getAttribute(attributeName);
208 m_savedBaseValues.add(key, baseValue);
209 return baseValue;
  /external/webkit/WebCore/svg/
SVGAnimatedProperty.h 60 virtual ReturnType baseVal() const { return m_creator.baseValue(); }
111 ReturnType baseValue() const { return SVGAnimatedPropertyTraits<AnimatedType>::toReturnType(m_value); }
152 AtomicString value(SVGAnimatedPropertyTraits<AnimatedType>::toString(baseValue())); \
175 SVGAnimatedPropertyTraits<AnimatedType>::ReturnType LowerProperty##BaseValue() const \
177 return m_##LowerProperty.baseValue(); \
187 void set##UpperProperty##BaseValue(SVGAnimatedPropertyTraits<AnimatedType>::PassType type) \
SVGAnimateTransformElement.cpp 94 void SVGAnimateTransformElement::resetToBaseValue(const String& baseValue)
98 if (baseValue.isEmpty()) {
103 targetElement()->setAttribute(SVGNames::transformAttr, baseValue);
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]
Interpreter.h 134 void tryCacheGetByID(CallFrame*, CodeBlock*, Instruction*, JSValue baseValue, const Identifier& propertyName, const PropertySlot&);
136 void tryCachePutByID(CallFrame*, CodeBlock*, Instruction*, JSValue baseValue, const PutPropertySlot&);

Completed in 453 milliseconds