Home
last modified time | relevance | path

Searched refs:assertion (Results 1 – 25 of 337) sorted by relevance

12345678910>>...14

/external/google-breakpad/src/client/windows/handler/
Dexception_handler.cc550 MDRawAssertionInfo assertion; in HandleInvalidParameter() local
551 memset(&assertion, 0, sizeof(assertion)); in HandleInvalidParameter()
552 _snwprintf_s(reinterpret_cast<wchar_t*>(assertion.expression), in HandleInvalidParameter()
553 sizeof(assertion.expression) / sizeof(assertion.expression[0]), in HandleInvalidParameter()
555 _snwprintf_s(reinterpret_cast<wchar_t*>(assertion.function), in HandleInvalidParameter()
556 sizeof(assertion.function) / sizeof(assertion.function[0]), in HandleInvalidParameter()
558 _snwprintf_s(reinterpret_cast<wchar_t*>(assertion.file), in HandleInvalidParameter()
559 sizeof(assertion.file) / sizeof(assertion.file[0]), in HandleInvalidParameter()
561 assertion.line = line; in HandleInvalidParameter()
562 assertion.type = MD_ASSERTION_INFO_TYPE_INVALID_PARAMETER; in HandleInvalidParameter()
[all …]
Dexception_handler.h112 MDRawAssertionInfo* assertion);
142 MDRawAssertionInfo* assertion,
346 MDRawAssertionInfo* assertion);
356 MDRawAssertionInfo* assertion);
375 MDRawAssertionInfo* assertion,
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_open/
Dcoverage.txt12 -- assertion 7: not tested.
14 -- assertion 8: is tested in the areas of sem_wait, sem_trywait, sem_post,
17 -- assertion 9: is mainly tested in all test casses by calling sem_close.
19 -- assertion 11: is all covered in many area's of the semaphore suite, that
22 -- assertion 12: is mainly tests in sem_open as the maximum value and the
25 -- assertion 13: Not tested.
27 -- assertion 14: Not tested.
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_unlink/
Dcoverage.txt2 -- assertion 3: not tested.
3 -- assertion 5: not tested.
4 -- assertion 6: Not tested.
5 -- assertion 7: Not tested.
6 -- assertion 8: is being tested in the sem_unlink test cases.
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_init/
Dcoverage.txt3 -- assertion 4: Not tested. Help needed!
5 -- assertion 7: Not tested. I couldn't find a way to exhaust
8 -- assertion 8: Not tested. I couldn't figure out how to make
13 -- assertion 9: Won't test. Undefined.
15 -- assertion 10: Won't test. Undefined.
17 -- assertion 11: Won't test. Undefined.
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_destroy/
Dcoverage.txt1 -- assertion 5: not tested.
3 -- assertion 6: ERROR EBUSY: is not tested. Please contribute
6 -- assertion 7: Won't be tested. (Undefined).
8 -- assertion 8: Won't be tested. (Undefined).
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
Dgentests.pl28 my ($assertion) = $1;
38 $testcases{$assertion}++;
39 open (OUT, ">$assertion-" . $testcases{$assertion} . ".c")
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mlock/
Dcoverage.txt8 2 YES May assertion
16 10 YES May assertion
17 11 NO May assertion
18 12 YES May assertion
/external/ltp/testcases/open_posix_testsuite/Documentation/
DHOWTO_Assertions9 The general format of an assertion is:
10 <assertion id="<#>" tag="<string>">
11 </assertion>
28 type - Refers to the type of source that the assertion was taken from.
34 source - Refers to the source that the assertion was taken from. Valid
53 last line assertion is taken from. If the type is oth and there are no
62 pt:<POSIXtag> - If the assertion is taken from a POSIX specification and there
DHOWTO_FunctionalStressTest50 <!ELEMENT assertion>
51 <!ATTLIST assertion
58 used to test the assertion. For example,
59 <assertion id="1" files="threadone,threadtwo,threadthree" tag="pt:THR">
61 </assertion>
66 <assertion ID> <YES/NO - for completed/not completed>
73 - create a number corresponding to the assertion ID for each directory
/external/ltp/testcases/kernel/mem/vma/
Dvma04.c75 static void assertion(char *expected, char *value, char *name);
187 static void assertion(char *expected, char *value, char *name) in assertion() function
237 assertion("2,4", retbuf, "case4"); in case4()
254 assertion("4,2", retbuf, "case5"); in case5()
271 assertion("6", retbuf, "case6"); in case6()
288 assertion("4,2", retbuf, "case7"); in case7()
305 assertion("2,4", retbuf, "case8"); in case8()
/external/libcxx/docs/DesignDocs/
DDebugMode.rst37 checks. This allows assertion failures to correctly throw through these
43 When a debug assertion fails the assertion handler is called via the
46 different assertion handlers, the default handler
50 assertion handler as follows:
61 str.insert(bad_it, '!'); // causes debug assertion
/external/syslinux/core/lwip/src/include/lwip/
Ddebug.h65 #define LWIP_ASSERT(message, assertion) do { if(!(assertion)) \ argument
68 #define LWIP_ASSERT(message, assertion) argument
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/raise/
Dcoverage.txt5 - Test assertion 1 for threads.
6 - Test assertion 3.
14 5 IMPLICITLY tested by testing assertion 1
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DLocPathIterator.java391 assertion(false, "setNextPosition not supported in this iterator!"); in setNextPosition()
418 assertion(false, "setShouldCacheNodes not supported by this iterater!"); in setShouldCacheNodes()
440 assertion(false, "setCurrentPos not supported by this iterator!"); in setCurrentPos()
464 assertion(false, "size() not supported by this iterator!"); in size()
479 assertion(false, "item(int index) not supported by this iterator!"); in item()
498 assertion(false, "setItem not supported by this iterator!"); in setItem()
700 assertion(false, "This iterator can not reset!"); in reset()
/external/tensorflow/tensorflow/core/platform/cloud/
Doauth_client_test.cc118 StringPiece grant_type, assertion; in TEST() local
125 .GetResult(&assertion, &grant_type)); in TEST()
129 int last_dot = assertion.ToString().find_last_of("."); in TEST()
130 string header_dot_claim = assertion.ToString().substr(0, last_dot); in TEST()
131 string signature_encoded = assertion.ToString().substr(last_dot + 1); in TEST()
/external/v8/testing/gtest/scripts/
Dgen_gtest_pred_impl.py595 assertion = assrt + '_PRED'
599 assertion += '_FORMAT'
603 assertion += '%(n)s' % DEFS
647 'assertion' : assertion,
662 indent = (len(assertion) + 3)*' '
/external/googletest/googletest/scripts/
Dgen_gtest_pred_impl.py595 assertion = assrt + '_PRED'
599 assertion += '_FORMAT'
603 assertion += '%(n)s' % DEFS
647 'assertion' : assertion,
662 indent = (len(assertion) + 3)*' '
/external/protobuf/gtest/scripts/
Dgen_gtest_pred_impl.py598 assertion = assrt + '_PRED'
602 assertion += '_FORMAT'
606 assertion += '%(n)s' % DEFS
650 'assertion' : assertion,
665 indent = (len(assertion) + 3)*' '
/external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/
Dgen_gtest_pred_impl.py595 assertion = assrt + '_PRED'
599 assertion += '_FORMAT'
603 assertion += '%(n)s' % DEFS
647 'assertion' : assertion,
662 indent = (len(assertion) + 3)*' '
/external/google-breakpad/src/testing/gtest/scripts/
Dgen_gtest_pred_impl.py595 assertion = assrt + '_PRED'
599 assertion += '_FORMAT'
603 assertion += '%(n)s' % DEFS
647 'assertion' : assertion,
662 indent = (len(assertion) + 3)*' '
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/kill/
Dcoverage.txt7 4 IMPLICITLY tested by assertion 1
13 10 WON'T test. This assertion cannot really be tested; however, it is listed
14 as an FYI for the tester in that the assertion may cause some
/external/eigen/doc/
DUnalignedArrayAssert.dox3 /** \eigenManualPage TopicUnalignedArrayAssert Explanation of the assertion on unaligned arrays
5 Hello! You are seeing this webpage because your program terminated on an assertion failure like thi…
10 Assertion `(reinterpret_cast<size_t>(array) & (sizemask)) == 0 && "this assertion
21 First of all, you need to find out where in your own code this assertion was triggered from. At fir…
79 …r people using GCC on Windows (like MinGW or TDM-GCC). If you have this assertion failure in an in…
93 \section explanation General explanation of this assertion
99 …ses where these alignment settings get overridden: they are the possible causes for this assertion.
113 …GEN_DONT_VECTORIZE does not by itself disable 16-byte alignment and the assertion, here's the expl…
115 It doesn't disable the assertion, because otherwise code that runs fine without vectorization would…
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigdelset/
Dcoverage.txt6 3 IMPLICITLY tested by assertion 1
8 5 IMPLICITLY tested by assertion 4
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaddset/
Dcoverage.txt6 3 IMPLICITLY tested by assertion 1
8 5 IMPLICITLY tested by assertion 4

12345678910>>...14