HomeSort by relevance Sort by last modified time
    Searched defs:testcase (Results 76 - 94 of 94) sorted by null

1 2 34

  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl16.c 74 } testcase; typedef in typeref:struct:__anon26683
76 static testcase testcases[] = {
262 static testcase *thiscase;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/wifiaware/testcase/
DataPathInBandTestCase.java 17 package com.android.cts.verifier.wifiaware.testcase;
  /external/clang/test/CodeGenCXX/
cxx0x-initializer-stdinitializerlist.cpp 495 struct testcase { struct in namespace:B19773010
496 testcase(std::initializer_list<pair<const char *, E>>);
500 testcase a{{"", ENUM_CONSTANT}};
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
AstroTest.java 361 double testcase[][] = {{2012, 5, 20 , 16 , 48, 59}, local
375 for(int i=0; i<testcase.length; i++){
377 String testString = "CASE["+i+"]: Year "+(int)testcase[i][0]+" Month "+(int)testcase[i][1]+" Day "+
378 (int)testcase[i][2]+" Hour "+(int)testcase[i][3]+" Minutes "+(int)testcase[i][4]+
379 " Seconds "+(int)testcase[i][5];
380 gc.set((int)testcase[i][0],(int)testcase[i][1]-1,(int)testcase[i][2],(int)testcase[i][3],(int)testcase[i][4], (int)testcase[i][5])
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
AstroTest.java 360 double testcase[][] = {{2012, 5, 20 , 16 , 48, 59}, local
374 for(int i=0; i<testcase.length; i++){
376 String testString = "CASE["+i+"]: Year "+(int)testcase[i][0]+" Month "+(int)testcase[i][1]+" Day "+
377 (int)testcase[i][2]+" Hour "+(int)testcase[i][3]+" Minutes "+(int)testcase[i][4]+
378 " Seconds "+(int)testcase[i][5];
379 gc.set((int)testcase[i][0],(int)testcase[i][1]-1,(int)testcase[i][2],(int)testcase[i][3],(int)testcase[i][4], (int)testcase[i][5])
    [all...]
  /external/valgrind/memcheck/tests/
vcpu_fbench.c 330 static double testcase[4][4] = { variable
745 s[i + 1][j + 1] = testcase[i][j];
  /external/valgrind/perf/
fbench.c 326 static double testcase[4][4] = { variable
741 s[i + 1][j + 1] = testcase[i][j];
  /hardware/qcom/camera/msm8998/QCamera2/HAL3/test/
QCameraHAL3Base.h 132 int testcase; member in struct:qcamera::__anon43756
173 void hal3appCheckStream(int testcase, int camid);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServer.java 28 import junit.framework.TestCase;
85 TestCase testcase = null; field in class:Support_HttpServer
87 public Support_HttpServer(Support_ServerSocket serversocket, TestCase test) {
89 this.testcase = test;
  /external/curl/tests/server/
tftpd.c 105 struct testcase { struct
271 static void read_ahead(struct testcase *test, int convert);
273 static ssize_t write_behind(struct testcase *test, int convert);
277 static int do_tftp(struct testcase *test, struct tftphdr *tp, ssize_t size);
279 static int validate_access(struct testcase *test, const char *fname, int mode);
281 static void sendtftp(struct testcase *test, struct formats *pf);
283 static void recvtftp(struct testcase *test, struct formats *pf);
453 static int readit(struct testcase *test, struct tftphdr **dpp,
473 static void read_ahead(struct testcase *test,
533 static int writeit(struct testcase *test, struct tftphdr * volatile *dpp
    [all...]
  /external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
TestConversion.java 53 int caseNr; // testcase index
114 DataMap testcase = (DataMap) iter.next(); local
117 TestToUnicode(testcase, testToUnicode);
121 TestFromUnicode(testcase, testFromUnicode);
124 TestGetUnicodeSet(testcase);
136 private void TestFromUnicode(DataMap testcase, int caseNr) {
143 cc.charset = ((ICUResourceBundle) testcase.getObject("charset")).getString();
144 cc.unicode = ((ICUResourceBundle) testcase.getObject("unicode")).getString();
145 cc.bytes = ((ICUResourceBundle) testcase.getObject("bytes")).getBinary();
146 cc.offsets = ((ICUResourceBundle) testcase.getObject("offsets")).getIntVector()
    [all...]
  /test/vts/runners/target/gtest/
gtest_main.cpp 149 class TestCase {
151 TestCase() {} // For std::vector<TestCase>.
152 explicit TestCase(const char* name) : name_(name) {}
243 std::vector<TestCase>& testcase_list) {
281 testcase_list.push_back(TestCase(start));
296 const std::vector<TestCase>& testcase_list, size_t iteration,
305 for (const auto& testcase : testcase_list) {
306 test_count += testcase.TestCount();
316 static void OnTestEndPrint(const TestCase& testcase, size_t test_id)
491 auto& testcase = testcase_list[i]; local
517 auto& testcase = testcase_list[i]; local
726 TestCase& testcase = testcase_list[child_proc.testcase_id]; local
904 TestCase& testcase = testcase_list[testcase_id]; local
    [all...]
  /bionic/tests/
gtest_main.cpp 177 class TestCase {
179 TestCase() {} // For std::vector<TestCase>.
180 explicit TestCase(const char* name) : name_(name) {}
271 static bool EnumerateTests(int argc, char** argv, std::vector<TestCase>& testcase_list) {
308 testcase_list.push_back(TestCase(start));
320 static void OnTestIterationStartPrint(const std::vector<TestCase>& testcase_list, size_t iteration,
329 for (const auto& testcase : testcase_list) {
330 test_count += testcase.TestCount();
343 static void OnTestEndPrint(const TestCase& testcase, size_t test_id)
540 auto& testcase = testcase_list[i]; local
562 auto& testcase = testcase_list[i]; local
756 TestCase& testcase = testcase_list[child_proc.testcase_id]; local
922 TestCase& testcase = testcase_list[testcase_id]; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnumtst.c 67 #define TESTCASE(x) addTest(root, &x, "tsformat/cnumtst/" #x)
71 TESTCASE(TestNumberFormat);
72 TESTCASE(TestSpelloutNumberParse);
73 TESTCASE(TestSignificantDigits);
74 TESTCASE(TestSigDigRounding);
75 TESTCASE(TestNumberFormatPadding);
76 TESTCASE(TestInt64Format);
77 TESTCASE(TestNonExistentCurrency);
78 TESTCASE(TestCurrencyRegression);
79 TESTCASE(TestTextAttributeCrash)
1921 const char *testcase; local
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 11262 # define testcase macro
11264 # define testcase macro
145742 # define testcase macro
164578 # define testcase macro
182614 #define testcase macro
    [all...]
  /external/sqlite/dist/
sqlite3.c 11262 # define testcase macro
11264 # define testcase macro
145742 # define testcase macro
164590 # define testcase macro
182626 #define testcase macro
    [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 

Completed in 784 milliseconds

1 2 34