/external/mdnsresponder/mDNSWindows/DLLX/ |
D | TXTRecord.cpp | 68 require_action( ok, exit, hr = S_FALSE ); in SetValue() 74 require_action( ok, exit, hr = S_FALSE ); in SetValue() 80 require_action( !err, exit, hr = S_FALSE ); in SetValue() 116 require_action( ok, exit, hr = S_FALSE ); in RemoveValue() 122 require_action( !err, exit, hr = S_FALSE ); in RemoveValue() 160 require_action( ok, exit, err = S_FALSE ); in ContainsKey() 210 require_action( ok, exit, hr = S_FALSE ); in GetValueForKey() 224 require_action( ok, exit, hr = S_FALSE ); in GetValueForKey() 288 require_action( !err, exit, hr = S_FALSE ); in GetKeyAtIndex() 294 require_action( ok, exit, hr = S_FALSE ); in GetKeyAtIndex() [all …]
|
/external/lzma/CPP/7zip/UI/Common/ |
D | ArchiveOpenCallback.cpp | 87 return S_FALSE; in GetStream() 104 return S_FALSE; in GetStream() 111 return S_FALSE; in GetStream() 113 return S_FALSE; in GetStream() 115 return S_FALSE; in GetStream()
|
D | OpenArchive.cpp | 1156 return S_FALSE; in GetStream() 1753 return S_FALSE; in OpenStream2() 1891 if (result == S_FALSE) in OpenStream2() 1918 return S_FALSE; in OpenStream2() 2004 return S_FALSE; in OpenStream2() 2011 return S_FALSE; in OpenStream2() 2019 return S_FALSE; in OpenStream2() 2050 return S_FALSE; in OpenStream2() 2146 if (result == S_FALSE) in OpenStream2() 2279 return S_FALSE; in OpenStream2() [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
D | FuncExtFunctionAvailable.java | 69 return XBoolean.S_FALSE; in execute() 78 return m_functionTable.functionAvailable(methName) ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute() 82 return XBoolean.S_FALSE; in execute() 90 ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute()
|
D | FuncExtElementAvailable.java | 68 return XBoolean.S_FALSE; in execute() 80 ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute() 84 return XBoolean.S_FALSE; in execute() 92 ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute()
|
D | FuncNot.java | 45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_FALSE : XBoolean.S_TRUE; in execute()
|
D | FuncBoolean.java | 45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute()
|
D | FuncFalse.java | 45 return XBoolean.S_FALSE; in execute()
|
D | FuncStartsWith.java | 46 ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute()
|
/external/lzma/CPP/7zip/Archive/ |
D | SplitHandler.cpp | 128 return S_FALSE; in Open2() 133 return S_FALSE; in Open2() 140 return S_FALSE; in Open2() 174 return S_FALSE; in Open2() 177 return S_FALSE; in Open2() 217 if (result == S_FALSE) in Open2() 246 return S_FALSE; in Open2()
|
D | LzmaHandler.cpp | 168 return S_FALSE; in Code() 338 return S_FALSE; in Open() 341 return S_FALSE; in Open() 345 return S_FALSE; in Open() 496 result = S_FALSE; in Extract() 499 if (result == S_FALSE) in Extract() 507 result = S_FALSE; in Extract() 509 else if (result == S_OK || result == S_FALSE) in Extract() 535 else if (result == S_FALSE) in Extract()
|
/external/lzma/CPP/7zip/Compress/ |
D | Lzma2Decoder.cpp | 19 case SZ_ERROR_DATA: return S_FALSE; in SResToHRESULT() 95 return S_FALSE; in Code() 166 return S_FALSE; in Code() 174 return S_FALSE; in Code() 176 return S_FALSE; in Code() 179 return (finishMode == LZMA_FINISH_END) ? S_FALSE : S_OK; in Code()
|
D | Bcj2Coder.cpp | 221 if (result == S_FALSE) in CodeReal() 376 return S_FALSE; in Code() 433 res = (_readRes[dec.state] != S_OK) ? _readRes[dec.state] : S_FALSE; in Code() 489 return S_FALSE; in Code() 495 return S_FALSE; in Code() 507 return S_FALSE; in Code() 570 return S_FALSE; in Read() 630 return (_readRes[dec.state] != S_OK) ? _readRes[dec.state] : S_FALSE; in Read() 642 return S_FALSE; in Read() 646 return S_FALSE; in Read()
|
D | LzmaDecoder.cpp | 19 case SZ_ERROR_DATA: return S_FALSE; in SResToHRESULT() 95 return S_FALSE; in CodeSpec() 148 return S_FALSE; in CodeSpec() 157 return S_FALSE; in CodeSpec() 164 return (status == LZMA_STATUS_FINISHED_WITH_MARK ? S_OK : S_FALSE); in CodeSpec()
|
D | PpmdDecoder.cpp | 55 case kStatus_Error: return S_FALSE; in CodeSpec() 61 return S_FALSE; in CodeSpec()
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zFolderInStream.cpp | 43 if (result != S_FALSE) in OpenStream() 117 return S_FALSE; // E_FAIL; in GetSubStreamSize() 129 return S_FALSE; in GetSubStreamSize()
|
D | 7zIn.cpp | 273 return S_FALSE; in FindAndReadSignature() 289 return S_FALSE; in FindAndReadSignature() 295 return S_FALSE; in FindAndReadSignature() 1484 return S_FALSE; in ReadDatabase2() 1505 return S_FALSE; in ReadDatabase2() 1510 return S_FALSE; in ReadDatabase2() 1519 return S_FALSE; in ReadDatabase2() 1540 return S_FALSE; in ReadDatabase2() 1544 return S_FALSE; in ReadDatabase2() 1557 return S_FALSE; in ReadDatabase2() [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
D | And.java | 54 return expr2.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute() 57 return XBoolean.S_FALSE; in execute()
|
D | Lte.java | 47 return left.lessThanOrEqual(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE; in operate()
|
D | Gt.java | 47 return left.greaterThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE; in operate()
|
D | NotEquals.java | 47 return (left.notEquals(right)) ? XBoolean.S_TRUE : XBoolean.S_FALSE; in operate()
|
D | Gte.java | 48 ? XBoolean.S_TRUE : XBoolean.S_FALSE; in operate()
|
D | Lt.java | 47 return left.lessThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE; in operate()
|
/external/lzma/CPP/7zip/Common/ |
D | FilterCoder.cpp | 96 return S_FALSE; in Code() 251 return S_FALSE; in OutStreamFinish() 367 return S_FALSE; in Read()
|
D | CWrappers.cpp | 39 case S_FALSE: return SZ_ERROR_DATA; in HRESULT_To_SRes() 95 case SZ_ERROR_DATA: return S_FALSE; in SResToHRESULT()
|