HomeSort by relevance Sort by last modified time
    Searched defs:Failed (Results 1 - 25 of 65) 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 287 int [] Failed = new int [1];
288 Failed[0] = 0;
289 aFailed.copyFrom(Failed);
305 aFailed.copyTo(Failed);
306 if (Failed[0] != 0) {
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshake.h 53 Incomplete, Normal, Failed, Connected, ModeMax
85 // Returns a string indicating the reason of failure if mode() == Failed.
  /external/pdfium/core/include/reflow/
reflowengine.h 43 typedef enum { Ready, ToBeContinued, Done, Failed } ParseStatus;
61 typedef enum { Ready, ToBeContinued, Waiting, Done, Failed } RenderStatus;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
TextTrackLoader.h 63 enum State { Idle, Loading, Finished, Failed };
  /external/clang/include/clang/Lex/
PreprocessorOptions.h 122 llvm::StringSet<> Failed;
126 return Failed.count(module) > 0;
130 Failed.insert(module);
134 /// \brief The set of modules that failed to build.
138 /// other instances will see that the module has failed and won't try to
  /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/tools/driver/
cc1as_main.cpp 386 bool Failed = false;
396 Failed = Diags.Report(diag::err_target_unknown_triple) << Opts.Triple;
398 if (!Failed) {
400 Failed = Parser->Run(Opts.NoInitialTextSection);
407 if (Failed && Opts.OutputPath != "-")
410 return Failed;
482 bool Failed = Diags.hasErrorOccurred() || ExecuteAssembler(Asm, Diags);
488 return !!Failed;
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 32 volatile unsigned Failed : 1;
37 Failed(false),
55 assert(!Failed && "Crash recovery context already failed!");
56 Failed = true;
331 assert(CRC->Failed && "No crash was detected!");
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 84 bool Failed = false;
129 Failed = true;
134 Failed = true;
139 Failed = true;
142 Failed = true;
146 if (Failed) {
406 bool Failed = false;
413 Failed = true;
421 Failed = true;
433 Failed = true
    [all...]
  /external/llvm/utils/TableGen/
IntrinsicEmitter.cpp 422 bool Failed = false;
427 Failed = true;
434 if (!Failed && (Result >> 31) == 0) {
  /external/pdfium/core/include/fpdfapi/
fpdf_render.h 159 Failed
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodFlowTestActivity.java 139 setTestResult(mProfileOwnerInstalled, provisioned ? TestResult.Passed : TestResult.Failed);
161 return isDeviceEncrypted() ? TestResult.Passed : TestResult.Failed;
213 setTestResult(test, TestResult.Failed);
260 setTestResult(mProfileOwnerInstalled, TestResult.Failed);
298 Unknown, Failed, Passed
371 } else if (item.getPassFailState() == TestResult.Failed){
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc     [all...]
  /external/clang/lib/Lex/
Pragma.cpp 131 bool Failed;
139 Failed(false), OutTok(Tok) {
148 if (Failed) {
157 void failed() { function in class:__anon21761::LexingFor_PragmaRAII
158 Failed = true;
188 return _PragmaLexing.failed();
200 return _PragmaLexing.failed();
209 return _PragmaLexing.failed();
219 return _PragmaLexing.failed();
    [all...]
  /external/clang/lib/Parse/
ParseTemplate.cpp 306 bool Failed = false;
308 Failed = ParseTemplateParameterList(Depth, TemplateParams);
319 } else if (!TryConsumeToken(tok::greater, RAngleLoc) && Failed) {
342 // If we failed to parse a template parameter, skip until we find
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 333 bool Failed = true;
339 Failed = false;
344 return Failed;
847 // Rename failed; just remove the
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 504 bool Failed;
505 ThisVal = StateMgr.getStoreManager().evalDynamicCast(ThisVal, Ty, Failed);
506 assert(!Failed && "Calling an incorrectly devirtualized method");
    [all...]

Completed in 716 milliseconds

1 2 3