Home
last modified time | relevance | path

Searched refs:step (Results 1 – 15 of 15) sorted by relevance

/libcore/luni/src/test/java/tests/SQLite/
DStmtTest.java144 st.step(); in testStmt()
224 st.step(); in testStep()
233 st.step(); in testStep()
260 st.step(); in testClose()
282 st.step(); in testReset()
287 st.step(); in testReset()
330 st.step(); in testBindIntInt()
334 st.step(); in testBindIntInt()
338 st.step(); in testBindIntInt()
383 st.step(); in testBindIntLong()
[all …]
DFunctionContextTest.java185 st.step(); in testSet_resultByteArray()
230 st.step(); in testSet_result_zeroblob()
301 public void step(FunctionContext fc, String[] args) { in step() method in FunctionContextTest.TestFCError
322 public void step(FunctionContext fc, String[] args) { in step() method in FunctionContextTest.TestFCCount
342 public void step(FunctionContext fc, String[] args) { in step() method in FunctionContextTest.TestFCZeroBlob
363 public void step(FunctionContext fc, String[] args) { in step() method in FunctionContextTest.TestFCString
384 public void step(FunctionContext fc, String[] args) { in step() method in FunctionContextTest.TestFCInt
405 public void step(FunctionContext fc, String[] args) { in step() method in FunctionContextTest.TestFCByteArray
427 public void step(FunctionContext fc, String[] args) { in step() method in FunctionContextTest.SinFunc
DDatabaseTest.java1141 s.step(); in testFunction_type()
1271 stat.step(); in testSet_encoding()
1518 st.step(); in testPrepare()
1600 statement2.step(); in testOpen_blob()
1694 while (vm.step(prog)) { in testProgress_handler()
1713 vm2.step(progBoundary); in testProgress_handler()
1744 public void step(FunctionContext fc, String[] args) { in step() method in DatabaseTest.SinFunc
/libcore/luni/src/test/resources/systemid/
Drecipt.dtd9 <!ELEMENT preparation (step*)>
10 <!ELEMENT step (#PCDATA)> element
/libcore/luni/src/test/resources/
Drecipt.dtd9 <!ELEMENT preparation (step*)>
10 <!ELEMENT step (#PCDATA)> element
/libcore/sqlite-jdbc/src/main/java/SQLite/
DFunction.java49 public void step(FunctionContext fc, String args[]); in step() method
DVm.java47 public native boolean step(Callback cb) throws SQLite.Exception; in step() method in Vm
DDatabase.java310 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table()
314 while (vm.step(ret)) { in get_table()
363 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table()
367 while (vm.step(ret)) { in get_table()
417 while (tbl.nrows < tbl.maxrows && vm.step(tbl)) { in get_table()
421 while (vm.step(tbl)) { in get_table()
DStmt.java69 public native boolean step() throws SQLite.Exception; in step() method in Stmt
/libcore/luni/src/test/java/tests/support/
DMockFunction.java42 public void step(FunctionContext fc, String args[]) { in step() method in MockFunction
/libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
DByteBufferTest.java2686 int nbytes = 4, bigHead, step; in bytes2int() local
2689 step = 1; in bytes2int()
2692 step = -1; in bytes2int()
2699 p += step; in bytes2int()
2705 int nbytes = 8, bigHead, step; in bytes2long() local
2708 step = 1; in bytes2long()
2711 step = -1; in bytes2long()
2718 p += step; in bytes2long()
2724 int nbytes = 2, bigHead, step; in bytes2short() local
2727 step = 1; in bytes2short()
[all …]
/libcore/luni/src/test/java/com/google/coretests/
DCoreTestSuite.java157 public CoreTestSuite(Test suite, int flags, int step, TestCase victim) { in CoreTestSuite() argument
161 fStep = step; in CoreTestSuite()
/libcore/luni/src/main/java/org/apache/xpath/
DXPathVisitor.java84 public boolean visitStep(ExpressionOwner owner, NodeTest step) in visitStep() argument
/libcore/luni/src/main/java/org/apache/xpath/axes/
DWalkerFactory.java830 StepPattern step = null; in loadSteps() local
836 step = createDefaultStepPattern(compiler, stepOpCodePos, mpi, analysis, in loadSteps()
841 firstStep = step; in loadSteps()
847 step.setRelativePathPattern(prevStep); in loadSteps()
850 prevStep = step; in loadSteps()
859 StepPattern tail = step; in loadSteps()
860 for (StepPattern pat = step; null != pat; in loadSteps()
950 System.out.println("Done loading steps: "+step.toString()); in loadSteps()
954 return step; // start from last pattern?? //firstStep; in loadSteps()
/libcore/luni/src/test/java/tests/java/sql/
DQueryTimeoutTest.java686 public void step(FunctionContext fc, String[] args) { in step() method in QueryTimeoutTest.Delay