Home
last modified time | relevance | path

Searched refs:booleanValue (Results 1 – 25 of 88) sorted by relevance

1234

/external/webkit/LayoutTests/fast/xpath/4XPath/Core/
Dtest_boolean_expr-expected.txt1 PASS doc.evaluate("3.14 < -4", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is false
2 PASS doc.evaluate("3.14 <= -4", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is false
3 PASS doc.evaluate("3.14 > -4", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is true
4 PASS doc.evaluate("3.14 >= 3.14", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is true
5 PASS doc.evaluate("number('NaN') < -4", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is …
6 PASS doc.evaluate("number('NaN') <= -4", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is…
7 PASS doc.evaluate("number('NaN') > -4", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is …
8 PASS doc.evaluate("number('NaN') >= 3.14", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue
9 …luate("/root/@num2 <= /root/@num2", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is true
10 …luate("/root/@num2 >= /root/@num2", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is true
[all …]
Dtest_numeric_expr-expected.txt52 PASS DOM.evaluate("5 = 5", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is true
53 PASS DOM.evaluate("5 = -5", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is false
54 PASS DOM.evaluate("-5 = -5", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is true
55 PASS DOM.evaluate("0 = 0", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is true
56 PASS DOM.evaluate("(1 div 0) = (1 div 0)", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue i…
57 PASS DOM.evaluate("(-1 div 0) = (-1 div 0)", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue
58 PASS DOM.evaluate("5 = (-1 div 0)", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is false
59 PASS DOM.evaluate("5 = number('NaN')", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is fa…
60 …te("number('NaN') = number('NaN')", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is false
61 PASS DOM.evaluate("5 = @attr31", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is false
[all …]
Dtest_parser-expected.txt25 PASS DOM.evaluate("true()", ROOT, null, XPathResult.ANY_TYPE, null).booleanValue is true
26 PASS DOM.evaluate("false()", ROOT, null, XPathResult.ANY_TYPE, null).booleanValue is false
27 PASS DOM.evaluate("1=3<4", ROOT, null, XPathResult.ANY_TYPE, null).booleanValue is true
28 PASS DOM.evaluate("1 or 2 and 3", ROOT, null, XPathResult.ANY_TYPE, null).booleanValue is true
29 PASS DOM.evaluate("1 and 2 = 3", ROOT, null, XPathResult.ANY_TYPE, null).booleanValue is false
30 PASS DOM.evaluate("-1 or 2", ROOT, null, XPathResult.ANY_TYPE, null).booleanValue is true
31 PASS DOM.evaluate(". or *", ROOT, null, XPathResult.ANY_TYPE, null).booleanValue is true
Dtest_core_functions-expected.txt17 …te("starts-with(//CHILD1, '3.14')", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is false
18 …e("starts-with(//CHILD1, //CHILD1)", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is true
19 …valuate("starts-with(//CHILD1, '')", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is true
20 …luate("contains(//CHILD1, '3.14')", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is false
21 …uate("contains(//CHILD1, //CHILD1)", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is true
22 PASS DOM.evaluate("contains(//CHILD1, '')", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue
46 PASS DOM.evaluate("boolean('3.14')", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is true
47 PASS DOM.evaluate("not('3.14Hi')", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is false
48 PASS DOM.evaluate("true()", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is true
49 PASS DOM.evaluate("false()", CHILD1, null, XPathResult.ANY_TYPE, null).booleanValue is false
[all …]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
DBooleanPropertyEditor.java51 boolean booleanValue = ((Boolean) value).booleanValue(); in paint()
52 Image image = booleanValue ? m_trueImage : m_falseImage; in paint()
53 String text = Boolean.toString(booleanValue); in paint()
102 boolean booleanValue = false; in invertValue()
106 booleanValue = ((Boolean) value).booleanValue(); in invertValue()
110 property.setValue(!booleanValue); in invertValue()
DBooleanObjectPropertyEditor.java51 boolean booleanValue = ((Boolean) value).booleanValue(); in paint()
52 Image image = booleanValue ? m_trueImage : m_falseImage; in paint()
53 String text = Boolean.toString(booleanValue); in paint()
111 boolean booleanValue = ((Boolean) value).booleanValue(); in invertValue()
112 property.setValue(!booleanValue); in invertValue()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ref/
DWeakReferenceTest.java40 .booleanValue()); in test_ConstructorLjava_lang_ObjectLjava_lang_ref_ReferenceQueue()
43 assertTrue("should always pass", bool.booleanValue()); in test_ConstructorLjava_lang_ObjectLjava_lang_ref_ReferenceQueue()
63 .booleanValue()); in test_ConstructorLjava_lang_Object()
66 assertTrue("should always pass", bool.booleanValue()); in test_ConstructorLjava_lang_Object()
DSoftReferenceTest.java38 .booleanValue()); in test_ConstructorLjava_lang_ObjectLjava_lang_ref_ReferenceQueue()
56 .booleanValue()); in test_ConstructorLjava_lang_Object()
DReferenceQueueTest.java66 .booleanValue()); in test_poll()
79 .booleanValue()); in test_remove()
DPhantomReferenceTest.java53 assertTrue("should always pass", bool.booleanValue()); in test_ConstructorLjava_lang_ObjectLjava_lang_ref_ReferenceQueue()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DBooleanTest.java55 assertTrue(Boolean.TRUE.booleanValue()); in test_booleanValue()
56 assertFalse(Boolean.FALSE.booleanValue()); in test_booleanValue()
116 assertTrue("Failed to parse true to true", Boolean.valueOf("true").booleanValue()); in test_valueOfLjava_lang_String()
118 .booleanValue()); in test_valueOfLjava_lang_String()
119 assertTrue("parsed non-true to true", !Boolean.valueOf("ddddd").booleanValue()); in test_valueOfLjava_lang_String()
/external/webkit/LayoutTests/fast/xpath/
Dxpath-test-pre.js38 if (result.booleanValue == expected)
41 … testFailed(expr + ": expected '" + expected + "', actual '" + result.booleanValue + "'");
/external/webkit/Source/WebCore/bridge/jni/jsc/
DJavaInstanceJSC.cpp111 JSValue JavaInstance::booleanValue() const in booleanValue() function in JavaInstance
113 jboolean booleanValue = callJNIMethod<jboolean>(m_instance->m_instance, "booleanValue", "()Z"); in booleanValue() local
114 return jsBoolean(booleanValue); in booleanValue()
326 return booleanValue(); in defaultValue()
DJavaInstanceJSC.h63 JSValue booleanValue() const;
/external/jmdns/src/javax/jmdns/impl/
DNetworkTopologyDiscoveryImpl.java89 … if (!((Boolean) _isUp.invoke(networkInterface, (Object[]) null)).booleanValue()) { in useInetAddress()
98 … if (!((Boolean) _supportsMulticast.invoke(networkInterface, (Object[]) null)).booleanValue()) { in useInetAddress()
/external/smali/examples/AnnotationValues/
DAnnotationWithValues.smali5 .method public abstract booleanValue()Z
50 booleanValue = false
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DTransformerFactoryImpl.java518 m_incremental = ((Boolean)value).booleanValue(); in setAttribute()
523 m_incremental = (new Boolean((String)value)).booleanValue(); in setAttribute()
536 m_optimize = ((Boolean)value).booleanValue(); in setAttribute()
541 m_optimize = (new Boolean((String)value)).booleanValue(); in setAttribute()
560 m_source_location = ((Boolean)value).booleanValue(); in setAttribute()
565 m_source_location = (new Boolean((String)value)).booleanValue(); in setAttribute()
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
DCollisionShapeFactory.java85 if (bool != null && bool.booleanValue()) { in createCompoundShape()
97 if (bool != null && bool.booleanValue()) { in createCompoundShape()
107 if (bool != null && bool.booleanValue()) { in createCompoundShape()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
DFieldTest.java205 f.setBoolean(o, ((Boolean) value).booleanValue()); in setField()
370 Boolean booleanValue = Boolean.TRUE; in testProtectedFieldAccess() local
371 subclass.setField('Z', subclass, booleanField, null, booleanValue); in testProtectedFieldAccess()
372 subclass.setField('Z', otherSubclass, booleanField, null, booleanValue); in testProtectedFieldAccess()
373 subclass.setField('Z', parentClass, booleanField, illegalAccessExceptionClass, booleanValue); in testProtectedFieldAccess()
374 subclass.setField('Z', plainObject, booleanField, illegalAccessExceptionClass, booleanValue); in testProtectedFieldAccess()
380 illegalArgumentExceptionClass, booleanValue); in testProtectedFieldAccess()
/external/guava/guava-tests/test/com/google/common/base/
DDefaultsTest.java28 assertEquals(false, Defaults.defaultValue(boolean.class).booleanValue()); in testGetDefaultValue()
/external/webkit/Source/WebCore/bridge/
Dtest.js7 myInterface.logMessage ("myInterface.booleanValue = " + myInterface.booleanValue);
DtestC.js7 myInterface.logMessage (" myInterface.booleanValue = " + myInterface.booleanValue);
/external/apache-xml/src/main/java/org/apache/xpath/objects/
DXBoolean.java71 m_val = b.booleanValue(); in XBoolean()
/external/webkit/Source/WebCore/bridge/objc/
Dobjc_utility.h46 bool booleanValue; member
/external/webkit/Source/WebCore/xml/
DXPathResult.h67 bool booleanValue(ExceptionCode&) const;

1234