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

1 2

  /external/chromium/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/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/libvpx/libvpx/third_party/googletest/src/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/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();
94 provider_->PrepareTrustedValues(base::Bind(&Fail));
  /external/chromium_org/tools/telemetry/telemetry/page/
test_expectations.py 50 def Fail(self, url_pattern, conditions=None, bug=None):
51 self._Expect('fail', url_pattern, conditions, bug)
  /external/llvm/include/llvm/MC/
MCDisassembler.h 30 /// Ternary decode status. Most backends will just use Fail and
37 /// is a "soft fail" failure mode that indicates the MCInst& is
41 /// from Success->SoftFail ->Fail can be done with a simple
44 /// LEFT & TOP = | Success Unpredictable Fail
46 /// Success | Success Unpredictable Fail
47 /// Unpredictable | Unpredictable Unpredictable Fail
48 /// Fail | Fail Fail Fail
    [all...]
  /external/chromium_org/v8/test/cctest/
test-thread-termination.cc 47 void Fail(const v8::FunctionCallbackInfo<v8::Value>& args) {
55 v8::String::New("try { doloop(); fail(); } catch(e) { fail(); }");
72 " fail();"
74 " fail();"
108 global->Set(v8::String::New("fail"), v8::FunctionTemplate::New(Fail));
127 v8::String::New("try { loop(); fail(); } catch(e) { fail(); }");
147 v8::String::New("try { loop(); fail(); } catch(e) { fail(); }")
    [all...]
test-assembler-x64.cc 275 Label Fail;
287 __ j(not_equal, &Fail);
300 __ j(not_equal, &Fail);
304 __ bind(&Fail);
396 Label fail; local
398 __ j(not_equal, &fail);
400 __ j(not_equal, &fail);
402 __ j(not_equal, &fail);
404 __ j(not_equal, &fail);
406 __ j(not_equal, &fail);
    [all...]
  /external/v8/test/cctest/
test-thread-termination.cc 49 v8::Handle<v8::Value> Fail(const v8::Arguments& args) {
58 v8::String::New("try { doloop(); fail(); } catch(e) { fail(); }");
76 " fail();"
78 " fail();"
114 global->Set(v8::String::New("fail"), v8::FunctionTemplate::New(Fail));
132 v8::String::New("try { loop(); fail(); } catch(e) { fail(); }");
152 v8::String::New("try { loop(); fail(); } catch(e) { fail(); }")
    [all...]
test-assembler-x64.cc 278 Label Fail;
290 __ j(not_equal, &Fail);
303 __ j(not_equal, &Fail);
307 __ bind(&Fail);
397 Label fail; local
399 __ j(not_equal, &fail);
401 __ j(not_equal, &fail);
403 __ j(not_equal, &fail);
405 __ j(not_equal, &fail);
407 __ j(not_equal, &fail);
    [all...]
  /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/chrome/browser/managed_mode/
managed_user_refresh_token_fetcher_unittest.cc 56 void Fail(GoogleServiceAuthError::State error);
108 void MockOAuth2TokenService::Request::Fail(
341 GetOAuth2TokenServiceRequest()->Fail(
  /external/chromium_org/v8/src/
regexp-macro-assembler-irregexp.cc 214 void RegExpMacroAssemblerIrregexp::Fail() {
regexp-macro-assembler-tracer.cc 113 void RegExpMacroAssemblerTracer::Fail() {
114 PrintF(" Fail();");
115 assembler_->Fail();
  /external/v8/src/mips/
regexp-macro-assembler-mips.cc 310 Label fail;
335 __ Branch(&fail, ne, t0, Operand(a3));
337 __ Branch(&fail, hi, a3, Operand('z' - 'a')); // Is a3 a lowercase letter?
343 __ bind(&fail);
595 void RegExpMacroAssemblerMIPS::Fail() {
    [all...]
  /external/v8/src/
regexp-macro-assembler-irregexp.cc 211 void RegExpMacroAssemblerIrregexp::Fail() {
regexp-macro-assembler-tracer.cc 111 void RegExpMacroAssemblerTracer::Fail() {
112 PrintF(" Fail();\n");
113 assembler_->Fail();
  /external/chromium/chrome/browser/chromeos/login/
signed_settings.cc 43 settings_->Fail(code);
108 void Fail(SignedSettings::ReturnCode code);
134 void Fail(SignedSettings::ReturnCode code);
167 void Fail(SignedSettings::ReturnCode code);
198 void Fail(SignedSettings::ReturnCode code);
226 void Fail(SignedSettings::ReturnCode code);
252 void Fail(SignedSettings::ReturnCode code);
360 Fail(NOT_FOUND);
364 void CheckWhitelistOp::Fail(SignedSettings::ReturnCode code) {
395 Fail(SignedSettings::MapKeyOpCode(return_code))
    [all...]
  /external/chromium/net/tools/dump_cache/
upgrade.cc 198 // fail while sending the first message.
255 void Fail();
279 return Fail();
286 return Fail();
369 return Fail();
394 return Fail();
433 return Fail();
460 return Fail();
502 return Fail();
522 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 1077 milliseconds

1 2