Searched refs:isObject (Results 26 - 50 of 102) sorted by relevance

12345

/external/webkit/Source/WebCore/html/
H A DAsyncImageResizer.cpp58 ASSERT(m_successCallback.isObject());
/external/webkit/Tools/DumpRenderTree/chromium/
H A DCppVariant.h112 bool isObject() const { return (type == NPVariantType_Object); } function in class:CppVariant
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalue_p.h103 inline bool isObject();
427 bool QScriptValuePrivate::isObject() function in class:QScriptValuePrivate
702 if (isObject()) {
715 if (isObject() && prototype->isValid() && (prototype->isObject() || prototype->isNull())) {
836 if (!isJSBased() || !other->isObject())
923 Q_ASSERT(isObject());
936 Q_ASSERT(isObject());
948 if (!isObject())
988 Q_ASSERT(isObject());
[all...]
H A Dqscriptvalueiterator_p.h66 if (m_object->isObject()) {
H A Dqscriptvalue.cpp212 Note that if \a other is an object (i.e., isObject() would return
346 bool QScriptValue::isObject() const function in class:QScriptValue
348 return d_ptr->isObject();
559 \sa setPrototype(), isObject()
575 \sa prototype(), isObject()
585 Note that if \a other is an object (isObject() returns true),
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSCell.cpp99 return isObject() ? asObject(this) : 0;
104 return isObject() ? static_cast<const JSObject*>(this) : 0;
H A DWriteBarrier.h135 bool isObject() const { return get().isObject(); } function in class:JSC::WriteBarrierBase
H A DJSONObject.cpp133 if (!value.isObject())
208 if (!m_replacer.isObject())
232 if (name.isObject()) {
323 if (!value.isObject() || !asObject(value)->hasProperty(m_exec, m_exec->globalData().propertyNames->toJSON))
330 if (!toJSONFunction.isObject())
393 if (!value.isObject())
657 ASSERT(inValue.isObject());
693 if (inValue.isObject()) {
718 ASSERT(inValue.isObject());
758 if (inValue.isObject()) {
[all...]
H A DJSCell.h87 bool isObject() const;
198 inline bool JSValue::isObject() const function in class:JSC::JSValue
200 return isCell() && asCell()->isObject();
H A DJSObject.cpp110 if (!value.isObject() && !value.isNull())
265 if (result.isObject())
377 if (!object->prototype() || !object->prototype().isObject())
396 if (!object->prototype() || !object->prototype().isObject())
404 if (!value.isObject())
407 if (!proto.isObject()) {
616 if (!prototype.isObject())
647 if (descriptor.getter() && descriptor.getter().isObject())
651 if (descriptor.setter() && descriptor.setter().isObject())
H A DJSObject.h280 void isObject();
396 ASSERT(cell->isObject());
431 while (nextPrototypeValue && nextPrototypeValue.isObject()) {
524 if (!prototype.isObject())
537 if (!prototype.isObject())
767 if (!prototype.isObject())
792 if (!prototype.isObject())
809 ASSERT(isCell() && isObject());
848 if (!isObject())
/external/webkit/Source/WebCore/bindings/js/
H A DJSArrayBufferViewHelper.h60 if (exec->argument(0).isObject()) {
131 if (exec->argument(0).isObject()) {
H A DJSDirectoryEntrySyncCustom.cpp50 if (argument.isNull() || argument.isUndefined() || !argument.isObject())
H A DScriptObject.cpp94 if (!jsValue.isObject())
H A DJSHTMLCanvasElementCustom.cpp62 if (exec->argumentCount() > 1 && exec->argument(1).isObject()) {
H A DJSInjectedScriptHostCustom.cpp66 if (!value.isObject() || value.isNull())
H A DJSInjectedScriptManager.cpp71 if (result.isObject())
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
H A Dtst_qscriptvalue.cpp67 void isObject();
272 void tst_QScriptValue::isObject() function in class:tst_QScriptValue
276 value.isObject();
/external/chromium/webkit/glue/
H A Dcpp_variant_unittest.cc370 EXPECT_FALSE(cpp.isObject());
381 EXPECT_FALSE(cpp.isObject());
392 EXPECT_FALSE(cpp.isObject());
403 EXPECT_FALSE(cpp.isObject());
414 EXPECT_FALSE(cpp.isObject());
426 EXPECT_TRUE(cpp.isObject());
H A Dcpp_variant.cc215 DCHECK(isObject());
252 DCHECK(isObject());
/external/compiler-rt/BlocksRuntime/
H A Druntime.c169 static void *_Block_alloc_default(const unsigned long size, const bool initialCountIsOne, const bool isObject) { argument
213 static void *(*_Block_allocator)(const unsigned long, const bool isOne, const bool isObject) = _Block_alloc_default;
231 void _Block_use_GC( void *(*alloc)(const unsigned long, const bool isOne, const bool isObject), argument
254 void _Block_use_GC5( void *(*alloc)(const unsigned long, const bool isOne, const bool isObject), argument
/external/webkit/Source/JavaScriptCore/heap/
H A DMarkStack.cpp66 ASSERT(cell->isObject());
H A DHandle.h128 bool isObject() const { return jsValue().isObject(); } function in struct:JSC::HandleConverter
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptValue.h123 bool isObject() const function in class:WebCore::ScriptValue
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
H A Dantlr.js316 isObject: function(o) {
482 return (l.isObject(o) || l.isString(o) || l.isNumber(o) || l.isBoolean(o));

Completed in 465 milliseconds

12345