HomeSort by relevance Sort by last modified time
    Searched full:colindex (Results 1 - 22 of 22) sorted by null

  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java 1001 public void updateNull(int colIndex) throws SQLException {
1003 if (tr == null || colIndex < 1 || colIndex > tr.ncolumns) {
1004 throw new SQLException("column " + colIndex + " not found");
1007 rowbuf[colIndex - 1] = null;
1010 public void updateBoolean(int colIndex, boolean b) throws SQLException {
1011 updateString(colIndex, b ? "1" : "0");
1014 public void updateByte(int colIndex, byte b) throws SQLException {
1018 public void updateShort(int colIndex, short b) throws SQLException {
1020 if (tr == null || colIndex < 1 || colIndex > tr.ncolumns)
    [all...]
  /external/dng_sdk/source/
dng_gain_map.cpp 87 real32 InterpolateEntry (uint32 colIndex);
177 real32 dng_gain_map_interpolator::InterpolateEntry (uint32 colIndex)
180 return fMap.Entry (fRowIndex1, colIndex, fPlane) * (1.0f - fRowFract) +
181 fMap.Entry (fRowIndex2, colIndex, fPlane) * ( fRowFract);
229 // implies colIndex + 1 <= lastCol, i.e. the argument to
231 uint32 colIndex = static_cast<uint32> (colIndexF);
232 real64 base = InterpolateEntry (colIndex);
233 real64 delta = InterpolateEntry (colIndex + 1) - base;
235 fValueBase = (real32) (base + delta * (colIndexF - (real64) colIndex));
239 fResetColumn = (int32) ceil (((colIndex + 1) * fMap.Spacing ().h
    [all...]
dng_gain_map.h 94 uint32 colIndex,
100 colIndex * fPlanes +
109 uint32 colIndex,
115 colIndex * fPlanes +
dng_jpeg_image.cpp 130 uint32 colIndex = tileIndex % tilesAcross;
132 dng_rect tileArea = fIFD.TileArea (rowIndex, colIndex);
dng_ifd.h 269 uint32 colIndex) const;
dng_read_image.cpp     [all...]
dng_image_writer.cpp     [all...]
dng_ifd.cpp     [all...]
dng_negative.cpp     [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
Picker.java 155 * @param colIndex Index of PickerColumn.
156 * @return PickerColumn at colIndex or null if {@link #setColumns(List)} is not called yet.
158 public PickerColumn getColumnAt(int colIndex) {
162 return mColumns.get(colIndex);
190 final int colIndex = i;
213 getPickerItemLayoutId(), getPickerItemTextViewId(), colIndex));
286 void updateColumnAlpha(int colIndex, boolean animate) {
287 VerticalGridView column = mColumnViews.get(colIndex);
295 setOrAnimateAlpha(item, (selected == i), colIndex, animate);
300 void setOrAnimateAlpha(View view, boolean selected, int colIndex,
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 247 int colIndex = cursor.getColumnIndexOrThrow(colName);
248 if (!cursor.isNull(colIndex)) {
249 retValue = cursor.getFloat(colIndex);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
gim_linear_math.h     [all...]
btBoxCollision.h 154 const btMatrix3x3 & mat, const btVector3 & vec3, int colindex)
156 return vec3[0]*mat[0][colindex] + vec3[1]*mat[1][colindex] + vec3[2]*mat[2][colindex];
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
ProxyServer.java 308 int colIndex = line.indexOf(":");
309 if (colIndex != -1) {
310 String headerName = line.substring(0, colIndex).trim();
  /frameworks/base/core/java/android/database/
DatabaseUtils.java 655 int colIndex = cursor.getColumnIndex(field);
656 if (!cursor.isNull(colIndex)) {
657 values.put(key, cursor.getInt(colIndex));
685 int colIndex = cursor.getColumnIndex(field);
686 if (!cursor.isNull(colIndex)) {
687 Long value = Long.valueOf(cursor.getLong(colIndex));
716 int colIndex = cursor.getColumnIndex(field);
717 if (!cursor.isNull(colIndex)) {
718 values.put(key, cursor.getDouble(colIndex));
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
Collision.java 232 public static float bt_mat3_dot_col(Matrix3 mat, Vector3 vec3, int colindex) {
233 return CollisionJNI.bt_mat3_dot_col(mat, vec3, colindex);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
SimplexTableau.java 376 int colIndex = columnLabels.indexOf("x" + i);
377 if (colIndex < 0) {
381 Integer basicRow = getBasicRow(colIndex);
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar 
  /external/autotest/client/tools/
html_report.py 712 // If the computed colIndex of the cell equals the sorted colIndex, flag it as sorted
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContent.java     [all...]
  /external/guice/extensions/persist/lib/
hibernate-annotations.jar 
hsqldb.jar 

Completed in 965 milliseconds