HomeSort by relevance Sort by last modified time
    Searched refs:S_TRUE (Results 1 - 18 of 18) sorted by null

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncContains.java 51 return XBoolean.S_TRUE;
55 return (index > -1) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
FuncBoolean.java 45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
FuncNot.java 45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_FALSE : XBoolean.S_TRUE;
FuncTrue.java 45 return XBoolean.S_TRUE;
FuncStartsWith.java 46 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
FuncExtFunctionAvailable.java 78 return m_functionTable.functionAvailable(methName) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
90 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
FuncExtElementAvailable.java 80 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
92 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
FuncLang.java 80 return isLang ? XBoolean.S_TRUE : XBoolean.S_FALSE;
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Or.java 40 * @return {@link org.apache.xpath.objects.XBoolean#S_TRUE} or
54 return expr2.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
57 return XBoolean.S_TRUE;
Gt.java 47 return left.greaterThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
Gte.java 48 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
Lt.java 47 return left.lessThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
Lte.java 47 return left.lessThanOrEqual(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
NotEquals.java 47 return (left.notEquals(right)) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
Bool.java 50 return right.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
And.java 40 * @return {@link org.apache.xpath.objects.XBoolean#S_TRUE} or
54 return expr2.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
Equals.java 48 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XBoolean.java 36 public static final XBoolean S_TRUE = new XBooleanStatic(true);

Completed in 90 milliseconds