Searched refs:S_FALSE (Results 1 - 25 of 69) sorted by relevance

123

/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncExtFunctionAvailable.java69 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 DFuncBoolean.java45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DFuncExtElementAvailable.java68 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 DFuncFalse.java45 return XBoolean.S_FALSE;
H A DFuncNot.java45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_FALSE : XBoolean.S_TRUE;
H A DFuncStartsWith.java46 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DFuncContains.java55 return (index > -1) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DFuncLang.java80 return isLang ? XBoolean.S_TRUE : XBoolean.S_FALSE;
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DAnd.java41 * {@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 DGt.java47 return left.greaterThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DGte.java48 ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DLt.java47 return left.lessThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DLte.java47 return left.lessThanOrEqual(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DNotEquals.java47 return (left.notEquals(right)) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DBool.java50 return right.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DEquals.java48 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DOr.java41 * {@link org.apache.xpath.objects.XBoolean#S_FALSE}.
54 return expr2.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
/external/lzma/CPP/7zip/UI/Common/
H A DArchiveOpenCallback.cpp81 return S_FALSE;
88 return S_FALSE;
90 return S_FALSE;
92 return S_FALSE;
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXBoolean.java42 public static final XBoolean S_FALSE = new XBooleanStatic(false); field in class:XBoolean
/external/libchrome/base/win/
H A Dscoped_com_initializer.h57 if (hr_ == S_FALSE)
/external/lzma/CPP/7zip/Archive/
H A DSplitHandler.cpp143 return S_FALSE;
148 return S_FALSE;
155 return S_FALSE;
189 return S_FALSE;
192 return S_FALSE;
226 if (result == S_FALSE)
251 return S_FALSE;
H A DLzmaHandler.cpp180 return S_FALSE;
358 return S_FALSE;
361 return S_FALSE;
365 return S_FALSE;
517 result = S_FALSE;
520 if (result == S_FALSE)
528 result = S_FALSE;
530 else if (result == S_OK || result == S_FALSE)
556 else if (result == S_FALSE)
/external/lzma/CPP/7zip/Compress/
H A DLzmaDecoder.cpp19 case SZ_ERROR_DATA: return S_FALSE;
93 return S_FALSE;
146 return S_FALSE;
155 return S_FALSE;
162 return (status == LZMA_STATUS_FINISHED_WITH_MARK ? S_OK : S_FALSE);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zFolderInStream.cpp37 if (result != S_OK && result != S_FALSE)
118 return S_FALSE;
/external/lzma/CPP/7zip/Common/
H A DStreamUtils.cpp32 return (size == processedSize) ? S_OK : S_FALSE;

Completed in 157 milliseconds

123