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

1 2

  /external/chromium_org/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/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/protobuf/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.");
  /ndk/sources/third_party/googletest/googletest/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/chromium_org/gin/test/
gtest.cc 22 void Fail(const std::string& description) {
23 FAIL() << description;
52 .SetMethod("fail", Fail)
  /external/junit/src/org/junit/internal/runners/statements/
Fail.java 6 public class Fail extends Statement {
9 public Fail(Throwable e) {
  /external/chromium_org/chrome/browser/chromeos/settings/
stub_cros_settings_provider_unittest.cc 19 void Fail() {
21 FAIL();
95 provider_->PrepareTrustedValues(base::Bind(&Fail));
  /external/chromium_org/tools/telemetry/telemetry/page/
test_expectations.py 60 def Fail(self, url_pattern, conditions=None, bug=None):
61 self._Expect('fail', url_pattern, conditions, bug)
  /external/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/lldb/tools/debugserver/source/
DNBError.h 86 bool Fail() const { return m_err != 0; }
  /external/chromium_org/v8/test/cctest/
test-thread-termination.cc 47 void Fail(const v8::FunctionCallbackInfo<v8::Value>& args) {
55 args.GetIsolate(), "try { doloop(); fail(); } catch(e) { fail(); }");
73 " fail();"
75 " fail();"
111 global->Set(v8::String::NewFromUtf8(isolate, "fail"),
112 v8::FunctionTemplate::New(isolate, Fail));
133 CcTest::isolate(), "try { loop(); fail(); } catch(e) { fail(); }");
153 CcTest::isolate(), "try { loop(); fail(); } catch(e) { fail(); }")
    [all...]
test-assembler-x64.cc 440 Label Fail;
452 __ j(not_equal, &Fail);
465 __ j(not_equal, &Fail);
469 __ bind(&Fail);
561 Label fail; local
563 __ j(not_equal, &fail);
565 __ j(not_equal, &fail);
567 __ j(not_equal, &fail);
569 __ j(not_equal, &fail);
571 __ j(not_equal, &fail);
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
attr.py 12 class Fail(Exception):
187 # events in result. Fail if there's not any.
197 log.debug(" ->FAIL");
201 # we did not any matching event - fail
204 raise Fail(self, 'match failure');
219 raise Fail(self, 'group failure')
325 except Fail, obj:
  /external/lldb/source/API/
SBError.cpp 71 SBError::Fail () const
77 ret_value = m_opaque_ap->Fail();
80 log->Printf ("SBError(%p)::Fail () => %i", m_opaque_ap.get(), ret_value);
  /external/lldb/source/Core/
Error.cpp 171 Error::Fail () const
196 if (Fail())
227 if (Fail())
  /external/chromium_org/chrome/browser/devtools/
devtools_network_transaction.cc 102 void DevToolsNetworkTransaction::Fail() {
  /external/chromium_org/content/browser/
plugin_service_impl_browsertest.cc 74 Fail();
79 Fail();
84 FAIL();
88 Fail();
92 Fail();
95 Fail();
100 void Fail() {
102 FAIL();
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32toolhelp_unittest.cc 84 static bool Fail(HANDLE handle, TestData* d) {
115 bool CheckCallCounters(int first, int next, int fail, int close) {
117 && fail_called_ == fail && close_handle_called_ == close;
123 << fail << ", "
171 return Win32ToolhelpTest::Fail(handle, t);
194 return Win32ToolhelpTest::Fail(handle, t);
221 // If next ever fails it shall always fail.
235 // If next ever fails it shall always fail. No more calls
  /external/chromium_org/third_party/webrtc/base/
win32toolhelp_unittest.cc 67 static bool Fail(HANDLE handle, TestData* d) {
98 bool CheckCallCounters(int first, int next, int fail, int close) {
100 && fail_called_ == fail && close_handle_called_ == close;
106 << fail << ", "
154 return Win32ToolhelpTest::Fail(handle, t);
177 return Win32ToolhelpTest::Fail(handle, t);
204 // If next ever fails it shall always fail.
218 // If next ever fails it shall always fail. No more calls
  /libcore/jsr166-tests/src/test/java/jsr166/
AbstractQueueTest.java 30 static class Fail extends AbstractQueue<Integer> {
53 Fail q = new Fail();
83 Fail q = new Fail();
102 Fail q = new Fail();
163 Fail q = new Fail();
  /external/chromium_org/v8/src/
regexp-macro-assembler-irregexp.cc 191 void RegExpMacroAssemblerIrregexp::Fail() {
regexp-macro-assembler-tracer.cc 91 void RegExpMacroAssemblerTracer::Fail() {
92 PrintF(" Fail();");
93 assembler_->Fail();
  /external/chromium_org/chrome/browser/profile_resetter/
profile_resetter_unittest.cc     [all...]
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.cpp 182 case MCDisassembler::Fail:
193 #define Fail llvm::MCDisassembler::Fail
214 return Fail;
270 return Fail;
281 return Fail;
299 return Fail;
320 return Fail;
341 return Fail;
362 return Fail;
    [all...]
  /external/chromium_org/net/tools/dump_cache/
upgrade_win.cc 202 // fail while sending the first message.
257 void Fail();
279 return Fail();
286 return Fail();
363 return Fail();
388 return Fail();
427 return Fail();
454 return Fail();
496 return Fail();
517 return Fail();
    [all...]

Completed in 753 milliseconds

1 2