HomeSort by relevance Sort by last modified time
    Searched refs:Failure (Results 26 - 50 of 90) sorted by null

12 3 4

  /external/llvm/tools/bugpoint/
bugpoint.cpp 204 bool Failure = D.run(Error);
209 return Failure;
Miscompilation.cpp 335 bool Failure;
337 false, Error, Failure);
342 if (Failure) {
371 Failure = TestFn(BD, ToOptimizeLoopExtracted, ToNotOptimize, Error);
374 if (!Failure) {
612 // failure, see if we can pin down which functions are being
    [all...]
ExecutionDriver.cpp 392 bool Failure = gcc->MakeSharedObject(OutputFile.str(), FT, SharedObjectFile,
396 if (Failure)
  /external/junit/src/org/junit/internal/runners/
JUnit38ClassRunner.java 18 import org.junit.runner.notification.Failure;
40 Failure failure= new Failure(asDescription(test), t); local
41 fNotifier.fireTestFailure(failure);
  /external/webkit/Source/WebCore/platform/image-decoders/bmp/
BMPImageReader.cpp 101 return (result == Failure) ? m_parent->setFailed() : false;
121 return (result == Failure) ? m_parent->setFailed() : false;
586 if (result == Failure)
642 return Failure;
683 return Failure;
BMPImageReader.h 102 Failure,
  /external/clang/lib/Serialization/
ASTReader.cpp 957 return Failure;
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 515 void setBad(BadConversionSequence::FailureKind Failure,
518 Bad.init(Failure, FromExpr, ToType);
522 void setBad(BadConversionSequence::FailureKind Failure,
525 Bad.init(Failure, FromType, ToType);
669 /// this deduction failure.
678 /// \brief Retrieve the diagnostic which caused this deduction failure,
682 /// \brief Retrieve the template parameter this deduction failure
687 /// deduction failure, if any.
690 /// \brief Return the first template argument this deduction failure
694 /// \brief Return the second template argument this deduction failure
    [all...]
  /external/llvm/test/Bindings/Ocaml/
executionengine.ml 83 | Some _ -> raise (Failure "find_function 'dne' failed")
87 | None -> raise (Failure "find_function 'plus' failed")
  /external/v8/src/
isolate.h 135 RETURN_IF_EMPTY_HANDLE_VALUE(isolate, call, Failure::Exception())
595 return (exception != Failure::OutOfMemoryException()) &&
707 Failure* Throw(Object* exception, MessageLocation* location = NULL);
711 Failure* ReThrow(MaybeObject* exception, MessageLocation* location = NULL);
714 Failure* ThrowIllegalOperation();
717 Failure* PromoteScheduledException();
732 Failure* StackOverflow();
733 Failure* TerminateExecution();
    [all...]
isolate.cc 293 // Allocation failure.
443 // The pending exception can sometimes be a failure. We can't show
897 Failure* Isolate::StackOverflow() {
908 return Failure::Exception();
912 Failure* Isolate::TerminateExecution() {
914 return Failure::Exception();
918 Failure* Isolate::Throw(Object* exception, MessageLocation* location) {
920 return Failure::Exception();
924 Failure* Isolate::ReThrow(MaybeObject* exception, MessageLocation* location) {
935 return Failure::Exception()
    [all...]
heap-inl.h 110 return Failure::OutOfMemoryException();
144 return Failure::OutOfMemoryException();
195 return Failure::RetryAfterGC(space);
523 ISOLATE->heap()->CollectGarbage(Failure::cast(__maybe_object__)-> \
525 "allocation failure"); \
objects-inl.h 477 && Failure::cast(this)->type() == Failure::RETRY_AFTER_GC;
483 && Failure::cast(this)->IsOutOfMemoryException();
488 return this == Failure::Exception();
497 Failure* Failure::cast(MaybeObject* obj) {
499 return reinterpret_cast<Failure*>(obj);
827 return Failure::Exception();
992 Failure::Type Failure::type() const
    [all...]
accessors.cc 126 if (has_exception) return Failure::Exception();
128 if (has_exception) return Failure::Exception();
522 return Failure::Exception();
liveedit-debugger.js 77 throw new Failure("Failed to compile new version of script: " + e);
    [all...]
  /external/chromium/testing/gtest/test/
gtest_output_test_.cc 68 // This function calls a test subroutine, catches the fatal failure it
71 // Calls a subrountine that yields a fatal failure.
74 // Catches the fatal failure and aborts the test.
104 // Tests catching a fatal failure in a subroutine.
106 printf("(expecting a failure that x should be 1)\n");
111 // Tests catching a fatal failure in a nested subroutine.
113 printf("(expecting a failure that x should be 1)\n");
115 // Calls a subrountine that yields a fatal failure.
118 // Catches the fatal failure and aborts the test.
130 printf("(expecting a failure on false)\n")
    [all...]
  /external/gtest/test/
gtest_output_test_.cc 68 // This function calls a test subroutine, catches the fatal failure it
71 // Calls a subrountine that yields a fatal failure.
74 // Catches the fatal failure and aborts the test.
104 // Tests catching a fatal failure in a subroutine.
106 printf("(expecting a failure that x should be 1)\n");
111 // Tests catching a fatal failure in a nested subroutine.
113 printf("(expecting a failure that x should be 1)\n");
115 // Calls a subrountine that yields a fatal failure.
118 // Catches the fatal failure and aborts the test.
130 printf("(expecting a failure on false)\n")
    [all...]
  /external/llvm/lib/VMCore/
Value.cpp 270 bool Failure = getSymTab(V, VST);
271 assert(!Failure && "V has a name, so it should have a ST!"); (void)Failure;
  /external/protobuf/gtest/test/
gtest_output_test_.cc 66 // This function calls a test subroutine, catches the fatal failure it
69 // Calls a subrountine that yields a fatal failure.
72 // Catches the fatal failure and aborts the test.
88 // Tests catching a fatal failure in a subroutine.
90 printf("(expecting a failure that x should be 1)\n");
95 // Tests catching a fatal failure in a nested subroutine.
97 printf("(expecting a failure that x should be 1)\n");
99 // Calls a subrountine that yields a fatal failure.
102 // Catches the fatal failure and aborts the test.
114 printf("(expecting a failure on false)\n")
866 FailureMode* failure = static_cast<FailureMode*>(attr); local
    [all...]
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheGroup.h 180 Failure,
190 // the course of action in case of this failure (i.e. call the ChromeClient callback or run the failure steps).
  /external/v8/test/mjsunit/regress/
regress-925537.js 31 print('Failure: Expected <' + actual + '> to be close to <' +
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate_test.js 264 // Failure
286 // Failure
  /external/freetype/src/sfnt/
ttsbit0.c 824 goto Failure;
895 goto Failure;
937 goto Failure;
976 Failure:
  /external/libvpx/examples/includes/geshi/geshi/
ruby.php 85 'Iconv::Failure', 'Iconv::IllegalSequence',
  /external/v8/test/cctest/
test-alloc.cc 39 if (++attempts < 3) return Failure::RetryAfterGC();

Completed in 373 milliseconds

12 3 4