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

1 2

  /external/chromium/chrome/common/
logging_chrome.h 33 // normally appear for assertions and crashes, and makes any catchable
34 // errors (namely assertions) available via GetSilencedErrorCount()
59 // Gets the list of fatal assertions in the current log file, and
60 // returns the number of fatal assertions. (If you don't care
61 // about the actual list of assertions, you can pass in NULL.)
62 // NOTE: Since this reads the log file to determine the assertions,
67 size_t GetFatalAssertions(AssertionList* assertions);
logging_chrome.cc 417 size_t GetFatalAssertions(AssertionList* assertions) {
418 // In this function, we don't assume that assertions is non-null, so
420 if (assertions)
421 assertions->clear();
435 if (assertions)
436 assertions->push_back(wide_line);
  /external/chromium_org/chrome/common/
logging_chrome.h 32 // normally appear for assertions and crashes, and makes any catchable
33 // errors (namely assertions) available via GetSilencedErrorCount()
58 // Gets the list of fatal assertions in the current log file, and
59 // returns the number of fatal assertions. (If you don't care
60 // about the actual list of assertions, you can pass in NULL.)
61 // NOTE: Since this reads the log file to determine the assertions,
66 size_t GetFatalAssertions(AssertionList* assertions);
logging_chrome.cc 422 size_t GetFatalAssertions(AssertionList* assertions) {
423 // In this function, we don't assume that assertions is non-null, so
425 if (assertions)
426 assertions->clear();
440 if (assertions)
441 assertions->push_back(wide_line);
  /external/chromium_org/third_party/WebKit/Tools/qunit/qunit/
qunit.js 33 this.assertions = [];
105 QUnit.ok( false, "Died on test #" + (this.assertions.length + 1) + ": " + e.message + " - " + QUnit.jsDump.parse(e) );
124 if ( this.expected && this.expected != this.assertions.length ) {
125 QUnit.ok( false, "Expected " + this.expected + " assertions, but " + this.assertions.length + " were run" );
131 config.stats.all += this.assertions.length;
132 config.moduleStats.all += this.assertions.length;
137 for ( var i = 0; i < this.assertions.length; i++ ) {
138 var assertion = this.assertions[i];
168 b.innerHTML = this.name + " <b class='counts'>(<b class='failed'>" + bad + "</b>, <b class='passed'>" + good + "</b>, " + this.assertions.length + ")</b>"
    [all...]
  /external/chromium_org/chrome/test/ui/
ui_test.cc 435 logging::AssertionList assertions; local
436 logging::GetFatalAssertions(&assertions);
441 if (assertions.size() > expected_errors_) {
442 logging::AssertionList::const_iterator iter = assertions.begin();
443 for (; iter != assertions.end(); ++iter) {
448 EXPECT_EQ(expected_errors_, assertions.size()) << failures;
461 if (expected_errors_ != assertions.size()) {
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js 116 var assertions = {
138 var e = this.expression, ps = patterns, as = assertions;
146 // use the Selector.assertions methods unless the selector
159 if (!assertions[name](element, matches)) {
521 DrNicTest.Unit.Assertions = {
811 assertions: 0,
818 results.assertions += test.assertions;
831 url += "assertions="+ results.assertions + "&"
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js 116 var assertions = {
138 var e = this.expression, ps = patterns, as = assertions;
146 // use the Selector.assertions methods unless the selector
159 if (!assertions[name](element, matches)) {
521 DrNicTest.Unit.Assertions = {
811 assertions: 0,
818 results.assertions += test.assertions;
831 url += "assertions="+ results.assertions + "&"
    [all...]
proxy_form_controller_test.js 135 // Let's see if that happens with the next four sets of assertions.
  /external/chromium_org/v8/test/webkit/
sort-with-side-effecting-comparisons.js 25 "Checks that sorting an array with a side-effecting comparison function doesn't trigger assertions."
number-cell-reuse.js 25 "This test checks corner cases of the number cell reuse code. In particular, it checks for known cases where code generation for number cell reuse caused assertions to fail."
dfg-constant-fold-uncaptured-variable-that-is-later-captured.js 35 if (a) // Here we have an access to r2. The bug was concerned with our assertions thinking that this access was invalid.
  /bionic/libc/upstream-netbsd/libc/include/isc/
list.h 22 #include <isc/assertions.h>
  /dalvik/vm/
Android.mk 64 # Enable assertions and JIT tuning
76 # Enable assertions and JIT self-verification
Dvm.mk 80 # if you want to try with assertions on the device, add:
  /external/chromium_org/v8/test/webkit/fast/regex/
quantified-assertions.js 25 "This page tests assertions followed by quantifiers."
assertion.js 24 description("This page tests handling of parenthetical assertions.");
  /external/gtest/src/
Android.mk 18 # contains most of the code (assertions...) and libgtest_main just
  /external/chromium_org/third_party/WebKit/Tools/qunit/test/
test.js 222 module("assertions");
287 module("custom assertions");
305 test("reset runs assertions", function() {
  /ndk/build/tools/
build-device-llvm.sh 186 --disable-assertions \
  /bionic/libc/upstream-netbsd/libc/isc/
ev_streams.c 42 #include <isc/assertions.h>
ev_timers.c 40 #include <isc/assertions.h>
  /external/llvm/utils/release/
test-release.sh 239 Assertions="no"
243 Assertions="yes"
247 Assertions="yes"
263 --enable-assertions=$Assertions"
267 --enable-assertions=$Assertions \
  /ndk/sources/host-tools/nawk-20071023/
FIXES 97 smaller size, and i think that's right. added some assertions to b.c
    [all...]
  /bionic/libc/netbsd/nameser/
ns_print.c 38 #include <isc/assertions.h>

Completed in 563 milliseconds

1 2