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

/frameworks/base/core/java/android/database/
H A DCursorWindow.java127 * @param col
130 public boolean putBlob(byte[] value, int row, int col) { argument
133 return putBlob_native(value, row - mStartPos, col);
139 private native boolean putBlob_native(byte[] value, int row, int col); argument
145 * @param col
148 public boolean putString(String value, int row, int col) { argument
151 return putString_native(value, row - mStartPos, col);
157 private native boolean putString_native(String value, int row, int col); argument
163 * @param col
166 public boolean putLong(long value, int row, int col) { argument
175 putLong_native(long value, int row, int col) argument
185 putDouble(double value, int row, int col) argument
194 putDouble_native(double value, int row, int col) argument
202 putNull(int row, int col) argument
211 putNull_native(int row, int col) argument
221 isNull(int row, int col) argument
230 isNull_native(int row, int col) argument
239 getBlob(int row, int col) argument
248 getBlob_native(int row, int col) argument
257 isBlob(int row, int col) argument
273 isLong(int row, int col) argument
289 isFloat(int row, int col) argument
305 isString(int row, int col) argument
314 isBlob_native(int row, int col) argument
315 isString_native(int row, int col) argument
316 isInteger_native(int row, int col) argument
317 isFloat_native(int row, int col) argument
326 getString(int row, int col) argument
335 getString_native(int row, int col) argument
347 copyStringToBuffer(int row, int col, CharArrayBuffer buffer) argument
366 copyStringToBuffer_native( int row, int col, int bufferSize, CharArrayBuffer buffer) argument
377 getLong(int row, int col) argument
386 getLong_native(int row, int col) argument
396 getDouble(int row, int col) argument
405 getDouble_native(int row, int col) argument
415 getShort(int row, int col) argument
431 getInt(int row, int col) argument
448 getFloat(int row, int col) argument
[all...]
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DCSVFormatter.java30 for (String col : TrackerEntry.ATTRIBUTES) {
32 if (!TrackerEntry.ENTRY_TYPE.equals(col) &&
33 !TrackerEntry.ID_COL.equals(col)) {
34 csvBuilder.append(col);
/frameworks/base/core/tests/coretests/src/android/database/
H A DCursorWindowTest.java57 ArrayList<Integer> col = list.get(i);
60 int r2 = col.get(j);
71 ArrayList<Integer> col = list.get(i);
74 int r2 = col.get(j);
163 ArrayList<Integer> col = Lists.newArrayList();
164 list.add(col);
168 col.add(r);
/frameworks/base/core/jni/
H A DCursorWindow.h162 bool putLong(unsigned int row, unsigned int col, int64_t value);
163 bool putDouble(unsigned int row, unsigned int col, double value);
164 bool putNull(unsigned int row, unsigned int col);
166 bool getLong(unsigned int row, unsigned int col, int64_t * valueOut);
167 bool getDouble(unsigned int row, unsigned int col, double * valueOut);
168 bool getNull(unsigned int row, unsigned int col, bool * valueOut);
H A DCursorWindow.cpp307 bool CursorWindow::putLong(unsigned int row, unsigned int col, int64_t value) argument
309 field_slot_t * fieldSlot = getFieldSlotWithCheck(row, col);
331 bool CursorWindow::putDouble(unsigned int row, unsigned int col, double value) argument
333 field_slot_t * fieldSlot = getFieldSlotWithCheck(row, col);
355 bool CursorWindow::putNull(unsigned int row, unsigned int col) argument
357 field_slot_t * fieldSlot = getFieldSlotWithCheck(row, col);
368 bool CursorWindow::getLong(unsigned int row, unsigned int col, int64_t * valueOut) argument
370 field_slot_t * fieldSlot = getFieldSlotWithCheck(row, col);
383 bool CursorWindow::getDouble(unsigned int row, unsigned int col, double * valueOut) argument
385 field_slot_t * fieldSlot = getFieldSlotWithCheck(row, col);
398 getNull(unsigned int row, unsigned int col, bool * valueOut) argument
[all...]
H A Dandroid_database_CursorWindow.cpp135 snprintf(buf, sizeof(buf), "get field slot from row %d col %d failed", row, column);
522 static jboolean putBlob_native(JNIEnv * env, jobject object, jbyteArray value, jint row, jint col) argument
529 field_slot_t * fieldSlot = window->getFieldSlotWithCheck(row, col);
550 LOG_WINDOW("%d,%d is BLOB with %u bytes @ %d", row, col, len, offset);
554 static jboolean putString_native(JNIEnv * env, jobject object, jstring value, jint row, jint col) argument
561 field_slot_t * fieldSlot = window->getFieldSlotWithCheck(row, col);
600 LOG_WINDOW("%d,%d is TEXT with %u bytes @ %d", row, col, len, offset);
610 static jboolean putLong_native(JNIEnv * env, jobject object, jlong value, jint row, jint col) argument
613 if (!window->putLong(row, col, value)) {
618 LOG_WINDOW("%d,%d is INTEGER 0x%016llx", row, col, valu
623 putDouble_native(JNIEnv * env, jobject object, jdouble value, jint row, jint col) argument
636 putNull_native(JNIEnv * env, jobject object, jint row, jint col) argument
[all...]
/frameworks/base/core/java/android/util/
H A DDayOfMonthCursor.java63 public void setSelectedRowColumn(int row, int col) { argument
65 mColumn = col;
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_comp.cpp1719 Int row, col, i; local
1732 col = B_SIZE;
1733 while (col)
1741 col -= 4;
1743 col = B_SIZE;
1744 while (col)
1752 col -= 4;
1767 Int row, col; local
1774 col = B_SIZE;
1775 while (col)
1797 Int row, col, i; local
1865 Int row, col; local
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/
H A DSimpleCursorAdapterTest.java73 ArrayList<Integer> col = Lists.newArrayList();
74 list.add(col);
78 col.add(r);
/frameworks/base/tools/aapt/
H A DImages.cpp676 uint32_t colors[256], col; local
730 col = (uint32_t) ((rr << 24) | (gg << 16) | (bb << 8) | aa);
733 if (colors[idx] == col) {
748 colors[num_colors++] = col;
807 col = colors[idx];
808 rgbPalette[idx].red = (png_byte) ((col >> 24) & 0xff);
809 rgbPalette[idx].green = (png_byte) ((col >> 16) & 0xff);
810 rgbPalette[idx].blue = (png_byte) ((col >> 8) & 0xff);
811 alphaPalette[idx] = (png_byte) (col & 0xff);
/frameworks/base/core/java/android/app/
H A DSuggestionsAdapter.java689 int col = cursor.getColumnIndex(columnName);
690 return getStringOrNull(cursor, col);
693 private static String getStringOrNull(Cursor cursor, int col) { argument
694 if (col == NONE) {
698 return cursor.getString(col);
/frameworks/base/tools/preload/
H A Dsorttable.js81 if (!headrow[i].className.match(/\bsorttable_nosort\b/)) { // skip this col
145 col = this.sorttable_columnindex;
148 row_array[row_array.length] = [sorttable.getInnerText(rows[j].cells[col]), rows[j]];
/frameworks/base/opengl/tests/angeles/
H A Ddemo.c669 #define M(row,col) m[col*4+row]

Completed in 221 milliseconds