HomeSort by relevance Sort by last modified time
    Searched defs:baseValue (Results 1 - 5 of 5) 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;
  /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;
  /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) \
  /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/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...]

Completed in 67 milliseconds