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

1 2

  /prebuilts/misc/windows/sdl2/test/
testautomation_platform.c 287 const char *testError = "Testing";
305 result = SDL_SetError("%s", testError);
314 SDLTest_AssertCheck(len == SDL_strlen(testError),
316 SDL_strlen(testError),
318 SDLTest_AssertCheck(SDL_strcmp(lastError, testError) == 0,
320 testError,
339 const char *testError = "";
343 result = SDL_SetError("%s", testError);
352 SDLTest_AssertCheck(len == SDL_strlen(testError),
354 SDL_strlen(testError),
    [all...]
  /frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
BrowseErrorActivity.java 36 testError();
39 private void testError() {
BrowseErrorSupportActivity.java 40 testError();
43 private void testError() {
  /prebuilts/go/darwin-x86/src/text/scanner/
scanner_test.go 426 func testError(t *testing.T, src, pos, msg string, tok rune) {
453 func TestError(t *testing.T) {
454 testError(t, "\x00", "<input>:1:1", "illegal character NUL", 0)
455 testError(t, "\x80", "<input>:1:1", "illegal UTF-8 encoding", utf8.RuneError)
456 testError(t, "\xff", "<input>:1:1", "illegal UTF-8 encoding", utf8.RuneError)
458 testError(t, "a\x00", "<input>:1:2", "illegal character NUL", Ident)
459 testError(t, "ab\x80", "<input>:1:3", "illegal UTF-8 encoding", Ident)
460 testError(t, "abc\xff", "<input>:1:4", "illegal UTF-8 encoding", Ident)
462 testError(t, `"a`+"\x00", "<input>:1:3", "illegal character NUL", String)
463 testError(t, `"ab`+"\x80", "<input>:1:4", "illegal UTF-8 encoding", String
    [all...]
  /prebuilts/go/linux-x86/src/text/scanner/
scanner_test.go 426 func testError(t *testing.T, src, pos, msg string, tok rune) {
453 func TestError(t *testing.T) {
454 testError(t, "\x00", "<input>:1:1", "illegal character NUL", 0)
455 testError(t, "\x80", "<input>:1:1", "illegal UTF-8 encoding", utf8.RuneError)
456 testError(t, "\xff", "<input>:1:1", "illegal UTF-8 encoding", utf8.RuneError)
458 testError(t, "a\x00", "<input>:1:2", "illegal character NUL", Ident)
459 testError(t, "ab\x80", "<input>:1:3", "illegal UTF-8 encoding", Ident)
460 testError(t, "abc\xff", "<input>:1:4", "illegal UTF-8 encoding", Ident)
462 testError(t, `"a`+"\x00", "<input>:1:3", "illegal character NUL", String)
463 testError(t, `"ab`+"\x80", "<input>:1:4", "illegal UTF-8 encoding", String
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
BrowseErrorActivity.java 49 testError();
52 private void testError() {
  /cts/hostsidetests/incident/src/com/android/server/cts/
DiskStatsProtoTest.java 45 boolean testError = dump.getHasTestError();
46 if (testError) {
  /frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/
LogTest.java 67 public void testError() {
  /frameworks/av/media/mtp/tests/
PosixAsyncIO_test.cpp 84 TEST_F(PosixAsyncIOTest, testError) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/
HandlerBaseTest.java 122 public void testError() {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
DefaultHandlerTest.java 158 public void testError() {
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/task/
CreateManagedProfileTaskTest.java 95 public void testError() {
StartManagedProfileTaskTest.java 129 public void testError() throws Exception {
  /prebuilts/go/darwin-x86/src/bufio/
scan_test.go 308 var testError = errors.New("testError")
320 return 0, nil, testError
341 if err != testError {
342 t.Fatalf("expected %q got %v", testError, err)
356 err = testError
363 if s.Err() != testError {
  /prebuilts/go/linux-x86/src/bufio/
scan_test.go 308 var testError = errors.New("testError")
320 return 0, nil, testError
341 if err != testError {
342 t.Fatalf("expected %q got %v", testError, err)
356 err = testError
363 if s.Err() != testError {
  /external/libxml2/
check-xml-test-suite.py 184 def testError(filename, id):
332 res = testError(URI, id)
  /test/vts/runners/host/
records.py 129 def testError(self, e=None):
299 requested.testError(
  /external/autotest/client/deps/lansim/src/py/
simulator_unittest.py 164 def testError(self):
  /frameworks/base/test-runner/tests/src/android/test/
AndroidTestRunnerTest.java 247 public void testError() throws Exception {
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/provisioning/
ProfileOwnerProvisioningControllerTest.java 175 public void testError() throws Exception {
  /packages/services/Car/tests/carservice_test/src/com/android/car/
CarCabinManagerTest.java 111 public void testError() throws Exception {
CarHvacManagerTest.java 136 public void testError() throws Exception {
  /prebuilts/go/darwin-x86/src/encoding/gob/
codec_test.go 44 // testError is meant to be used as a deferred function to turn a panic(gobError) into a
46 func testError(t *testing.T) {
60 defer testError(t)
85 defer testError(t)
324 defer testError(t)
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
codec_test.go 44 // testError is meant to be used as a deferred function to turn a panic(gobError) into a
46 func testError(t *testing.T) {
60 defer testError(t)
85 defer testError(t)
324 defer testError(t)
    [all...]
  /prebuilts/go/darwin-x86/src/archive/tar/
tar_test.go 24 type testError struct{ error }
70 return 0, testError{fmt.Errorf("got Write(%q), want Write(%q)", b, s)}
94 return 0, testError{fmt.Errorf("got Seek(%d, %d), want Seek(%d, %d)", pos, whence, s, io.SeekCurrent)}

Completed in 366 milliseconds

1 2