HomeSort by relevance Sort by last modified time
    Searched refs:CRASH (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/clang/test/Index/Inputs/Headers/
crash.h 1 // Produce a crash if CRASH is defined.
2 #ifdef CRASH
3 # pragma clang __debug crash
  /external/clang/test/Driver/
output-file-cleanup.c 17 // REQUIRES: crash-recovery
19 #ifdef CRASH
20 #pragma clang __debug crash
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebCommon.cpp 41 CRASH();
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestCallbackInterface.cpp 75 CRASH();
95 CRASH();
115 CRASH();
135 CRASH();
155 CRASH();
161 CRASH();
181 CRASH();
187 CRASH();
207 CRASH();
227 CRASH();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Assertions.h 133 /* IMMEDIATE_CRASH() - Like CRASH() below but crashes in the fastest, simplest possible way with no attempt at logging. */
142 /* CRASH() - Raises a fatal error resulting in program termination and triggering either the debugger or the crash reporter.
144 Use CRASH() in response to known, unrecoverable errors like out-of-memory.
148 Signals are ignored by the crash reporter on OS X so we must do better.
150 #ifndef CRASH
151 #define CRASH() \
195 CRASH()) : \
201 CRASH()) : \
206 CRASH(); \
    [all...]
ThreadSpecific.h 115 CRASH();
122 CRASH();
140 CRASH();
186 CRASH();
190 CRASH();
ThreadSpecificWin.cpp 54 CRASH();
  /external/chromium_org/content/public/browser/
download_interrupt_reason_values.h 114 // Crash.
118 INTERRUPT_REASON(CRASH, 50)
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
callback_interface.cpp 44 CRASH();
52 CRASH();
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioArray.h 59 CRASH();
81 CRASH();
85 CRASH();
  /external/chromium_org/v8/tools/testrunner/local/
statusfile.py 35 CRASH = "CRASH"
46 for key in [SKIP, FAIL, PASS, OKAY, TIMEOUT, CRASH, SLOW, FLAKY, FAIL_OK,
79 (not CRASH in outcomes) and (not OKAY in outcomes))
  /external/chromium_org/components/metrics/serialization/
metric_sample.cc 40 if (type_ == CRASH) {
41 return base::StringPrintf("crash%c%s%c",
79 CHECK_NE(type_, CRASH);
89 CHECK_NE(type_, CRASH);
104 new MetricSample(CRASH, crash_name, 0, 0, 0, 0));
metric_sample.h 23 CRASH,
43 // Check the metric type to make sure the request make sense. (ex: a crash
44 // sample does not have a bucket_count so we crash if we call bucket_count()
54 // crash: crash\0|name_|\0
61 // Builds a crash sample.
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8MutationCallback.cpp 64 CRASH();
  /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
V8CustomSQLStatementErrorCallback.cpp 57 CRASH();
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
results.js 33 var CRASH = 'CRASH';
50 var kCrashLogSuffix = '-crash-log.txt';
116 case CRASH:
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLTProcessorLibxslt.cpp 309 CRASH();
311 CRASH();
313 CRASH();
315 CRASH();
  /external/chromium_org/build/android/pylib/base/
base_test_result.py 12 CRASH = 'CRASH'
20 ResultType.CRASH, ResultType.TIMEOUT, ResultType.UNKNOWN]
184 return self._GetType(ResultType.CRASH)
base_test_result_unittest.py 20 self.c1 = BaseTestResult('c1', ResultType.CRASH, log='crash1')
55 '[CRASH] c1:\n'
61 'CRASH: 1 TIMEOUT: 0 UNKNOWN: 1 ')
  /external/deqp/scripts/log/
log_parser.py 15 CRASH = 'Crash'
27 CRASH,
131 statusCode = StatusCode.CRASH
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_expectations_unittest.py 61 self.get_test('failures/expected/crash.html'),
73 Bug(test) failures/expected/crash.html [ WontFix ]
111 self.parse_exp('Bug(x) failures/expected/text.html [ Crash Failure ]')
114 set([FAIL, CRASH]))
122 self.assertEqual(TestExpectations.result_was_expected(SKIP, set([CRASH]), test_needs_rebaselining=False), True)
136 self.assertFalse(TestExpectations.result_was_expected(CRASH, set([NEEDS_REBASELINE]), test_needs_rebaselining=False))
144 self.assertEqual(TestExpectations.remove_pixel_failures(set([PASS, IMAGE, CRASH])), set([PASS, CRASH]))
149 self.assertEqual(TestExpectations.suffixes_for_expectations(set([FAIL, IMAGE, CRASH])), set(['txt', 'png', 'wav']))
162 self.assert_exp_list('failures/expected/crash.html', [WONTFIX, SKIP]
    [all...]
test_run_results_unittest.py 44 elif result_type == test_expectations.CRASH:
52 tests = ['passes/text.html', 'failures/expected/timeout.html', 'failures/expected/crash.html', 'failures/expected/leak.html', 'failures/expected/keyboard.html',
68 initial_results.add(get_result('failures/expected/crash.html', test_expectations.CRASH), expected, test_is_slow)
78 initial_results.add(get_result('failures/expected/crash.html'), expected, test_is_slow)
83 initial_results.add(get_result('failures/expected/timeout.html', test_expectations.CRASH, run_time=0.05), expected, test_is_slow)
84 initial_results.add(get_result('failures/expected/crash.html', test_expectations.TIMEOUT), expected, test_is_slow)
94 retry_results.add(get_result('failures/expected/crash.html'), True, test_is_slow)
135 self.assertEquals(summary['num_failures_by_type'], {'CRASH': 1, 'MISSING': 0, 'TEXT': 0, 'IMAGE': 0, 'NEEDSREBASELINE': 0, 'NEEDSMANUALREBASELINE': 0, 'PASS': 0, 'REBASELINE': 0, 'SKIP': 0, 'SLOW': 0, 'TIMEOUT': 3, 'IMAGE+TEXT': 0, 'LEAK': 0, 'FAIL': 0, 'AUDIO': 1, 'WONTFIX': 1})
138 self.assertEquals(summary['num_failures_by_type'], {'CRASH': 1, 'MISSING': 0, 'TEXT': 0, 'IMAGE': 0, 'NEEDSREBASELINE': 0, 'NEEDSMANUALREBASELINE': 0, 'PASS' (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
SharedBuffer.cpp 166 CRASH();
181 CRASH();
196 CRASH();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableRow.h 62 CRASH();
  /external/chromium_org/build/android/pylib/gtest/
test_runner.py 98 # to output the CRASHED marker when a crash happens.
122 full_test_name, base_test_result.ResultType.CRASH,
137 full_test_name, base_test_result.ResultType.CRASH,

Completed in 322 milliseconds

1 2 3