Searched refs:isCell (Results 1 - 25 of 45) sorted by relevance

12

/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DProtect.h54 if (value && value.isCell())
60 if (value && value.isCell())
H A DJSCJSValueInlines.h249 inline bool JSValue::isCell() const function in class:JSC::JSValue
298 ASSERT(isCell());
449 inline bool JSValue::isCell() const function in class:JSC::JSValue
491 ASSERT(isCell());
499 return isCell() && asCell()->isString();
504 return !isCell() || asCell()->isString();
509 return isCell() && asCell()->isGetterSetter();
514 return isCell() && asCell()->isObject();
519 return isCell() && asCell()->getString(exec, s);
524 return isCell()
[all...]
H A DJSCJSValue.cpp62 if (isCell())
71 ASSERT(!isCell());
85 ASSERT(!isCell());
97 if (isCell()) {
214 } else if (isCell()) {
313 ASSERT(isCell());
H A DJSAPIValueWrapper.h59 ASSERT(!value.isCell());
H A DNameInstance.h72 return v.isCell() && v.asCell()->structure()->typeInfo().isName();
H A DOperations.cpp89 if (!v.isCell())
H A DJSCell.h179 ASSERT(from.isCell() && from.asCell()->JSCell::inherits(&WTF::RemovePointer<To>::Type::s_info));
192 return from.isCell() && from.asCell()->inherits(&WTF::RemovePointer<To>::Type::s_info) ? static_cast<To>(from.asCell()) : 0;
H A DJSString.h505 inline bool isJSString(JSValue v) { return v.isCell() && v.asCell()->classInfo() == &JSString::s_info; }
515 if (isCell())
H A DJSArray.h283 inline bool isJSArray(JSValue v) { return v.isCell() && isJSArray(v.asCell()); }
H A DJSObject.h50 if (value.isCell() && (value.asCell()->structure()->typeInfo().type() == JSFunctionType))
59 if (!value.isCell())
1068 return value.isCell() && isJSFinalObject(value.asCell());
1124 CallType result = value.isCell() ? value.asCell()->methodTable()->getCallData(value.asCell(), callData) : CallTypeNone;
1131 ConstructType result = value.isCell() ? value.asCell()->methodTable()->getConstructData(value.asCell(), constructData) : ConstructTypeNone;
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DHandleSet.cpp80 if (!value == !*slot && slot->isCell() == value.isCell())
88 if (!value || !value.isCell()) {
H A DWeakImpl.h79 ASSERT(m_jsValue && m_jsValue.isCell());
H A DSlotVisitorInlines.h82 if (!value || !value.isCell())
H A DHandleSet.h200 if (!value || !value.isCell())
H A DHeap.cpp337 if (!k.isCell())
348 if (!k.isCell())
H A DSlotVisitor.cpp292 if (!value.isCell())
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DCallLinkStatus.cpp43 if (!value || !value.isCell())
56 if (!m_callTarget || !m_callTarget.isCell())
67 if (!m_callTarget || !m_callTarget.isCell())
H A DValueProfile.h83 if (!value.isCell())
174 && m_singletonValue.isCell()
H A DSpeculatedType.cpp301 if (value.isCell())
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DAPICast.h79 if (result.isCell())
95 if (result && result.isCell())
129 if (!v.isCell())
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGAbstractValue.h117 if (!!value && value.isCell()) {
136 if (!!value && value.isCell()) {
332 if (!!value && value.isCell()) {
H A DDFGGraph.h289 return value.isCell() && !!value;
304 if (!value.isCell() || !value)
H A DDFGTypeCheckHoistingPhase.cpp212 if (!value || !value.isCell()) {
H A DDFGRepatch.cpp112 ASSERT(prototype.isCell());
315 if (!baseValue.isCell())
372 if (!baseValue.isCell()
562 if (!baseValue.isCell()
958 if (!baseValue.isCell())
1030 if (!baseValue.isCell())
/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DVMInspector.cpp47 if (value.isCell())

Completed in 219 milliseconds

12