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

  /external/llvm/include/llvm/Support/
ErrorOr.h 101 : HasError(true) {
105 ErrorOr(std::error_code EC) : HasError(true) {
109 ErrorOr(T Val) : HasError(false) {
166 if (!HasError)
172 return !HasError;
179 return HasError ? *getErrorStorage() : std::error_code();
193 if (!Other.HasError) {
195 HasError = false;
199 HasError = true;
225 if (!Other.HasError) {
    [all...]
  /external/llvm/include/llvm/Object/
RelocVisitor.h 45 : ObjToVisit(Obj), HasError(false) {}
56 HasError = true;
60 bool error() { return HasError; }
64 bool HasError;
82 HasError = true;
92 HasError = true;
103 HasError = true;
114 HasError = true;
124 HasError = true;
136 HasError = true
    [all...]
  /external/v8/src/
preparse-data.h 156 bool HasError() {
160 DCHECK(HasError());
preparse-data.cc 38 if (HasError()) return;
parser.h 73 bool HasError();
    [all...]
parser.cc 215 if (HasError()) return false;
237 bool ParseData::HasError() {
    [all...]
  /external/clang/test/Parser/
cxx-ambig-init-templ.cpp 99 template<typename T> struct HasError { typename T::error error; }; // expected-error {{has no members}}
102 // This triggers the instantiation of the outer HasError<int> during
103 // disambiguation, even though it uses the inner HasError<int>.
104 void f(int a = X<Y, HasError<int>::Z >()); // expected-note {{in instantiation of}}
108 template<typename> struct HasError { typedef int Z; };
111 HasError<int> hei;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 259 bool HasError;
265 HasError = true;
380 ProcessAllSections(false), HasError(false) {
425 bool hasError() { return HasError; }
428 void clearError() { HasError = false; }
  /external/clang/lib/Format/
UnwrappedLineParser.cpp 1015 bool HasError = false;
1055 return !HasError;
1057 HasError = true;
1059 return !HasError;
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 286 bool HasError = false;
294 HasError = true;
301 if (!HasError) {
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.h 547 /// hasError - True if the currently processed nodes have unresolvable types
549 bool HasError;
615 bool hasError() const {
616 return HasError;
619 HasError = false;
CodeGenDAGPatterns.cpp 84 if (TP.hasError())
166 if (InVT.isCompletelyUnknown() || *this == InVT || TP.hasError())
247 if (TP.hasError())
272 if (TP.hasError())
298 if (TP.hasError())
325 if (TP.hasError())
356 if (TP.hasError())
399 if (TP.hasError())
491 if (TP.hasError())
537 if (TP.hasError())
    [all...]
  /external/v8/test/cctest/
test-parsing.cc 162 CHECK(!log.HasError());
177 CHECK(log.HasError());
324 CHECK(!log.HasError());
356 CHECK(log.HasError());
423 CHECK(log.HasError());
    [all...]

Completed in 511 milliseconds