HomeSort by relevance Sort by last modified time
    Searched refs:HasError (Results 1 - 16 of 16) sorted by null

  /external/llvm/include/llvm/Support/
ErrorOr.h 187 : HasError(true), IsValid(true) {
193 ErrorOr(llvm::error_code EC) : HasError(true), IsValid(true) {
202 : HasError(true), IsValid(true) {
208 ErrorOr(T Val) : HasError(false), IsValid(true) {
257 if (HasError)
266 assert(HasError && "Cannot get an error if none exists!");
280 return HasError ? 0 : unspecified_bool_true;
285 return HasError ? Error->Error : llvm::error_code::success();
303 if (!Other.HasError) {
305 HasError = false
    [all...]
  /external/llvm/include/llvm/Object/
RelocVisitor.h 44 : FileFormat(FileFormat), HasError(false) {}
64 HasError = true;
76 HasError = true;
84 HasError = true;
92 HasError = true;
102 HasError = true;
106 HasError = true;
110 bool error() { return HasError; }
114 bool HasError;
194 HasError = true
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 179 bool HasError;
185 HasError = true;
299 RuntimeDyldImpl(RTDyldMemoryManager *mm) : MemMgr(mm), HasError(false) {}
330 bool hasError() { return HasError; }
333 void clearError() { HasError = false; }
  /external/chromium/third_party/libjingle/source/talk/base/
task.h 120 bool HasError() const { return (GetState() == STATE_ERROR); }
taskparent.cc 107 if (child->HasError())
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppengineimpl.cc 305 if (HasError() || raised_reset_)
322 if (HasError() || raised_reset_)
364 if (HasError() || raised_reset_)
440 XmppEngineImpl::HasError() {
xmppengineimpl.h 202 bool HasError();
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.h 522 /// hasError - True if the currently processed nodes have unresolvable types
524 bool HasError;
583 bool hasError() const {
584 return HasError;
587 HasError = false;
CodeGenDAGPatterns.cpp 82 if (TP.hasError())
156 if (InVT.isCompletelyUnknown() || *this == InVT || TP.hasError())
237 if (TP.hasError())
262 if (TP.hasError())
288 if (TP.hasError())
315 if (TP.hasError())
345 if (TP.hasError())
540 if (TP.hasError())
874 if (TP.hasError())
    [all...]
  /external/v8/test/cctest/
test-parsing.cc 148 CHECK(data != NULL && !data->HasError());
155 CHECK(data == NULL || data->HasError());
202 CHECK(!preparse->HasError());
224 CHECK(error_preparse->HasError());
334 CHECK(data->HasError());
358 CHECK(!data->HasError());
    [all...]
test-api.cc     [all...]
  /external/chromium/net/spdy/
spdy_framer.h 162 bool HasError() { return state_ == SPDY_ERROR; }
  /external/chromium/net/tools/flip_server/
spdy_interface.cc 322 return close_on_error_ || spdy_framer_->HasError();
  /external/v8/src/
parser.h 116 virtual bool HasError();
parser.cc     [all...]
  /external/v8/include/
v8.h 559 virtual bool HasError() = 0;
    [all...]

Completed in 611 milliseconds