Searched refs:internalValue (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DBooleanPrototype.cpp86 if (asBooleanObject(thisValue)->internalValue() == jsBoolean(false))
89 ASSERT(asBooleanObject(thisValue)->internalValue() == jsBoolean(true));
102 return JSValue::encode(asBooleanObject(thisValue)->internalValue());
H A DJSWrapperObject.h41 JSValue internalValue() const;
74 inline JSValue JSWrapperObject::internalValue() const function in class:JSC::JSWrapperObject
H A DStringObject.cpp50 if (thisObject->internalValue()->getStringPropertySlot(exec, propertyName, slot))
58 if (thisObject->internalValue()->getStringPropertySlot(exec, propertyName, slot))
76 if (thisObject->internalValue()->canGetIndex(propertyName)) {
116 if (propertyName == exec->propertyNames().length && sameValue(exec, descriptor.value(), jsNumber(thisObject->internalValue()->length())))
132 if (thisObject->internalValue()->canGetIndex(i)) {
142 if (thisObject->internalValue()->canGetIndex(i))
150 int size = thisObject->internalValue()->length();
H A DStringObject.h61 JSString* internalValue() const { return asString(JSWrapperObject::internalValue());} function in class:JSC::StringObject
H A DDateInstance.h53 double internalNumber() const { return internalValue().asNumber(); }
H A DJSPromiseFunctions.cpp106 uint32_t newCountdownValue = countdownHolder->internalValue().asUInt32() - 1;
H A DNumberPrototype.cpp108 x = static_cast<const NumberObject*>(thisValue.asCell())->internalValue().asNumber();
H A DJSPromiseConstructor.cpp535 uint32_t newCountdownValue = countdownHolder->internalValue().asUInt32() + 1;
H A DDatePrototype.cpp597 return JSValue::encode(asDateInstance(thisValue)->internalValue());
/macosx-10.10/WebCore-7600.1.25/css/
H A DPropertySetCSSStyleDeclaration.cpp273 CSSValue* PropertySetCSSStyleDeclaration::cloneAndCacheForCSSOM(CSSValue* internalValue) argument
275 if (!internalValue)
283 RefPtr<CSSValue>& clonedValue = m_cssomCSSValueClones->add(internalValue, RefPtr<CSSValue>()).iterator->value;
285 clonedValue = internalValue->cloneForCSSOM();
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSCryptoAlgorithmDictionary.cpp59 algorithmName = asString(asStringObject(value)->internalValue())->value(exec);
H A DSerializedScriptValue.cpp769 write(asBooleanObject(value)->internalValue().toBoolean(m_exec) ? TrueObjectTag : FalseObjectTag);
775 String str = asString(asStringObject(value)->internalValue())->value(m_exec);
784 write(obj->internalValue().asNumber());

Completed in 210 milliseconds