HomeSort by relevance Sort by last modified time
    Searched full:testnum (Results 1 - 25 of 26) sorted by null

1 2

  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/
ReleaseTest-API.cc 71 short FL, testNum;
184 testNum = 0;
275 testNum = atoi(argv[i + 1]);
276 printf("Fault test: %d\n", testNum);
277 if (testNum < 1 || testNum > 10) {
279 "Scenarios are numbered 1-10.\n", testNum);
442 if (testNum != 8) {
495 if (testNum != 1) {
502 if (testNum != 2
    [all...]
  /external/icu/icu4c/source/test/intltest/
itspoof.cpp 508 int testNum;
509 for (testNum = 0; testNum < UPRV_LENGTHOF(tests); testNum++) {
511 sprintf(testNumStr, "testNum = %d", testNum);
512 Test &test = tests[testNum];
573 for (testNum=0; testNum<UPRV_LENGTHOF(scriptTests); testNum++)
    [all...]
tztest.cpp     [all...]
  /frameworks/native/opengl/tests/gl_perfapp/jni/
gl_code.cpp 40 uint32_t testNum = stateClock >> 2;
43 if (testNum >= gFragmentTestCount) {
56 doSingleTest(testNum, texSize);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ChannelsTest.java 57 private final int testNum = 10;
112 ByteBuffer byteBuf = ByteBuffer.allocate(this.testNum);
114 int readres = this.testNum;
122 assertEquals(this.testNum, readres);
127 ByteBuffer byteBuf = ByteBuffer.allocate(this.testNum);
128 int readres = this.testNum;
138 assertEquals(this.testNum, readres);
145 assertEquals(this.testNum, readres);
184 int writeres = this.testNum;
204 int writeres = this.testNum;
    [all...]
DatagramChannelTest.java 135 final int testNum = 0;
163 assertEquals(testNum, readres);
165 assertEquals(testNum, readres);
    [all...]
  /external/curl/tests/
runtests.pl 261 my @teststat; # teststat[testnum]=reason, reasons for skip
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 298 private int testNum;
587 testNum = -1;
600 if ((testNum < -1) || (testNum > Support_TestWebData.tests.length - 1)) {
611 if ((testNum > 0) || (testNum < Support_TestWebData.tests.length - 1)) {
686 testNum = Integer.valueOf(testID.substring(4))-1;
689 if ((testNum < -1) || (testNum > Support_TestWebData.tests.length - 1)) {
704 if ((testNum < -1) || (testNum > Support_TestWebData.tests.length - 1))
    [all...]
  /external/curl/tests/server/
fake_ntlm.c 120 long testnum; local
173 testnum = lnum;
185 filename = test2file(testnum);
191 logmsg("Couldn't open test file %ld", testnum);
209 logmsg("Couldn't open test file %ld", testnum);
229 logmsg("Couldn't open test file %ld", testnum);
251 logmsg("Couldn't open test file %ld", testnum);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
kenny.cc 134 int16_t testNum, testCE;
236 testNum = 0;
293 testNum = atoi(argv[i + 1]);
294 printf("\nFault test: %d\n", testNum);
295 if (testNum < 1 || testNum > 10) {
297 " Valid Fault Scenarios are numbered 1-10.\n", testNum);
441 if (testNum == 10) {
458 if (testNum != 8)
492 if (testNum != 1)
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 341 private int testNum;
685 testNum = -1;
698 if ((testNum < 0) || (testNum > TestWebData.tests.length - 1)) {
709 if ((testNum > 0) || (testNum < TestWebData.tests.length - 1)) {
784 testNum = Integer.parseInt(testID.substring(4))-1;
787 if ((testNum < 0) || (testNum > TestWebData.tests.length - 1)) {
812 if (!TestWebData.testParams[testNum].testDir)
    [all...]
  /external/skia/tests/
PathOpsOpRectThreadedTest.cpp 32 static int testNum = 6;
37 testNum);
  /external/curl/tests/unit/
unit1307.c 222 int testnum = sizeof(tests) / sizeof(struct testcase); variable
225 for(i = 0; i < testnum; i++) {
  /external/icu/icu4c/source/test/cintltst/
spreptst.c 758 int32_t i, testNum = 0;
774 testNum = 0;
779 testNum++;
787 log_err("Error occurred on test[%d] for profile: %s\n", testNum, profileName);
794 log_err("Error expected on test[%d] for profile: %s\n", testNum, profileName);
798 log_err("Results do not match expected on test[%d] for profile: %s\n", testNum, profileName);
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
AnnotationTest.java 60 String testNum = name.substring(1,3); // 01
61 List<Method> mlist = curT.get(testNum);
64 curT.put(testNum, mlist);
  /prebuilts/go/darwin-x86/src/mime/multipart/
multipart_test.go 226 for testNum, expectedBody := range tests {
238 t.Errorf("Expected a body part on text %d", testNum)
242 t.Errorf("Unexpected error on text %d: %v", testNum, err)
246 expectEq(t, expectedBody, buf.String(), fmt.Sprintf("test %d", testNum))
253 t.Errorf("Unexpected part in test %d", testNum)
256 t.Errorf("On test %d expected io.EOF; got %v", testNum, err)
  /prebuilts/go/linux-x86/src/mime/multipart/
multipart_test.go 226 for testNum, expectedBody := range tests {
238 t.Errorf("Expected a body part on text %d", testNum)
242 t.Errorf("Unexpected error on text %d: %v", testNum, err)
246 expectEq(t, expectedBody, buf.String(), fmt.Sprintf("test %d", testNum))
253 t.Errorf("Unexpected part in test %d", testNum)
256 t.Errorf("On test %d expected io.EOF; got %v", testNum, err)
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneTest.java     [all...]
  /external/webrtc/webrtc/modules/audio_coding/test/
APITest.cc 417 int testNum;
422 testNum = _testNumA;
435 testNum = _testNumB;
447 //fprintf(stderr, "%c: %d \n", thread, testNum);
450 switch (testNum) {
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
WapPushTest.java     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberFormatTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberFormatTest.java     [all...]
  /prebuilts/go/darwin-x86/src/net/http/
transport_test.go 646 req.FormValue("testnum"), accept, expect)
662 req, _ := NewRequest("GET", fmt.Sprintf("%s/?testnum=%d&expect_accept=%s", ts.URL, i, test.expectAccept), nil)
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
transport_test.go 646 req.FormValue("testnum"), accept, expect)
662 req, _ := NewRequest("GET", fmt.Sprintf("%s/?testnum=%d&expect_accept=%s", ts.URL, i, test.expectAccept), nil)
    [all...]

Completed in 673 milliseconds

1 2