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

1 2 3 4 5 6 7 8 91011>>

  /system/core/libunwindstack/
Check.h 26 #define CHECK(assertion) \
27 if (__builtin_expect(!(assertion), false)) { \
28 log(0, "%s:%d: %s\n", __FILE__, __LINE__, #assertion); \
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
abi-64.s 1 ! Check successful .abi assertion for 64-bit ABI.
abi-32.s 1 ! Check successful .abi assertion for 32-bit ABI.
err-abi-32.s 1 ! Check .abi pseudo assertion.
err-abi-64.s 1 ! Check .abi pseudo assertion.
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
gentests.pl 28 my ($assertion) = $1;
38 $testcases{$assertion}++;
39 open (OUT, ">$assertion-" . $testcases{$assertion} . ".c")
  /prebuilts/go/darwin-x86/test/interface/
assertinline.go 10 return x.(*int) // ERROR "type assertion inlined"
14 z, ok := x.(*int) // ERROR "type assertion inlined"
19 return x.(func()) // ERROR "type assertion inlined"
23 z, ok := x.(func()) // ERROR "type assertion inlined"
28 return x.(struct{ *int }) // ERROR "type assertion inlined"
32 z, ok := x.(struct{ *int }) // ERROR "type assertion inlined"
37 return x.(complex128) // ERROR "type assertion inlined"
41 z, ok := x.(complex128) // ERROR "type assertion inlined"
46 _, ok := x.(complex128) // ERROR "type assertion inlined"
51 return x.([]int) // ERROR "type assertion inlined
    [all...]
explicit.go 41 t = e // ERROR "need explicit|need type assertion"
56 t = T(e) // ERROR "need explicit|need type assertion|incompatible"
70 var _ = m.(int) // ERROR "impossible type assertion"
76 var _ = m.(Int) // ERROR "impossible type assertion"
  /prebuilts/go/linux-x86/test/interface/
assertinline.go 10 return x.(*int) // ERROR "type assertion inlined"
14 z, ok := x.(*int) // ERROR "type assertion inlined"
19 return x.(func()) // ERROR "type assertion inlined"
23 z, ok := x.(func()) // ERROR "type assertion inlined"
28 return x.(struct{ *int }) // ERROR "type assertion inlined"
32 z, ok := x.(struct{ *int }) // ERROR "type assertion inlined"
37 return x.(complex128) // ERROR "type assertion inlined"
41 z, ok := x.(complex128) // ERROR "type assertion inlined"
46 _, ok := x.(complex128) // ERROR "type assertion inlined"
51 return x.([]int) // ERROR "type assertion inlined
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
assert.c 18 void __assert(const char *file, unsigned int line, const char *assertion)
20 tf_printf("ASSERT: %s:%d:%s\n", file, line, assertion);
  /art/tools/checker/match/
file.py 26 def __init__(self, assertion, lineNo, variables):
27 self.assertion = assertion
37 for assertion in assertions:
38 if (assertion.variant == lastVariant and
39 assertion.variant in [TestAssertion.Variant.DAG, TestAssertion.Variant.Not]):
40 splitAssertions[-1].append(assertion)
42 splitAssertions.append([assertion])
43 lastVariant = assertion.variant
46 def findMatchingLine(assertion, c1Pass, scope, variables, excludeLines=[])
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
RDN.java 45 * Note that DER-encoded RDNs sort AVAs by assertion OID ... so that
69 final AVA[] assertion; field in class:RDN
151 assertion = avaVec.toArray(new AVA[avaVec.size()]);
227 assertion = avaVec.toArray(new AVA[avaVec.size()]);
244 assertion = new AVA[avaset.length];
246 assertion[i] = new AVA(avaset[i]);
256 RDN(int i) { assertion = new AVA[i]; }
262 assertion = new AVA[] { ava };
266 assertion = avas.clone();
267 for (int i = 0; i < assertion.length; i++)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/Pei/
PeiDebug.h 23 PeiDebugAssert(file, linenumber, assertion string) - worker function for
25 is passed in along with the stringized version of the assertion.
56 #define _PEI_DEBUG_ASSERT(PeiST, assertion) \
57 PeiDebugAssert (PeiST, __FILE__, __LINE__, #assertion)
62 // Define ASSERT() macro, if assertion is FALSE trigger the ASSERT
64 #define PEI_ASSERT(PeiST, assertion) if(!(assertion)) \
65 _PEI_DEBUG_ASSERT(PeiST, assertion)
  /external/syslinux/core/lwip/src/include/lwip/
debug.h 65 #define LWIP_ASSERT(message, assertion) do { if(!(assertion)) \
68 #define LWIP_ASSERT(message, assertion)
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
MatcherAssert.java 22 public static void assertThat(String reason, boolean assertion) {
23 if (!assertion) {
  /frameworks/rs/tests/lldb/tests/harness/
util_lldb.py 43 AssertionError: If an assertion fails.
56 AssertionError: If an assertion fails.
71 AssertionError: If an assertion fails.
84 AssertionError: If an assertion fails.
  /external/google-breakpad/src/processor/testdata/
test_app.cc 43 MDRawAssertionInfo *assertion,
  /external/google-breakpad/src/client/windows/handler/
exception_handler.cc 550 MDRawAssertionInfo assertion; local
551 memset(&assertion, 0, sizeof(assertion));
552 _snwprintf_s(reinterpret_cast<wchar_t*>(assertion.expression),
553 sizeof(assertion.expression) / sizeof(assertion.expression[0]),
555 _snwprintf_s(reinterpret_cast<wchar_t*>(assertion.function),
556 sizeof(assertion.function) / sizeof(assertion.function[0]),
558 _snwprintf_s(reinterpret_cast<wchar_t*>(assertion.file)
640 MDRawAssertionInfo assertion; local
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/test/issue9026/
issue9026.go 3 // This file appears in its own package since the assertion tests the
29 // Brittle: the assertion may fail spuriously when the algorithm
  /prebuilts/go/linux-x86/misc/cgo/test/issue9026/
issue9026.go 3 // This file appears in its own package since the assertion tests the
29 // Brittle: the assertion may fail spuriously when the algorithm
  /art/tools/checker/file_format/checker/
parser.py 118 Logger.fail("Checker assertion could not be parsed: '" + line + "'", fileName, lineNo)
136 assertion = TestAssertion(parent, variant, line, lineNo)
159 assertion.addExpression(TestExpression.createSeparator())
164 assertion.addExpression(TestExpression.createPattern(pattern))
169 assertion.addExpression(TestExpression.createVariableReference(name))
176 assertion.addExpression(TestExpression.createVariableDefinition(name, body))
189 assertion.addExpression(TestExpression.createPlainText(text))
191 assertion.addExpression(TestExpression.createPatternFromPlainText(text))
192 return assertion
  /external/llvm/test/MC/Mips/
mips-register-names-invalid.s 4 # $32 used to trigger an assertion instead of the usual error message due to
  /frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/app/
FragmentContentIdTest.java 20 import static android.support.test.espresso.assertion.ViewAssertions.doesNotExist;
21 import static android.support.test.espresso.assertion.ViewAssertions.matches;
  /packages/apps/Settings/tests/unit/src/com/android/settings/tests/
PrivateVolumeSettingsTest.java 27 import static android.support.test.espresso.assertion.ViewAssertions.doesNotExist;
28 import static android.support.test.espresso.assertion.ViewAssertions.matches;
  /packages/apps/StorageManager/tests/app/src/com/android/storagemanager/deletionhelper/
DeletionHelperActivityTest.java 19 import static android.support.test.espresso.assertion.ViewAssertions.doesNotExist;
20 import static android.support.test.espresso.assertion.ViewAssertions.matches;

Completed in 437 milliseconds

1 2 3 4 5 6 7 8 91011>>