Searched refs:XBoolean (Results 1 - 21 of 21) sorted by relevance

/dalvik/libcore/xml/src/main/java/org/apache/xpath/functions/
H A DFuncBoolean.java24 import org.apache.xpath.objects.XBoolean;
45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DFuncNot.java24 import org.apache.xpath.objects.XBoolean;
45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_FALSE : XBoolean.S_TRUE;
H A DFuncExtFunctionAvailable.java27 import org.apache.xpath.objects.XBoolean;
69 return XBoolean.S_FALSE;
78 return m_functionTable.functionAvailable(methName) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
82 return XBoolean.S_FALSE;
90 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DFuncStartsWith.java24 import org.apache.xpath.objects.XBoolean;
46 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DFuncContains.java24 import org.apache.xpath.objects.XBoolean;
51 return XBoolean.S_TRUE;
55 return (index > -1) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DFuncFalse.java24 import org.apache.xpath.objects.XBoolean;
45 return XBoolean.S_FALSE;
H A DFuncTrue.java24 import org.apache.xpath.objects.XBoolean;
45 return XBoolean.S_TRUE;
H A DFuncExtElementAvailable.java28 import org.apache.xpath.objects.XBoolean;
68 return XBoolean.S_FALSE;
80 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
84 return XBoolean.S_FALSE;
92 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DFuncLang.java25 import org.apache.xpath.objects.XBoolean;
80 return isLang ? XBoolean.S_TRUE : XBoolean.S_FALSE;
/dalvik/libcore/xml/src/main/java/org/apache/xpath/operations/
H A DGt.java23 import org.apache.xpath.objects.XBoolean;
47 return left.greaterThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DGte.java23 import org.apache.xpath.objects.XBoolean;
48 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DLt.java23 import org.apache.xpath.objects.XBoolean;
47 return left.lessThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DLte.java23 import org.apache.xpath.objects.XBoolean;
47 return left.lessThanOrEqual(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DNotEquals.java23 import org.apache.xpath.objects.XBoolean;
47 return (left.notEquals(right)) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DBool.java24 import org.apache.xpath.objects.XBoolean;
50 return right.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DAnd.java24 import org.apache.xpath.objects.XBoolean;
40 * @return {@link org.apache.xpath.objects.XBoolean#S_TRUE} or
41 * {@link org.apache.xpath.objects.XBoolean#S_FALSE}.
54 return expr2.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
57 return XBoolean.S_FALSE;
H A DOr.java24 import org.apache.xpath.objects.XBoolean;
40 * @return {@link org.apache.xpath.objects.XBoolean#S_TRUE} or
41 * {@link org.apache.xpath.objects.XBoolean#S_FALSE}.
54 return expr2.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
57 return XBoolean.S_TRUE;
H A DEquals.java24 import org.apache.xpath.objects.XBoolean;
48 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
/dalvik/libcore/xml/src/main/java/org/apache/xpath/objects/
H A DXBoolean.java19 * $Id: XBoolean.java 469368 2006-10-31 04:41:36Z minchau $
28 public class XBoolean extends XObject class in inherits:XObject
36 public static final XBoolean S_TRUE = new XBooleanStatic(true);
42 public static final XBoolean S_FALSE = new XBooleanStatic(false);
49 * Construct a XBoolean object.
53 public XBoolean(boolean b) method in class:XBoolean
62 * Construct a XBoolean object.
66 public XBoolean(Boolean b) method in class:XBoolean
H A DXBooleanStatic.java28 public class XBooleanStatic extends XBoolean
H A DXObjectFactory.java58 result = new XBoolean((Boolean)val);
97 result = new XBoolean((Boolean)val);

Completed in 59 milliseconds