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

1 2 3 4

  /external/testng/src/test/java/test/invokedmethodlistener/
Failure.java 3 public class Failure extends Base {
4 public Failure() {
  /art/cmdline/
cmdline_parse_result.h 25 // otherwise it holds either a usage or a failure string message that should be displayed back
38 // Create an error result with the failure error code and no message.
39 static CmdlineParseResult<T> Failure() {
43 // Create an error result with the failure error code and no message.
44 static CmdlineParseResult<T> Failure(const std::string& message) {
  /external/junit/src/main/java/org/junit/runner/notification/
Failure.java 10 * A <code>Failure</code> holds a description of the failed test and the
18 public class Failure implements Serializable {
30 * Constructs a <code>Failure</code> with the given description and exception.
35 public Failure(Description description, Throwable thrownException) {
48 * @return the raw description of the context of the failure.
  /external/llvm/tools/bugpoint/
bugpoint.cpp 197 bool Failure = D.run(Error);
202 return Failure;
BugDriver.cpp 117 // true on failure (if, for example, an input bitcode file could not be
222 bool Failure = debugCodeGenerator(&Error);
227 return Failure;
ExecutionDriver.cpp 404 bool Failure = cc->MakeSharedObject(OutputFile, FT, SharedObjectFile,
408 if (Failure)
Miscompilation.cpp 328 bool Failure;
331 std::move(ToNotOptimize), Error, Failure);
341 if (Failure) {
373 Failure = TestFn(BD, std::move(ToOptimizeLoopExtracted),
381 if (!Failure) {
614 // failure, see if we can pin down which functions are being
    [all...]
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
bugpoint.cpp 203 bool Failure = D.run(Error);
208 return Failure;
BugDriver.cpp 111 // true on failure (if, for example, an input bitcode file could not be
221 bool Failure = debugCodeGenerator(&Error);
226 return Failure;
ExecutionDriver.cpp 436 bool Failure = gcc->MakeSharedObject(OutputFile.str(), FT, SharedObjectFile,
440 if (Failure)
Miscompilation.cpp 335 bool Failure;
337 false, Error, Failure);
342 if (Failure) {
371 Failure = TestFn(BD, ToOptimizeLoopExtracted, ToNotOptimize, Error);
374 if (!Failure) {
612 // failure, see if we can pin down which functions are being
    [all...]
  /external/boringssl/src/util/bot/go/
bootstrap.py 63 class Failure(Exception):
79 raise Failure('Unrecognized platform')
137 raise Failure('Unrecognized archive format')
141 raise Failure('Something is not right, test program doesn\'t work')
  /external/webrtc/webrtc/libjingle/xmpp/
xmpplogintask.cc 113 return Failure(XmppEngine::ERROR_VERSION);
124 return Failure(XmppEngine::ERROR_VERSION);
129 return Failure(XmppEngine::ERROR_TLS);
150 return Failure(XmppEngine::ERROR_TLS);
162 return Failure(XmppEngine::ERROR_TLS);
178 return Failure(XmppEngine::ERROR_AUTH);
194 return Failure(XmppEngine::ERROR_AUTH);
200 return Failure(XmppEngine::ERROR_AUTH);
206 return Failure(XmppEngine::ERROR_AUTH);
229 return Failure(XmppEngine::ERROR_AUTH)
    [all...]
  /prebuilts/ndk/r11/sources/android/support/tests/minitest/
minitest.cc 147 void TestCase::Failure() {
  /prebuilts/ndk/r13/sources/android/support/tests/minitest/
minitest.cc 147 void TestCase::Failure() {
  /external/jsoncpp/src/test_lib_json/
jsontest.h 31 class Failure {
40 /// Context used to create the assertion callstack on failure.
50 /// Related Failure, set when the PredicateContext is converted
51 /// into a Failure.
52 Failure* failure_;
70 /// Adds an assertion failure.
101 /// Adds a failure or a predicate context
109 typedef std::deque<Failure> Failures;
114 /// Failure which is the target of the messages added using operator <<
115 Failure* messageTarget_
    [all...]
  /external/skia/tests/
Test.h 30 struct Failure {
31 Failure(const char* f, int l, const char* c, const SkString& m)
44 virtual void reportFailed(const skiatest::Failure&) = 0;
49 void reportFailedWithContext(const skiatest::Failure& f) {
61 this->reportFailed(skiatest::Failure(f.fileName, f.lineNo, f.condition, fullMessage));
75 reporter->reportFailedWithContext(skiatest::Failure(__FILE__, __LINE__, cond, message))
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Value.cpp 256 bool Failure = getSymTab(V, VST);
257 assert(!Failure && "V has a name, so it should have a ST!"); (void)Failure;
  /frameworks/av/media/libstagefright/codec2/include/
C2Work.h 39 enum Failure {
50 Failure failure; member in struct:android::C2SettingResult
  /external/llvm/lib/IR/
Value.cpp 297 bool Failure = getSymTab(V, VST);
298 assert(!Failure && "V has a name, so it should have a ST!"); (void)Failure;
  /external/llvm/lib/Target/Hexagon/
HexagonGenMux.cpp 269 bool Failure = false, CanUp = true, CanDown = true;
273 Failure = true;
281 if (Failure || (!CanUp && !CanDown))
  /external/v8/src/debug/
liveedit.js 67 var failure =
68 new Failure("Failed to compile new version of script: " + e);
75 failure.details = details;
77 throw failure;
843 // have activations on stack (of any thread). Throws a Failure exception
856 throw new Failure(result[old_shared_wrapper_list.length]);
    [all...]
  /external/v8/src/inspector/
debugger_script_externs.js 94 function Failure() {}
95 LiveEdit.Failure = Failure;
  /frameworks/base/tools/apilint/
apilint.py 208 class Failure():
243 """Records an API failure to be processed later."""
249 failures[sig] = Failure(sig, clazz, detail, error, rule, msg)
    [all...]
  /external/libmojo/third_party/jinja2/
lexer.py 212 class Failure(object):
499 (c('(.)'), (Failure('Missing end of comment tag'),), None)
525 (c('(.)'), (Failure('Missing end of raw directive'),), None)
638 # failure group
639 if token.__class__ is Failure:

Completed in 2172 milliseconds

1 2 3 4