Searched refs:toBoolean (Results 1 - 25 of 77) sorted by relevance

1234

/external/emma/core/java12/com/vladium/emma/data/
H A DCoverageOptionsFactory.java29 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS,
33 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS,
37 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION,
46 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS,
50 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS,
54 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION,
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLCanvasElementCustom.cpp66 webGLAttrs->setAlpha(jsAttrs->get(exec, alpha).toBoolean(exec));
69 webGLAttrs->setDepth(jsAttrs->get(exec, depth).toBoolean(exec));
72 webGLAttrs->setStencil(jsAttrs->get(exec, stencil).toBoolean(exec));
75 webGLAttrs->setAntialias(jsAttrs->get(exec, antialias).toBoolean(exec));
78 webGLAttrs->setPremultipliedAlpha(jsAttrs->get(exec, premultipliedAlpha).toBoolean(exec));
81 webGLAttrs->setPreserveDrawingBuffer(jsAttrs->get(exec, preserveDrawingBuffer).toBoolean(exec));
H A DJSCustomSQLStatementErrorCallback.cpp66 return result.toBoolean(exec);
H A DJSDeviceOrientationEventCustom.cpp65 bool bubbles = exec->argument(1).toBoolean(exec);
66 bool cancelable = exec->argument(2).toBoolean(exec);
H A DJSMessageEventCustom.cpp60 bool canBubbleArg = exec->argument(1).toBoolean(exec);
61 bool cancelableArg = exec->argument(2).toBoolean(exec);
H A DJSDirectoryEntryCustom.cpp66 flags->setCreate(jsCreate.toBoolean(exec));
68 flags->setExclusive(jsExclusive.toBoolean(exec));
112 flags->setCreate(jsCreate.toBoolean(exec));
114 flags->setExclusive(jsExclusive.toBoolean(exec));
H A DJSDirectoryEntrySyncCustom.cpp59 flags->setCreate(jsCreate.toBoolean(exec));
61 flags->setExclusive(jsExclusive.toBoolean(exec));
H A DJSOptionConstructor.cpp60 bool defaultSelected = (exec->argumentCount() >= 3) && exec->argument(2).toBoolean(exec);
61 bool selected = (exec->argumentCount() >= 4) && exec->argument(3).toBoolean(exec);
H A DJSInspectorFrontendHostCustom.cpp112 menuItem->setEnabled(enabled.toBoolean(exec));
114 menuItem->setChecked(checked.toBoolean(exec));
H A DJSAudioContextCustom.cpp95 bool mixToMono = exec->argument(1).toBoolean(exec);
/external/webkit/Source/WebCore/xml/
H A DXPathPredicate.cpp145 return compare(lhs.toBoolean(), rhs);
164 return compare(lhs, rhs.toBoolean());
174 equal = lhs.toBoolean() == rhs.toBoolean();
225 bool lhsBool = lhs.toBoolean();
229 return subExpr(1)->evaluate().toBoolean();
274 return EqTestOp(EqTestOp::OP_EQ, createFunction("position"), new Number(result.toNumber())).evaluate().toBoolean();
276 return result.toBoolean();
H A DXPathResult.cpp87 m_value = m_value.toBoolean();
147 return m_value.toBoolean();
H A DXPathValue.cpp71 bool Value::toBoolean() const function in class:WebCore::XPath::Value
/external/webkit/Source/JavaScriptCore/runtime/
H A DStringObjectThatMasqueradesAsUndefined.h52 virtual bool toBoolean(ExecState*) const { return false; } function in class:JSC::StringObjectThatMasqueradesAsUndefined
H A DBooleanConstructor.cpp44 obj->setInternalValue(exec->globalData(), jsBoolean(args.at(0).toBoolean(exec)));
63 return JSValue::encode(jsBoolean(exec->argument(0).toBoolean(exec)));
H A DRegExpPrototype.cpp132 if (thisObject->get(exec, exec->propertyNames().global).toBoolean(exec))
134 if (thisObject->get(exec, exec->propertyNames().ignoreCase).toBoolean(exec))
136 if (thisObject->get(exec, exec->propertyNames().multiline).toBoolean(exec))
H A DJSNotAnObject.h58 virtual bool toBoolean(ExecState*) const;
H A DJSNotAnObject.cpp52 bool JSNotAnObject::toBoolean(ExecState* exec) const function in class:JSC::JSNotAnObject
H A DJSZombie.h54 virtual bool toBoolean(ExecState*) const { ASSERT_NOT_REACHED(); return false; } function in class:JSC::JSZombie
H A DJSCell.h111 virtual bool toBoolean(ExecState*) const;
287 inline bool JSValue::toBoolean(ExecState* exec) const function in class:JSC::JSValue
294 return asCell()->toBoolean(exec);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
H A Dforin-002.js27 this.toBoolean = new Function ( "return Boolean( this.value )" );
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue.h113 void toBoolean();
H A Dtst_qscriptvalue_generated_totype.cpp901 void tst_QScriptValue::toBoolean() function in class:tst_QScriptValue
905 QCOMPARE(value.toBoolean(), expected);
906 QCOMPARE(value.toBoolean(), expected);
/external/webkit/Source/JavaScriptGlue/
H A DUserObjectImp.h53 virtual bool toBoolean(ExecState *exec) const;
/external/webkit/Tools/DumpRenderTree/chromium/
H A DCppVariant.h119 bool toBoolean() const;

Completed in 349 milliseconds

1234