Searched defs:Failed (Results 1 - 25 of 34) sorted by relevance

12

/external/protobuf/python/google/protobuf/
H A Dservice.py140 def Failed(self): member in class:RpcController
144 reasons for failure depend on the RPC implementation. Failed() must not
145 be called before a call has finished. If Failed() returns true, the
151 """If Failed is true, returns a human-readable description of the error."""
170 Causes Failed() to return true on the client side. "reason" will be
/external/webkit/Source/WebCore/websockets/
H A DWebSocketHandshake.h49 Incomplete, Normal, Failed, Connected enumerator in enum:WebCore::WebSocketHandshake::Mode
/external/clang/test/SemaCXX/
H A Dconstexpr-nqueens.cpp7 bool Failed; member in struct:Board
9 constexpr Board() : State(0), Failed(false) {}
10 constexpr Board(const Board &O) : State(O.State), Failed(O.Failed) {}
11 constexpr Board(uint64_t State, bool Failed = false) :
12 State(State), Failed(Failed) {}
39 return Try.Failed ? buildBoardScan(N, Col, Row, B) : Try;
/external/llvm/lib/Support/
H A DCrashRecoveryContext.cpp30 volatile unsigned Failed : 1; member in struct:__anon9400::CrashRecoveryContextImpl
34 Failed(false) {
46 assert(!Failed && "Crash recovery context already failed!");
47 Failed = true;
321 assert(CRC->Failed && "No crash was detected!");
H A DYAMLParser.cpp273 if (!Failed)
275 Failed = true;
284 return Failed;
493 bool Failed; member in class:llvm::yaml::Scanner
704 , Failed(false) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBaseRecognizer.cs786 public virtual bool Failed { property in class:Antlr.Runtime.BaseRecognizer
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBaseRecognizer.cs885 public virtual bool Failed property in class:Antlr.Runtime.BaseRecognizer
/external/clang/lib/Parse/
H A DParseTemplate.cpp317 bool Failed = false; local
319 Failed = ParseTemplateParameterList(Depth, TemplateParams);
332 else if (Failed) {
/external/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp483 bool Failed; local
484 ThisVal = StateMgr.getStoreManager().evalDynamicCast(ThisVal, Ty, Failed);
485 assert(!Failed && "Calling an incorrectly devirtualized method");
H A DExprEngineC.cpp334 bool Failed = false; local
338 Failed = true;
341 val = getStoreManager().evalDynamicCast(val, T, Failed);
343 if (Failed) {
H A DRegionStore.cpp54 assert(getConcreteOffsetRegion() == Base && "Failed to store base region");
59 assert(getOffset() == offset && "Failed to store offset");
202 /// - Failed cast (ex: derived is definitely not a subclass of base).
206 /// valid only if Failed flag is set to false.
207 virtual SVal evalDynamicCast(SVal base, QualType derivedPtrType,bool &Failed);
935 bool &Failed) {
936 Failed = false;
992 Failed = true;
934 evalDynamicCast(SVal base, QualType derivedType, bool &Failed) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp82 bool Failed = false; local
127 Failed = true;
132 Failed = true;
137 Failed = true;
140 Failed = true;
144 if (Failed) {
404 bool Failed = false; local
411 Failed = true;
419 Failed = true;
431 Failed
[all...]
/external/llvm/utils/TableGen/
H A DIntrinsicEmitter.cpp402 bool Failed = false; local
407 Failed = true;
414 if (!Failed && (Result >> 31) == 0) {
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_unittest.cc978 bool Failed() const { function in class:google::protobuf::compiler::cpp::cpp_unittest::GeneratedServiceTest::MockController
979 ADD_FAILURE() << "Failed() not expected during this test.";
/external/chromium/sdch/open-vcdiff/src/gtest/src/
H A Dgtest-internal-inl.h481 bool Passed() const { return !Failed(); }
484 bool Failed() const { return failed_part_count() > 0; } function in class:testing::internal::TestResult
659 bool Passed() const { return !Failed(); }
662 bool Failed() const { return failed_test_count() > 0; } function in class:testing::TestCase
698 return impl->should_run() && impl->result()->Failed();
888 bool Passed() const { return !Failed(); }
892 bool Failed() const { function in class:testing::internal::UnitTestImpl
893 return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed();
/external/clang/lib/Lex/
H A DModuleMap.cpp1280 bool Failed = false; local
1285 Failed = true;
1289 if (!Failed && !ActiveModule->getUmbrellaDir()) {
1291 Failed = true;
1295 if (!Failed && ActiveModule->InferSubmodules) {
1300 Failed = true;
1304 if (Failed) {
H A DPragma.cpp126 bool Failed; member in class:__anon3676::LexingFor_PragmaRAII
134 Failed(false), OutTok(Tok) {
143 if (Failed) {
153 Failed = true;
/external/chromium/testing/gtest/include/gtest/
H A Dgtest.h524 bool Passed() const { return !Failed(); }
527 bool Failed() const;
791 bool Passed() const { return !Failed(); }
794 bool Failed() const { return failed_test_count() > 0; } function in class:testing::TestCase
852 return test_info->should_run() && test_info->result()->Failed();
1163 bool Failed() const;
1732 #define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed")
1737 GTEST_MESSAGE_AT_(file, line, "Failed", \
1741 #define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed")
/external/chromium/testing/gtest/src/
H A Dgtest-internal-inl.h548 bool Passed() const { return !Failed(); }
552 bool Failed() const { function in class:testing::internal::UnitTestImpl
553 return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed();
639 << "Failed to get the current working directory.";
/external/clang/include/clang/Sema/
H A DInitialization.h723 /// \brief Failed to initialize a std::initializer_list because copy
814 operator bool() const { return !Failed(); }
817 bool Failed() const { return SequenceKind == FailedSequence; } function in class:clang::InitializationSequence
984 assert(Failed() && "Not an initialization failure!");
/external/clang/lib/AST/
H A DDeclCXX.cpp2021 bool Failed) {
2023 RParenLoc, Failed);
2016 Create(ASTContext &C, DeclContext *DC, SourceLocation StaticAssertLoc, Expr *AssertExpr, StringLiteral *Message, SourceLocation RParenLoc, bool Failed) argument
/external/gtest/include/gtest/
H A Dgtest.h524 bool Passed() const { return !Failed(); }
527 bool Failed() const;
791 bool Passed() const { return !Failed(); }
794 bool Failed() const { return failed_test_count() > 0; } function in class:testing::TestCase
852 return test_info->should_run() && test_info->result()->Failed();
1163 bool Failed() const;
1732 #define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed")
1737 GTEST_MESSAGE_AT_(file, line, "Failed", \
1741 #define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed")
/external/gtest/src/
H A Dgtest-internal-inl.h555 bool Passed() const { return !Failed(); }
559 bool Failed() const { function in class:testing::internal::UnitTestImpl
560 return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed();
646 << "Failed to get the current working directory.";
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h524 bool Passed() const { return !Failed(); }
527 bool Failed() const;
791 bool Passed() const { return !Failed(); }
794 bool Failed() const { return failed_test_count() > 0; } function in class:testing::TestCase
852 return test_info->should_run() && test_info->result()->Failed();
1163 bool Failed() const;
1734 #define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed")
1739 GTEST_MESSAGE_AT_(file, line, "Failed", \
1743 #define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed")
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal-inl.h554 bool Passed() const { return !Failed(); }
558 bool Failed() const { function in class:testing::internal::UnitTestImpl
559 return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed();
645 << "Failed to get the current working directory.";

Completed in 521 milliseconds

12