Searched defs:prog (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/tools/aapt/
H A DMain.cpp187 char *prog = argv[0]; local
259 printf("%s: Images with deviation <= %d will be forced to grayscale.\n", prog, tolerance);
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java169 * @param prog the program to bind the object to
173 public static void bindObjectToProgram(SQLiteProgram prog, int index, argument
176 prog.bindNull(index);
178 prog.bindDouble(index, ((Number)value).doubleValue());
180 prog.bindLong(index, ((Number)value).longValue());
184 prog.bindLong(index, 1);
186 prog.bindLong(index, 0);
189 prog.bindBlob(index, (byte[]) value);
191 prog.bindString(index, value.toString());
622 SQLiteStatement prog
634 longForQuery(SQLiteStatement prog, String[] selectionArgs) argument
662 stringForQuery(SQLiteStatement prog, String[] selectionArgs) argument
[all...]

Completed in 68 milliseconds