HomeSort by relevance Sort by last modified time
    Searched refs:tests (Results 676 - 700 of 4079) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/test/chromedriver/test/
unittest_util.py 72 """Returns all the tests from a given test suite."""
73 tests = []
76 tests += GetTestsFromSuite(x)
78 tests += [x]
79 return tests
95 """Returns a new filtered tests suite based on the given gtest filter.
104 """Returns a filtered list of tests based on the given gtest filter.
115 tests = []
129 tests += [test]
130 return tests
    [all...]
  /external/chromium_org/v8/tools/testrunner/network/
distro.py 32 self.tests = []
36 self.tests += suite.tests
40 self.tests.sort(cmp=lambda x, y: cmp(x.duration, y.duration))
64 # Sort tests within each shell, longest duration last (so it's
71 while len(shell.tests) > 0:
75 print("BIG FAT WARNING: Assigning tests to peers failed. "
76 "Remaining tests: %d. Going to slow mode." % len(shell.tests))
80 peers[0].ForceAddOneTest(shell.tests.pop(), shell
    [all...]
  /external/dropbear/libtomcrypt/src/mac/f9/
f9_test.c 31 } tests[] = {
59 for (x = 0; x < (int)(sizeof(tests)/sizeof(tests[0])); x++) {
61 if ((err = f9_memory(idx, tests[x].K, 16, tests[x].M, tests[x].msglen, T, &taglen)) != CRYPT_OK) {
64 if (taglen != 4 || XMEMCMP(T, tests[x].T, 4)) {
  /development/testrunner/test_defs/
test_walker.py 32 """Finds Android tests from filesystem."""
35 """Gets list of Android tests found at given path.
37 Tests are created from info found in Android.mk and AndroidManifest.xml
40 Currently supported tests are:
41 - Android application tests run via instrumentation
42 - native C/C++ tests using GTest framework. (note Android.mk must follow
45 FindTests will first scan sub-folders of path for tests. If none are found,
50 - a parent directory containing many tests:
51 ie development/samples will return tests for instrumentation's in ApiDemos,
52 ApiDemos/tests, Notepad/tests et
    [all...]
  /external/dropbear/libtomcrypt/src/modes/ctr/
ctr_test.c 15 CTR implementation, Tests again RFC 3686, Tom St Denis
28 } tests[] = {
62 for (x = 0; x < (int)(sizeof(tests)/sizeof(tests[0])); x++) {
63 if ((err = ctr_start(idx, tests[x].IV, tests[x].key, tests[x].keylen, 0, CTR_COUNTER_BIG_ENDIAN|LTC_CTR_RFC3686, &ctr)) != CRYPT_OK) {
66 if ((err = ctr_encrypt(tests[x].pt, buf, tests[x].msglen, &ctr)) != CRYPT_OK) {
70 if (XMEMCMP(buf, tests[x].ct, tests[x].msglen))
    [all...]
  /packages/apps/KeyChain/support/
Android.mk 18 LOCAL_MODULE_TAGS := tests
19 LOCAL_SRC_FILES := src/com/android/keychain/tests/support/IKeyChainServiceTestSupport.aidl
20 LOCAL_MODULE := com.android.keychain.tests.support
24 LOCAL_MODULE_TAGS := tests
27 LOCAL_STATIC_JAVA_LIBRARIES := com.android.keychain.tests.support
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sndhdr.py 45 for tf in tests:
56 tests = [] variable
76 tests.append(test_aifc)
105 tests.append(test_au)
114 tests.append(test_hcom)
127 tests.append(test_voc)
140 tests.append(test_wav)
149 tests.append(test_8svx)
158 tests.append(test_sndt)
167 tests.append(test_sndr
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sndhdr.py 45 for tf in tests:
56 tests = [] variable
76 tests.append(test_aifc)
105 tests.append(test_au)
114 tests.append(test_hcom)
127 tests.append(test_voc)
140 tests.append(test_wav)
149 tests.append(test_8svx)
158 tests.append(test_sndt)
167 tests.append(test_sndr
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
unittestresults_unittest.py 44 <testsuites tests="3" failures="0" disabled="0" errors="0" time="11.35" name="AllTests">
45 <testsuite name="RenderTableCellDeathTest" tests="3" failures="0" disabled="0" errors="0" time="0.677">
55 <testsuites tests="4" failures="1" disabled="0" errors="0" time="11.35" name="AllTests">
56 <testsuite name="RenderTableCellDeathTest" tests="4" failures="1" disabled="0" errors="0" time="0.677">
61 <failure message="Value of: scale&#x0A; Actual: 4&#x0A;Expected: 1" type=""><![CDATA[../../Source/WebKit/chromium/tests/WebFrameTest.cpp:191
73 <testsuites tests="4" failures="2" disabled="0" errors="0" time="11.35" name="AllTests">
74 <testsuite name="UnitTests" tests="4" failures="2" disable="0" errors="0" time="10.0">
76 <failure message="Value of: pi&#x0A; Actual: 3&#x0A;Expected: 3.14" type=""><![CDATA[../../Source/WebKit/chromium/tests/ClassOneTest.cpp:42
82 <failure message="Value of: e&#x0A; Actual: 2&#x0A;Expected: 2.71" type=""><![CDATA[../../Source/WebKit/chromium/tests/ClassTwoTest.cpp:30
86 <failure message="Value of: tau&#x0A; Actual: 6&#x0A;Expected: 6.28" type=""><![CDATA[../../Source/WebKit/chromium/tests/ClassTwoTest.cpp:5
    [all...]
  /external/chromium_org/v8/tools/testrunner/objects/
peer.py 38 self.tests = [] # list of TestCase objects
48 """Adds tests from |shell| to this peer.
50 Stops when self.needed_work reaches zero, or when all of shell's tests
55 while len(shell.tests) > 0 and self.needed_work > 0:
56 t = shell.tests.pop()
60 self.tests.append(t)
69 self.tests.append(test)
  /external/dropbear/libtomcrypt/src/encauth/ocb/
ocb_test.c 32 } tests[] = {
178 for (x = 0; x < (int)(sizeof(tests)/sizeof(tests[0])); x++) {
180 if ((err = ocb_encrypt_authenticate_memory(idx, tests[x].key, 16,
181 tests[x].nonce, tests[x].pt, tests[x].ptlen, outct, outtag, &len)) != CRYPT_OK) {
185 if (XMEMCMP(outtag, tests[x].tag, len) || XMEMCMP(outct, tests[x].ct, tests[x].ptlen))
    [all...]
  /external/valgrind/main/none/tests/
tls.c 74 static const struct testcase tests[] = { variable in typeref:struct:testcase
86 #define NTESTS (sizeof(tests)/sizeof(*tests))
96 pthread_create(&threads[curthread++], NULL, tls_ptr, (void *)&tests[i]);
97 pthread_create(&threads[curthread++], NULL, tls_ptr, (void *)&tests[i]);
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_test.c 41 } tests[] = {
227 for (x = 0; x < (int)(sizeof(tests)/sizeof(tests[0])); x++) {
229 if ((err = eax_encrypt_authenticate_memory(idx, tests[x].key, tests[x].keylen,
230 tests[x].nonce, tests[x].noncelen, tests[x].header, tests[x].headerlen,
231 tests[x].plaintext, tests[x].msglen, outct, outtag, &len)) != CRYPT_OK)
    [all...]
  /frameworks/wilhelm/tests/examples/
Android.mk 7 LOCAL_MODULE_TAGS := tests
31 LOCAL_MODULE_TAGS := tests
55 LOCAL_MODULE_TAGS := tests
82 LOCAL_MODULE_TAGS := tests
107 LOCAL_MODULE_TAGS := tests
131 LOCAL_MODULE_TAGS := tests
155 LOCAL_MODULE_TAGS := tests
179 LOCAL_MODULE_TAGS := tests
203 LOCAL_MODULE_TAGS := tests
227 LOCAL_MODULE_TAGS := tests
    [all...]
  /external/chromium/net/proxy/
proxy_config_unittest.cc 108 } tests[] = { local
237 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
238 config.proxy_rules().ParseFromString(tests[i].proxy_rules);
240 EXPECT_EQ(tests[i].type, config.proxy_rules().type);
241 ExpectProxyServerEquals(tests[i].single_proxy,
243 ExpectProxyServerEquals(tests[i].proxy_for_http,
245 ExpectProxyServerEquals(tests[i].proxy_for_https,
247 ExpectProxyServerEquals(tests[i].proxy_for_ftp,
249 ExpectProxyServerEquals(tests[i].fallback_proxy,
  /external/expat/tests/
minicheck.c 4 * tests. This interface is based entirely on the portion of the
42 tc->next_tcase = suite->tests;
43 suite->tests = tc;
63 tcase_test_function *new_tests = realloc(tc->tests, new_size);
65 if (new_tests != tc->tests) {
66 free(tc->tests);
67 tc->tests = new_tests;
71 tc->tests[tc->ntests] = test;
117 tc = suite->tests;
136 (tc->tests[i])()
    [all...]
  /cts/tests/core/libcore/tests/
Android.mk 22 LOCAL_PACKAGE_NAME := android.core.tests.libcore.package.tests
23 LOCAL_STATIC_JAVA_LIBRARIES := core-tests
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertPathValidator3Test.java 22 package org.apache.harmony.security.tests.java.security.cert;
34 import org.apache.harmony.security.tests.java.security.cert.CertPathBuilder1Test;
35 import org.apache.harmony.security.tests.java.security.cert.CertPathValidator1Test;
36 import org.apache.harmony.security.tests.support.SpiEngUtils;
37 import org.apache.harmony.security.tests.support.cert.MyCertPath;
38 import org.apache.harmony.security.tests.support.cert.TestUtils;
43 * Tests for <code>CertPathValidator</code> class methods.
  /external/dropbear/libtomcrypt/src/hashes/sha2/
sha224.c 81 @return CRYPT_OK if successful, CRYPT_NOP if self-tests have been disabled
91 } tests[] = {
110 for (i = 0; i < (int)(sizeof(tests) / sizeof(tests[0])); i++) {
112 sha224_process(&md, (unsigned char*)tests[i].msg, (unsigned long)strlen(tests[i].msg));
114 if (XMEMCMP(tmp, tests[i].hash, 28) != 0) {
sha384.c 83 @return CRYPT_OK if successful, CRYPT_NOP if self-tests have been disabled
93 } tests[] = {
116 for (i = 0; i < (int)(sizeof(tests) / sizeof(tests[0])); i++) {
118 sha384_process(&md, (unsigned char*)tests[i].msg, (unsigned long)strlen(tests[i].msg));
120 if (XMEMCMP(tmp, tests[i].hash, 48) != 0) {
  /external/valgrind/main/memcheck/tests/
addressable.c 3 #include "tests/sys_mman.h"
97 } tests[] = { variable in typeref:struct:test
104 static const int n_tests = sizeof(tests)/sizeof(*tests);
125 (*tests[i].test)();
143 if (1 == tests[i].faults &&
152 if (tests[i].faults == 0)
  /frameworks/base/services/input/tests/
Android.mk 1 # Build the unit tests.
5 # Build the unit tests.
34 module_tags := eng tests
  /hardware/ti/omap3/omx/
Android.mk 87 include $(TI_OMX_AUDIO)/aac_enc/tests/Android.mk
90 include $(TI_OMX_AUDIO)/wma_dec/tests/Android.mk
95 include $(TI_OMX_AUDIO)/nbamr_enc/tests/Android.mk
98 include $(TI_OMX_AUDIO)/wbamr_enc/tests/Android.mk
100 include $(TI_OMX_AUDIO)/g711_dec/tests/Android.mk
102 include $(TI_OMX_AUDIO)/g711_enc/tests/Android.mk
104 include $(TI_OMX_AUDIO)/g722_dec/tests/Android.mk
106 include $(TI_OMX_AUDIO)/g722_enc/tests/Android.mk
108 include $(TI_OMX_AUDIO)/g726_dec/tests/Android.mk
110 include $(TI_OMX_AUDIO)/g726_enc/tests/Android.m
    [all...]
  /external/chromium_org/net/http/
http_util_unittest.cc 108 } tests[] = { local
117 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
118 bool result = HttpUtil::HasHeader(tests[i].headers, tests[i].name);
119 EXPECT_EQ(tests[i].expected_result, result);
267 } tests[] = { local
275 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
276 int input_len = static_cast<int>(strlen(tests[i].input));
277 int eoh = HttpUtil::LocateEndOfHeaders(tests[i].input, input_len);
278 EXPECT_EQ(tests[i].expected_result, eoh)
286 } tests[] = { local
600 } tests[] = { local
665 } tests[] = { local
752 } tests[] = { local
    [all...]
http_content_disposition_unittest.cc 23 const FileNameCDCase tests[] = { local
113 // RFC 5987 tests with Filename* : see http://tools.ietf.org/html/rfc5987
138 // Filename* tests converted from Q-encoded tests above.
198 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
199 HttpContentDisposition header(tests[i].header, tests[i].referrer_charset);
200 EXPECT_EQ(tests[i].expected,
202 << "Failed on input: " << tests[i].header;
212 } tests[] = local
    [all...]

Completed in 3072 milliseconds

<<21222324252627282930>>