Home | History | Annotate | Download | only in androidfw

Lines Matching full:column

46  * FieldSlot per column, which has the size, offset, and type of the data for that field.
104 status_t putBlob(uint32_t row, uint32_t column, const void* value, size_t size);
105 status_t putString(uint32_t row, uint32_t column, const char* value, size_t sizeIncludingNull);
106 status_t putLong(uint32_t row, uint32_t column, int64_t value);
107 status_t putDouble(uint32_t row, uint32_t column, double value);
108 status_t putNull(uint32_t row, uint32_t column);
111 * Gets the field slot at the specified row and column.
112 * Returns null if the requested row or column is not in the window.
114 FieldSlot* getFieldSlot(uint32_t row, uint32_t column);
187 status_t putBlobOrString(uint32_t row, uint32_t column,