HomeSort by relevance Sort by last modified time
    Searched refs:testcase (Results 126 - 150 of 161) sorted by null

1 2 3 4 56 7

  /external/chromium_org/third_party/sqlite/src/src/
vdbemem.c 274 testcase( p->flags & MEM_Agg );
275 testcase( p->flags & MEM_Dyn );
276 testcase( p->flags & MEM_RowSet );
277 testcase( p->flags & MEM_Frame );
372 testcase( pMem->z==0 );
    [all...]
prepare.c 577 testcase( db->flags & SQLITE_ReadUncommitted );
590 testcase( nBytes==mxLen );
591 testcase( nBytes==mxLen+1 );
vdbeaux.c     [all...]
btree.c 915 testcase( nPayload==pPage->maxLocal );
916 testcase( nPayload==pPage->maxLocal+1 );
941 testcase( surplus==maxLocal );
942 testcase( surplus==maxLocal+1 );
    [all...]
main.c     [all...]
date.c 888 testcase( n==sizeof(zBuf)-1 );
889 testcase( n==sizeof(zBuf) );
890 testcase( n==(u64)db->aLimit[SQLITE_LIMIT_LENGTH]+1 );
891 testcase( n==(u64)db->aLimit[SQLITE_LIMIT_LENGTH] );
pager.c     [all...]
update.c 437 testcase( i==31 );
438 testcase( i==32 );
mem5.c 272 testcase( sqlite3GlobalConfig.xLog!=0 );
build.c 565 testcase( zTabName[0]==0 ); /* Zero-length table names are allowed */
    [all...]
sqliteInt.h 210 ** The testcase() macro is used to aid in coverage testing. When
212 ** testcase() must be evaluated both true and false in order to
213 ** get full branch coverage. The testcase() macro is inserted
215 ** condition/decision coverage is inadequate. For example, testcase()
217 ** bitmask tests, testcase() can be used to make sure each bit
219 ** where multiple cases go to the same block of code, testcase()
225 # define testcase(X) if( X ){ sqlite3Coverage(__LINE__); } macro
227 # define testcase(X) macro
233 ** within testcase() and assert() macros.
283 ** to fit in 32-bits. This macro is used inside of various testcase()
    [all...]
  /cts/tools/tradefed-host/res/report/
cts_result.css 146 td.testcase {
  /external/chromium_org/v8/test/webkit/
toString-elision-trailing-comma.js 40 // this is the first testcase that proves that trailing
toString-number-dot-expr.js 32 // testcase for number literal with decimal point, i.e '4.'
  /ndk/sources/android/support/tests/minitest/
minitest.h 211 class TestCase {
219 TestCase() : result_(PASS) {}
220 ~TestCase() {}
235 typedef void (TestFunction)(TestCase* testcase);
249 static void MINITEST_TEST_FUNCTION(testname, casename)(minitest::TestCase*); \
256 minitest::TestCase* minitest_testcase)
  /external/v8/tools/
test.py 340 class TestCase(object):
714 def GetVmCommand(self, testcase, mode):
715 return [self.GetVm(mode)] + self.GetVmFlags(testcase, mode)
717 def GetVmFlags(self, testcase, mode):
718 flags = testcase.GetCustomFlags(mode)
721 return testcase.variant_flags + flags
723 def GetTimeout(self, testcase, mode):
725 if '--stress-opt' in self.GetVmFlags(testcase, mode):
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 450 ** The testcase() macro is used to aid in coverage testing. When
452 ** testcase() must be evaluated both true and false in order to
453 ** get full branch coverage. The testcase() macro is inserted
455 ** condition/decision coverage is inadequate. For example, testcase()
457 ** bitmask tests, testcase() can be used to make sure each bit
459 ** where multiple cases go to the same block of code, testcase()
465 # define testcase(X) if( X ){ sqlite3Coverage(__LINE__); } macro
467 # define testcase(X) macro
473 ** within testcase() and assert() macros.
523 ** to fit in 32-bits. This macro is used inside of various testcase()
113220 # define testcase macro
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 457 ** The testcase() macro is used to aid in coverage testing. When
459 ** testcase() must be evaluated both true and false in order to
460 ** get full branch coverage. The testcase() macro is inserted
462 ** condition/decision coverage is inadequate. For example, testcase()
464 ** bitmask tests, testcase() can be used to make sure each bit
466 ** where multiple cases go to the same block of code, testcase()
472 # define testcase(X) if( X ){ sqlite3Coverage(__LINE__); } macro
474 # define testcase(X) macro
480 ** within testcase() and assert() macros.
530 ** to fit in 32-bits. This macro is used inside of various testcase()
116495 # define testcase macro
    [all...]
  /external/sqlite/dist/
sqlite3.c 457 ** The testcase() macro is used to aid in coverage testing. When
459 ** testcase() must be evaluated both true and false in order to
460 ** get full branch coverage. The testcase() macro is inserted
462 ** condition/decision coverage is inadequate. For example, testcase()
464 ** bitmask tests, testcase() can be used to make sure each bit
466 ** where multiple cases go to the same block of code, testcase()
472 # define testcase(X) if( X ){ sqlite3Coverage(__LINE__); } macro
474 # define testcase(X) macro
480 ** within testcase() and assert() macros.
530 ** to fit in 32-bits. This macro is used inside of various testcase()
116531 # define testcase macro
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
case.py 57 if not (isinstance(test_item, type) and issubclass(test_item, TestCase)):
97 """A context manager used to implement TestCase.assertRaises* methods."""
133 def __init__(self, testcase):
134 self.testcase = testcase
143 return getattr(self.testcase, value)
152 class TestCase(unittest.TestCase):
159 many test methods as are needed. When instantiating such a TestCase
163 Test authors should subclass TestCase for their own tests. Constructio
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun_unittest.cc 81 const unsigned char* testcase,
83 const char* input = reinterpret_cast<const char*>(testcase);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_aux.c 354 testcase(pCsr->filter.zTerm);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_support.py 545 def check_syntax_error(testcase, statement):
546 testcase.assertRaises(SyntaxError, compile, statement,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_support.py 545 def check_syntax_error(testcase, statement):
546 testcase.assertRaises(SyntaxError, compile, statement,
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
sandbox_bpf_unittest.cc     [all...]

Completed in 1157 milliseconds

1 2 3 4 56 7