HomeSort by relevance Sort by last modified time
    Searched defs:Fail (Results 1 - 25 of 47) sorted by null

1 2

  /external/google-breakpad/src/testing/gtest/test/
gtest_throw_on_failure_ex_test.cc 45 void Fail(const char* msg) {
60 Fail("A successful assertion wrongfully threw.");
74 Fail(e.what());
76 Fail("A failed assertion threw the wrong type of exception.");
78 Fail("A failed assertion should've thrown but didn't.");
  /external/googletest/googletest/test/
gtest_throw_on_failure_ex_test.cc 44 void Fail(const char* msg) {
59 Fail("A successful assertion wrongfully threw.");
72 Fail(e.what());
74 Fail("A failed assertion threw the wrong type of exception.");
76 Fail("A failed assertion should've thrown but didn't.");
gtest_assert_by_exception_test.cc 52 void Fail(const char* msg) {
69 Fail("A successful assertion wrongfully threw.");
76 Fail("A failed non-fatal assertion wrongfully threw.");
89 Fail(e.what());
91 Fail("A failed assertion threw the wrong type of exception.");
93 Fail("A failed assertion should've thrown but didn't.");
109 Fail("Expected failure instead.");
113 Fail("Should have continued with other tests, but did not.");
  /external/junit/src/main/java/org/junit/internal/runners/statements/
Fail.java 5 public class Fail extends Statement {
8 public Fail(Throwable e) {
  /external/eigen/test/
ctorleak.cpp 15 if (Foo::object_count > Foo::object_limit) { std::cout << "\nThrow!\n"; throw Foo::Fail(); }
27 class Fail : public std::exception {};
54 catch (const Foo::Fail&) { /* ignore */ }
  /external/llvm/include/llvm/MC/MCDisassembler/
MCDisassembler.h 28 /// Ternary decode status. Most backends will just use Fail and
35 /// is a "soft fail" failure mode that indicates the MCInst& is
39 /// from Success->SoftFail ->Fail can be done with a simple
42 /// LEFT & TOP = | Success Unpredictable Fail
44 /// Success | Success Unpredictable Fail
45 /// Unpredictable | Unpredictable Unpredictable Fail
46 /// Fail | Fail Fail Fail
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/MCDisassembler/
MCDisassembler.h 29 /// Ternary decode status. Most backends will just use Fail and
36 /// is a "soft fail" failure mode that indicates the MCInst& is
40 /// from Success->SoftFail ->Fail can be done with a simple
43 /// LEFT & TOP = | Success Unpredictable Fail
45 /// Success | Success Unpredictable Fail
46 /// Unpredictable | Unpredictable Unpredictable Fail
47 /// Fail | Fail Fail Fail
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCDisassembler.h 29 /// Ternary decode status. Most backends will just use Fail and
36 /// is a "soft fail" failure mode that indicates the MCInst& is
40 /// from Success->SoftFail ->Fail can be done with a simple
43 /// LEFT & TOP = | Success Unpredictable Fail
45 /// Success | Success Unpredictable Fail
46 /// Unpredictable | Unpredictable Unpredictable Fail
47 /// Fail | Fail Fail Fail
    [all...]
  /external/clang/test/SemaCXX/
unaddressable-functions.cpp 98 auto Fail = call(&foo); // expected-error{{no matching function for call to 'call'}} expected-note@-5{{candidate template ignored: couldn't infer template argument 'Fn'}}
  /external/skia/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/
SkQPRunner.java 37 private static void Fail(Description desc, RunNotifier notifier, String failure) {
123 SkQPRunner.Fail(desc, notifier, String.format("Exception: %s", error));
127 SkQPRunner.Fail(desc, notifier, String.format(
129 Log.w(TAG, String.format("[FAIL] '%s': %d > 0", name, value));
130 result = "FAIL";
148 Log.w(TAG, String.format("[FAIL] Test '%s' had %d failures.", name, errors.length));
150 SkQPRunner.Fail(desc, notifier, error);
151 Log.w(TAG, String.format("[FAIL] '%s': %s", name, error));
153 result = "FAIL";
  /external/skqp/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/
SkQPRunner.java 37 private static void Fail(Description desc, RunNotifier notifier, String failure) {
123 SkQPRunner.Fail(desc, notifier, String.format("Exception: %s", error));
127 SkQPRunner.Fail(desc, notifier, String.format(
129 Log.w(TAG, String.format("[FAIL] '%s': %d > 0", name, value));
130 result = "FAIL";
148 Log.w(TAG, String.format("[FAIL] Test '%s' had %d failures.", name, errors.length));
150 SkQPRunner.Fail(desc, notifier, error);
151 Log.w(TAG, String.format("[FAIL] '%s': %s", name, error));
153 result = "FAIL";
  /external/libchrome/mojo/public/cpp/bindings/tests/
binding_unittest.cc 113 // And calls should fail.
219 // All calls should fail when not bound...
369 void Fail() {
370 FAIL() << "Unexpected connection error";
379 binding.set_connection_error_handler(base::Bind(&Fail));
594 binding->set_connection_error_handler(base::Bind(&Fail));
pickle_unittest.cc 45 base::Callback<void(T)> Fail(const std::string& reason) {
252 Fail<PickledStructChromium>("Blink service should reject this."));
struct_traits_unittest.cc 51 base::Callback<void(const T&)> Fail(const std::string& reason) {
251 Fail<RectChromium>("The pipe should have been closed."));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
GVNSink.cpp 123 bool Fail;
131 Fail = false;
145 Fail = true;
148 bool isValid() const { return !Fail; }
172 if (Fail)
182 Fail = true;
714 // FIXME: If any of these fail, we should partition up the candidates to
Float2Int.cpp 339 bool Fail = false;
363 Fail = true;
368 if (Fail)
374 if (ECs.member_begin(It) == ECs.member_end() || Fail ||
  /external/llvm/lib/Transforms/Scalar/
Float2Int.cpp 354 bool Fail = false;
378 Fail = true;
383 if (Fail)
389 if (ECs.member_begin(It) == ECs.member_end() || Fail ||
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
BranchRelaxation.cpp 342 bool Fail = TII->analyzeBranch(*MBB, TBB, FBB, Cond);
343 assert(!Fail && "branches to be relaxed must be analyzable");
344 (void)Fail;
  /external/v8/src/regexp/
regexp-macro-assembler-irregexp.cc 192 void RegExpMacroAssemblerIrregexp::Fail() {
regexp-macro-assembler-tracer.cc 96 void RegExpMacroAssemblerTracer::Fail() {
97 PrintF(" Fail();");
98 assembler_->Fail();
  /external/v8/src/regexp/x64/
regexp-macro-assembler-x64.cc 661 void RegExpMacroAssemblerX64::Fail() {
    [all...]
  /external/v8/src/regexp/arm/
regexp-macro-assembler-arm.cc 234 Label fail; local
261 __ b(ne, &fail);
268 __ b(hi, &fail); // Weren't Latin-1 letters.
270 __ b(eq, &fail);
277 __ bind(&fail);
612 void RegExpMacroAssemblerARM::Fail() {
    [all...]
  /external/v8/src/regexp/ia32/
regexp-macro-assembler-ia32.cc 219 Label fail; local
248 __ j(above, &fail); // Weren't Latin-1 letters.
250 __ j(equal, &fail);
257 __ j(not_equal, &fail);
268 __ bind(&fail);
359 Label fail; local
404 __ j(not_equal, &fail);
413 __ bind(&fail);
645 void RegExpMacroAssemblerIA32::Fail() {
    [all...]
  /external/v8/src/regexp/ppc/
regexp-macro-assembler-ppc.cc 248 Label fail; local
277 __ bne(&fail);
284 __ bgt(&fail); // Weren't Latin-1 letters.
286 __ beq(&fail);
293 __ bind(&fail);
630 void RegExpMacroAssemblerPPC::Fail() {
    [all...]
  /external/libchrome/base/task/sequence_manager/
task_queue_impl.cc 83 TaskQueueImpl::PostTaskResult TaskQueueImpl::PostTaskResult::Fail(
201 return PostTaskResult::Fail(std::move(task));
221 return PostTaskResult::Fail(std::move(task));
238 return PostTaskResult::Fail(std::move(task));
    [all...]

Completed in 1386 milliseconds

1 2