/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 | 1160 return S_FALSE; in GetStream() 1757 return S_FALSE; in OpenStream2() 1895 if (result == S_FALSE) in OpenStream2() 1922 return S_FALSE; in OpenStream2() 2008 return S_FALSE; in OpenStream2() 2015 return S_FALSE; in OpenStream2() 2023 return S_FALSE; in OpenStream2() 2054 return S_FALSE; in OpenStream2() 2150 if (result == S_FALSE) in OpenStream2() 2283 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 | FuncFalse.java | 45 return XBoolean.S_FALSE; in execute()
|
D | FuncBoolean.java | 45 return m_arg0.execute(xctxt).bool() ? 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 | FuncStartsWith.java | 46 ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute()
|
/external/lzma/CPP/7zip/Archive/ |
D | LzmaHandler.cpp | 164 return S_FALSE; in Code() 366 return S_FALSE; in Open() 368 return S_FALSE; in Open() 371 return S_FALSE; in Open() 382 return S_FALSE; in Open() 400 return S_FALSE; in Open() 552 result = S_FALSE; in Extract() 555 if (result == S_FALSE) in Extract() 563 result = S_FALSE; in Extract() 565 else if (result == S_OK || result == S_FALSE) in Extract() [all …]
|
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()
|
/external/lzma/CPP/7zip/Compress/ |
D | LzmaDecoder.cpp | 19 case SZ_ERROR_DATA: return S_FALSE; in SResToHRESULT() 119 return S_FALSE; in CodeSpec() 186 return S_FALSE; in CodeSpec() 192 return S_FALSE; in CodeSpec() 200 return S_FALSE; in CodeSpec() 222 res = S_FALSE; in Code() 277 return S_FALSE; in Read()
|
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 | 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() 120 return S_FALSE; // E_FAIL; in GetSubStreamSize() 132 return S_FALSE; in GetSubStreamSize()
|
D | 7zIn.cpp | 289 return S_FALSE; in FindAndReadSignature() 305 return S_FALSE; in FindAndReadSignature() 311 return S_FALSE; in FindAndReadSignature() 1506 return S_FALSE; in ReadDatabase2() 1527 return S_FALSE; in ReadDatabase2() 1532 return S_FALSE; in ReadDatabase2() 1541 return S_FALSE; in ReadDatabase2() 1562 return S_FALSE; in ReadDatabase2() 1566 return S_FALSE; in ReadDatabase2() 1579 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 | 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()
|
D | Lte.java | 47 return left.lessThanOrEqual(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 | Gt.java | 47 return left.greaterThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE; in operate()
|
/external/webrtc/modules/video_capture/windows/ |
D | sink_filter_ds.cc | 73 return S_FALSE; in STDMETHOD() 82 return count == 1 ? S_OK : S_FALSE; in STDMETHOD() 328 return pos_ == static_cast<int>(format_preference_order_.size()) ? S_FALSE in STDMETHOD() 594 return S_FALSE; in Disconnect() 652 ? S_FALSE in QueryAccept() 729 return S_FALSE; in Receive() 783 return S_FALSE; in ReceiveCanBlock()
|
/external/llvm-project/debuginfo-tests/dexter/dex/debugger/dbgeng/ |
D | setup.py | 88 if res == S_FALSE: 113 if res == S_FALSE:
|
/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()
|