/external/webkit/LayoutTests/fast/xpath/4XPath/Core/ |
D | test_boolean_expr-expected.txt | 1 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 …]
|
D | test_numeric_expr-expected.txt | 52 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 …]
|
D | test_parser-expected.txt | 25 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
|
D | test_core_functions-expected.txt | 17 …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/ |
D | BooleanPropertyEditor.java | 51 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()
|
D | BooleanObjectPropertyEditor.java | 51 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/ |
D | WeakReferenceTest.java | 40 .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()
|
D | SoftReferenceTest.java | 38 .booleanValue()); in test_ConstructorLjava_lang_ObjectLjava_lang_ref_ReferenceQueue() 56 .booleanValue()); in test_ConstructorLjava_lang_Object()
|
D | ReferenceQueueTest.java | 66 .booleanValue()); in test_poll() 79 .booleanValue()); in test_remove()
|
D | PhantomReferenceTest.java | 53 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/ |
D | BooleanTest.java | 55 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/ |
D | xpath-test-pre.js | 38 if (result.booleanValue == expected) 41 … testFailed(expr + ": expected '" + expected + "', actual '" + result.booleanValue + "'");
|
/external/webkit/Source/WebCore/bridge/jni/jsc/ |
D | JavaInstanceJSC.cpp | 111 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()
|
D | JavaInstanceJSC.h | 63 JSValue booleanValue() const;
|
/external/jmdns/src/javax/jmdns/impl/ |
D | NetworkTopologyDiscoveryImpl.java | 89 … 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/ |
D | AnnotationWithValues.smali | 5 .method public abstract booleanValue()Z 50 booleanValue = false
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
D | TransformerFactoryImpl.java | 518 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/ |
D | CollisionShapeFactory.java | 85 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/ |
D | FieldTest.java | 205 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/ |
D | DefaultsTest.java | 28 assertEquals(false, Defaults.defaultValue(boolean.class).booleanValue()); in testGetDefaultValue()
|
/external/webkit/Source/WebCore/bridge/ |
D | test.js | 7 myInterface.logMessage ("myInterface.booleanValue = " + myInterface.booleanValue);
|
D | testC.js | 7 myInterface.logMessage (" myInterface.booleanValue = " + myInterface.booleanValue);
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
D | XBoolean.java | 71 m_val = b.booleanValue(); in XBoolean()
|
/external/webkit/Source/WebCore/bridge/objc/ |
D | objc_utility.h | 46 bool booleanValue; member
|
/external/webkit/Source/WebCore/xml/ |
D | XPathResult.h | 67 bool booleanValue(ExceptionCode&) const;
|