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

1 2 3

  /external/chromium_org/third_party/libxml/src/
testThreads.c 41 static const char *Failed = "Failed";
68 printf("parse failed\n");
73 printf("ValidityCheckingDefaultValue override failed\n");
77 printf("xmlGenericErrorContext override failed\n");
82 printf("ValidityCheckingDefaultValue override failed\n");
86 printf("xmlGenericErrorContext override failed\n");
91 return((void *) Failed);
132 printf("Thread %d handling %s failed\n", i, testfiles[i]);
179 printf("Thread %d handling %s failed\n", i, testfiles[i])
    [all...]
testThreadsWin32.c 31 const char *Failed = "Failed";
58 printf("parse failed\n");
63 printf("ValidityCheckingDefaultValue override failed\n");
67 printf("xmlGenericErrorContext override failed\n");
72 printf("ValidityCheckingDefaultValue override failed\n");
76 printf("xmlGenericErrorContext override failed\n");
81 return ((DWORD) Failed);
117 perror ("WaitForMultipleObjects failed");
133 printf("Thread %d handling %s failed\n", i, testfiles[i])
    [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
service.py 47 """Exception raised on failed blocking RPC method call."""
87 * If the RPC failed, the response value passed to "done" will be None.
140 def Failed(self):
141 """Returns true if the call failed.
143 After a call has finished, returns true if the call failed. The possible
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."""
161 will indicate that the call failed at that time.
170 Causes Failed() to return true on the client side. "reason" will b
    [all...]
  /external/clang/test/SemaCXX/
constexpr-nqueens.cpp 7 bool Failed;
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/protobuf/python/google/protobuf/
service.py 47 """Exception raised on failed blocking RPC method call."""
87 * If the RPC failed, the response value passed to "done" will be None.
140 def Failed(self):
141 """Returns true if the call failed.
143 After a call has finished, returns true if the call failed. The possible
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."""
161 will indicate that the call failed at that time.
170 Causes Failed() to return true on the client side. "reason" will b
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
VoidPtr.java 28 int [] Failed;
36 Failed = new int [1];
37 Failed[0] = 0;
38 AFailed.copyFrom(Failed);
61 AFailed.copyTo(Failed);
62 if (Failed[0] != 0) {
89 AFailed.copyTo(Failed);
90 if (Failed[0] != 0) {
121 AFailed.copyTo(Failed);
122 if (Failed[0] != 0)
    [all...]
GlobalSync.java 26 int [] Failed;
34 Failed = new int [1];
35 Failed[0] = 0;
36 AFailed.copyFrom(Failed);
57 AFailed.copyTo(Failed);
58 if (Failed[0] != 0) {
78 AFailed.copyTo(Failed);
79 if (Failed[0] != 0) {
99 AFailed.copyTo(Failed);
100 if (Failed[0] != 0)
    [all...]
ScriptGroupTest.java 289 int [] Failed = new int [1];
290 Failed[0] = 0;
291 aFailed.copyFrom(Failed);
307 aFailed.copyTo(Failed);
308 if (Failed[0] != 0) {
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshake.h 53 Incomplete, Normal, Failed, Connected, ModeMax
80 String failureReason() const; // Returns a string indicating the reason of failure if mode() == Failed.
  /external/chromium_org/third_party/WebKit/Source/core/loader/
TextTrackLoader.h 68 enum State { Idle, Loading, Finished, Failed };
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 106 state.failed = false;
137 state.failed = false;
141 state.failed = true;
151 state.failed = false;
313 msg = "rule " + fpe.RuleName + " failed predicate: {" +
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 115 state.failed = false;
149 state.failed = false;
154 state.failed = true;
165 state.failed = false;
366 msg = "rule " + fpe.RuleName + " failed predicate: {" +
    [all...]
  /external/clang/include/clang/Lex/
PreprocessorOptions.h 123 llvm::StringSet<> Failed;
127 return Failed.count(module) > 0;
131 Failed.insert(module);
135 /// \brief The set of modules that failed to build.
139 /// other instances will see that the module has failed and won't try to
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 30 volatile unsigned Failed : 1;
35 Failed(false),
53 assert(!Failed && "Crash recovery context already failed!");
54 Failed = true;
328 assert(CRC->Failed && "No crash was detected!");
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 339 bool Failed = false;
343 Failed = true;
346 val = getStoreManager().evalDynamicCast(val, T, Failed);
348 if (Failed) {
    [all...]
CallEvent.cpp 496 bool Failed;
497 ThisVal = StateMgr.getStoreManager().evalDynamicCast(ThisVal, Ty, Failed);
498 assert(!Failed && "Calling an incorrectly devirtualized method");
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 82 bool Failed = false;
127 Failed = true;
132 Failed = true;
137 Failed = true;
140 Failed = true;
144 if (Failed) {
404 bool Failed = false;
411 Failed = true;
419 Failed = true;
431 Failed = true
    [all...]
  /external/llvm/utils/TableGen/
IntrinsicEmitter.cpp 423 bool Failed = false;
428 Failed = true;
435 if (!Failed && (Result >> 31) == 0) {
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc     [all...]
  /external/clang/lib/Lex/
Pragma.cpp 129 bool Failed;
137 Failed(false), OutTok(Tok) {
146 if (Failed) {
155 void failed() { function in class:__anon17694::LexingFor_PragmaRAII
156 Failed = true;
186 return _PragmaLexing.failed();
198 return _PragmaLexing.failed();
207 return _PragmaLexing.failed();
217 return _PragmaLexing.failed();
    [all...]
  /external/clang/lib/Parse/
ParseTemplate.cpp 312 bool Failed = false;
314 Failed = ParseTemplateParameterList(Depth, TemplateParams);
327 else if (Failed) {
350 // If we failed to parse a template parameter, skip until we find
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 319 bool Failed = true;
325 Failed = false;
330 return Failed;
814 // Rename failed; just remove the
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc     [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 473 // Gets the number of failed test parts.
477 // of successful test parts and the number of failed test parts.
480 // Returns true iff the test passed (i.e. no test part failed).
481 bool Passed() const { return !Failed(); }
483 // Returns true iff the test failed.
484 bool Failed() const { return failed_part_count() > 0; }
486 // Returns true iff the test fatally failed.
646 // Gets the number of failed tests in this test case.
659 bool Passed() const { return !Failed(); }
661 // Returns true iff the test case failed
    [all...]
  /external/chromium/testing/gtest/src/
gtest-internal-inl.h 519 // Gets the number of failed test cases.
532 // Gets the number of failed tests.
548 bool Passed() const { return !Failed(); }
550 // Returns true iff the unit test failed (i.e. some test case failed
551 // or something outside of all tests failed).
552 bool Failed() const {
553 return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed();
639 << "Failed to get the current working directory.";
678 // thrown during a test, this test is considered to be failed, bu
    [all...]

Completed in 823 milliseconds

1 2 3