/external/openfst/src/include/fst/ |
union-find.h | 41 : parent_(max, fail), rank_(max), fail_(fail) { } 47 || item == fail_ 48 || parent_[item] == fail_) return fail_; 69 // New value in parent_ should be initialized to fail_ 71 parent_.resize(nitem, fail_); 89 T fail_; // Value indicating lookup failure. member in class:fst::UnionFind
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
union-find.h | 38 : parent_(max, fail), rank_(max), fail_(fail) { } 44 || item == fail_ 45 || parent_[item] == fail_) return fail_; 67 // New value in parent_ should be initialized to fail_ 68 parent_.resize(2 * item, fail_); 86 T fail_; // Value indicating lookup failure. member in class:fst::UnionFind
|
/external/chromium_org/remoting/host/setup/ |
native_messaging_writer.cc | 55 fail_(false) { 62 if (fail_) { 82 fail_ = true; 96 fail_ = true;
|
native_messaging_writer.h | 30 bool fail_; member in class:remoting::NativeMessagingWriter
|
/external/chromium_org/net/http/ |
mock_http_cache.h | 234 void set_fail(bool fail) { fail_ = fail; } 239 int Result() { return fail_ ? net::ERR_FAILED : net::OK; } 244 bool fail_; member in class:MockBlockingBackendFactory
|
mock_http_cache.cc | 598 fail_(false) { 608 if (!fail_) 621 if (!fail_)
|
/external/chromium/net/http/ |
http_cache_unittest.cc | 648 : backend_(NULL), callback_(NULL), block_(true), fail_(false) {} 654 if (!fail_) 669 if (!fail_) 678 void set_fail(bool fail) { fail_ = fail; } 683 int Result() { return fail_ ? net::ERR_FAILED : net::OK; } 688 bool fail_; member in class:__anon5512::MockBlockingBackendFactory [all...] |