HomeSort by relevance Sort by last modified time
    Searched refs:toBoolean (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/emma/core/java12/com/vladium/emma/data/
CoverageOptionsFactory.java 29 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/
JSHTMLCanvasElementCustom.cpp 66 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));
JSCustomSQLStatementErrorCallback.cpp 66 return result.toBoolean(exec);
JSDeviceOrientationEventCustom.cpp 65 bool bubbles = exec->argument(1).toBoolean(exec);
66 bool cancelable = exec->argument(2).toBoolean(exec);
JSMessageEventCustom.cpp 60 bool canBubbleArg = exec->argument(1).toBoolean(exec);
61 bool cancelableArg = exec->argument(2).toBoolean(exec);
JSDirectoryEntryCustom.cpp 66 flags->setCreate(jsCreate.toBoolean(exec));
68 flags->setExclusive(jsExclusive.toBoolean(exec));
112 flags->setCreate(jsCreate.toBoolean(exec));
114 flags->setExclusive(jsExclusive.toBoolean(exec));
JSDirectoryEntrySyncCustom.cpp 59 flags->setCreate(jsCreate.toBoolean(exec));
61 flags->setExclusive(jsExclusive.toBoolean(exec));
JSOptionConstructor.cpp 60 bool defaultSelected = (exec->argumentCount() >= 3) && exec->argument(2).toBoolean(exec);
61 bool selected = (exec->argumentCount() >= 4) && exec->argument(3).toBoolean(exec);
JSInspectorFrontendHostCustom.cpp 112 menuItem->setEnabled(enabled.toBoolean(exec));
114 menuItem->setChecked(checked.toBoolean(exec));
  /external/webkit/Source/JavaScriptCore/runtime/
StringObjectThatMasqueradesAsUndefined.h 52 virtual bool toBoolean(ExecState*) const { return false; }
BooleanConstructor.cpp 44 obj->setInternalValue(exec->globalData(), jsBoolean(args.at(0).toBoolean(exec)));
63 return JSValue::encode(jsBoolean(exec->argument(0).toBoolean(exec)));
RegExpPrototype.cpp 132 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))
JSNotAnObject.h 58 virtual bool toBoolean(ExecState*) const;
JSZombie.h 54 virtual bool toBoolean(ExecState*) const { ASSERT_NOT_REACHED(); return false; }
JSNotAnObject.cpp 52 bool JSNotAnObject::toBoolean(ExecState* exec) const
JSCell.h 111 virtual bool toBoolean(ExecState*) const;
287 inline bool JSValue::toBoolean(ExecState* exec) const
294 return asCell()->toBoolean(exec);
  /external/webkit/Source/WebCore/xml/
XPathPredicate.cpp 145 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();
XPathResult.cpp 87 m_value = m_value.toBoolean();
147 return m_value.toBoolean();
XPathValue.cpp 71 bool Value::toBoolean() const
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
forin-002.js 27 this.toBoolean = new Function ( "return Boolean( this.value )" );
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.h 113 void toBoolean();
tst_qscriptvalue_generated_totype.cpp 901 void tst_QScriptValue::toBoolean()
905 QCOMPARE(value.toBoolean(), expected);
906 QCOMPARE(value.toBoolean(), expected);
    [all...]
  /external/webkit/Source/JavaScriptGlue/
UserObjectImp.h 53 virtual bool toBoolean(ExecState *exec) const;
  /external/webkit/Tools/DumpRenderTree/chromium/
CppVariant.h 119 bool toBoolean() const;
  /libcore/json/src/main/java/org/json/
JSON.java 30 static Boolean toBoolean(Object value) {

Completed in 722 milliseconds

1 2 3 4