HomeSort by relevance Sort by last modified time
    Searched full:s_true (Results 1 - 20 of 20) sorted by null

  /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;
And.java 40 * @return {@link org.apache.xpath.objects.XBoolean#S_TRUE} or
54 return expr2.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
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;
Equals.java 48 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
  /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;
FuncExtElementAvailable.java 80 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
92 ? 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;
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;
FuncStartsWith.java 46 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
FuncTrue.java 45 return XBoolean.S_TRUE;
FuncLang.java 80 return isLang ? 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);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
_json.so 
  /external/chromium_org/third_party/simplejson/
_speedups.c 2157 static PyObject *s_true = NULL; local
    [all...]

Completed in 1685 milliseconds