Searched refs:fc (Results 1 - 13 of 13) sorted by relevance

/dalvik/libcore/sql/src/main/java/SQLite/
H A DFunction.java13 * public void function(SQLite.FunctionContext fc, String args[]) {
16 * fc.set_result(Math.sin(d.doubleValue()));
18 * fc.set_error("sin(" + args[0] + "):" + e);
36 * @param fc function's context for reporting result
40 public void function(FunctionContext fc, String args[]); argument
45 * @param fc function's context for reporting result
49 public void step(FunctionContext fc, String args[]); argument
54 * @param fc function's context for reporting result
57 public void last_step(FunctionContext fc); argument
/dalvik/libcore/sql/src/test/java/tests/support/
H A DMockFunction.java35 public void function(FunctionContext fc, String args[]) { argument
38 fc.set_result(args[0].toLowerCase());
42 public void step(FunctionContext fc, String args[]) { argument
50 public void last_step(FunctionContext fc) { argument
52 fc.set_result(acc.toString());
/dalvik/libcore/sql/src/test/java/tests/SQLite/
H A DFunctionContextTest.java291 public void function(FunctionContext fc, String args[]) { argument
293 fc.set_error(errorMsg);
296 public void last_step(FunctionContext fc) { argument
301 public void step(FunctionContext fc, String[] args) { argument
311 public void function(FunctionContext fc, String args[]) { argument
313 noOfRows = fc.count();
314 fc.set_result(noOfRows);
317 public void last_step(FunctionContext fc) { argument
322 public void step(FunctionContext fc, String[] args) { argument
332 public void function(FunctionContext fc, Strin argument
337 last_step(FunctionContext fc) argument
342 step(FunctionContext fc, String[] args) argument
352 function(FunctionContext fc, String args[]) argument
358 last_step(FunctionContext fc) argument
363 step(FunctionContext fc, String[] args) argument
373 function(FunctionContext fc, String args[]) argument
379 last_step(FunctionContext fc) argument
384 step(FunctionContext fc, String[] args) argument
394 function(FunctionContext fc, String args[]) argument
400 last_step(FunctionContext fc) argument
405 step(FunctionContext fc, String[] args) argument
416 function(FunctionContext fc, String args[]) argument
422 last_step(FunctionContext fc) argument
427 step(FunctionContext fc, String[] args) argument
[all...]
H A DDatabaseTest.java1734 public void function(FunctionContext fc, String args[]) { argument
1736 fc.set_result(Math.sin(d.doubleValue()));
1739 public void last_step(FunctionContext fc) { argument
1744 public void step(FunctionContext fc, String[] args) { argument
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/
H A DMappedByteBufferTest.java52 FileChannel fc; field in class:MappedByteBufferTest
172 fc = raf.getChannel();
173 capacity = (int) fc.size();
174 buf = fc.map(FileChannel.MapMode.READ_WRITE, 0, capacity);
179 fc.close();
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_Format.java138 FieldContainer fc = (FieldContainer) obj;
139 return (start == fc.start && end == fc.end
140 && attribute == fc.attribute && value.equals(fc.value));
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DSupport_Format.java138 FieldContainer fc = (FieldContainer) obj;
139 return (start == fc.start && end == fc.end
140 && attribute == fc.attribute && value.equals(fc.value));
/dalvik/dx/src/com/android/dx/rop/code/
H A DRegisterSpec.java165 ForComparison fc = (ForComparison) other;
166 return equals(fc.reg, fc.type, fc.local);
/dalvik/libcore/sql/src/test/java/tests/java/sql/
H A DQueryTimeoutTest.java669 public void function(FunctionContext fc, String[] args) { argument
677 fc.set_result(value);
681 public void last_step(FunctionContext fc) { argument
686 public void step(FunctionContext fc, String[] args) { argument
/dalvik/libcore/text/src/main/java/java/text/
H A DMessageFormat.java540 FieldContainer fc = fields.elementAt(i);
541 as.addAttribute(fc.attribute, fc.value, fc.start, fc.end);
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DRandomAccessFileTest.java214 FileChannel fc = raf.getChannel();
218 assertTrue("Test 1: Channel position expected to be 0.", fc.position() == 0);
222 testLength, fc.position());
224 fc.position() == raf.getFilePointer());
/dalvik/libcore/sql/src/main/native/
H A Dsqlite_jni.c84 jobject fc; /* FunctionContext object */ member in struct:hfunc
777 if (f->fc) {
778 (*env)->SetLongField(env, f->fc,
783 delglobrefp(env, &f->fc);
1624 (*env)->CallVoidMethod(env, f->fi, mid, f->fc, arr);
1657 (*env)->CallVoidMethod(env, f->fi, mid, f->fc);
1701 (*env)->CallVoidMethod(env, f->fi, mid, f->fc, arr);
1734 (*env)->CallVoidMethod(env, f->fi, mid, f->fc);
1748 jobject fc; local
1755 fc
[all...]
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DScannerTest.java305 FileChannel fc = new FileOutputStream(tmpFile).getChannel();
306 s = new Scanner(fc);
334 FileChannel fc = new FileOutputStream(tmpFile).getChannel();
335 s = new Scanner(fc, Charset.defaultCharset().name());
339 fc = new FileOutputStream(tmpFile).getChannel();
341 s = new Scanner(fc, "invalid charset");
346 fc.close();
367 s = new Scanner(fc, null);
410 FileChannel fc = fos.getChannel();
411 s = new Scanner(fc);
[all...]

Completed in 302 milliseconds