HomeSort by relevance Sort by last modified time
    Searched refs:col (Results 76 - 100 of 277) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/e2fsprogs/debugfs/
ls.c 36 int col; member in struct:list_dir_struct
103 if (ls->col + thislen > 80) {
105 ls->col = 0;
108 ls->col += thislen;
153 ls.col = 0;
  /external/icu4c/tools/toolutil/
writesrc.c 104 int32_t i, col; local
126 for(i=col=0; i<length; ++i, ++col) {
128 if(col<16) {
132 col=0;
  /external/jpeg/
jddctmgr.c 177 * coefficients scaled by scalefactor[row]*scalefactor[col], where
211 * coefficients scaled by scalefactor[row]*scalefactor[col], where
216 int row, col; local
224 for (col = 0; col < DCTSIZE; col++) {
227 aanscalefactor[row] * aanscalefactor[col]);
jquant1.c 468 JDIMENSION col; local
475 for (col = width; col > 0; col--) {
498 JDIMENSION col; local
504 for (col = width; col > 0; col--) {
528 JDIMENSION col; local
543 for (col = width; col > 0; col--)
581 JDIMENSION col; local
631 JDIMENSION col; local
    [all...]
rdbmp.c 127 register JDIMENSION col; local
138 for (col = cinfo->image_width; col > 0; col--) {
156 register JDIMENSION col; local
169 for (col = cinfo->image_width; col > 0; col--) {
194 JDIMENSION row, col; local
208 for (col = source->row_width; col > 0; col--)
    [all...]
wrbmp.c 78 register JDIMENSION col; local
92 for (col = cinfo->output_width; col > 0; col--) {
113 register JDIMENSION col; local
125 for (col = cinfo->output_width; col > 0; col--) {
351 register JDIMENSION col; local
370 for (col = dest->row_width; col > 0; col--)
    [all...]
jdmerge.c 259 JDIMENSION col; local
273 for (col = cinfo->output_width >> 1; col > 0; col--) {
318 JDIMENSION col; local
334 for (col = cinfo->output_width >> 1; col > 0; col--) {
382 JDIMENSION col; local
400 for (col = cinfo->output_width >> 1; col > 0; col--)
456 JDIMENSION col; local
532 JDIMENSION col; local
617 JDIMENSION col; local
    [all...]
  /external/webkit/WebCore/rendering/
RenderTable.h 42 int getColumnPos(int col) const { return m_columnPos[col]; }
92 int colToEffCol(int col) const
96 for (int c = 0; c < col && i < effCol; ++i)
115 RenderTableCol* colElement(int col, bool* startEdge = 0, bool* endEdge = 0) const;
RenderTableCell.h 46 int col() const { return m_column; } function in class:WebCore::RenderTableCell
47 void setCol(int col) { m_column = col; }
RenderTreeAsText.cpp 271 Color col = o.style()->borderTopColor(); local
272 if (!col.isValid())
273 col = o.style()->color();
274 ts << col.name() << ")";
285 Color col = o.style()->borderRightColor(); local
286 if (!col.isValid())
287 col = o.style()->color();
288 ts << col.name() << ")";
299 Color col = o.style()->borderBottomColor(); local
300 if (!col.isValid()
313 Color col = o.style()->borderLeftColor(); local
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CursorBackedSuggestionCursor.java 257 * @param col Column index.
260 protected String getStringOrNull(int col) {
262 if (col == -1) {
266 return mCursor.getString(col);
281 int col = getColumnIndex(colName); local
282 return getStringOrNull(col);
  /external/chromium/third_party/icu/source/test/intltest/
tscoll.cpp 137 IntlTestCollator::doTestVariant(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result)
141 UCollator *myCollation = (UCollator *)((RuleBasedCollator *)col)->getUCollator();
143 Collator::EComparisonResult compareResult = col->compare(source, target);
146 col->getCollationKey(source, srckey, status);
147 col->getCollationKey(target, tgtkey, status);
250 IntlTestCollator::doTest(Collator* col, const UChar *source, const UChar *target, Collator::EComparisonResult result) {
251 doTest(col, UnicodeString(source), UnicodeString(target), result);
255 IntlTestCollator::doTest(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result)
257 if(col) {
258 doTestVariant(col, source, target, result)
    [all...]
canittst.cpp 253 UnicodeString CanonicalIteratorTest::collectionToString(Hashtable *col) {
258 UnicodeString **resArray = new UnicodeString*[col->count()];
264 ne = col->nextElement(el);
270 ne = col->nextElement(el);
273 for(i = 0; i<col->count(); ++i) {
277 qsort(resArray, col->count(), sizeof(UnicodeString *), compareUnicodeStrings);
281 for(i = 1; i<col->count(); ++i) {
287 Iterator it = col.iterator();
  /external/icu4c/test/intltest/
tscoll.cpp 140 IntlTestCollator::doTestVariant(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result)
144 UCollator *myCollation = (UCollator *)((RuleBasedCollator *)col)->getUCollator();
146 Collator::EComparisonResult compareResult = col->compare(source, target);
149 col->getCollationKey(source, srckey, status);
150 col->getCollationKey(target, tgtkey, status);
253 IntlTestCollator::doTest(Collator* col, const UChar *source, const UChar *target, Collator::EComparisonResult result) {
254 doTest(col, UnicodeString(source), UnicodeString(target), result);
258 IntlTestCollator::doTest(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result)
260 if(col) {
261 doTestVariant(col, source, target, result)
    [all...]
canittst.cpp 257 UnicodeString CanonicalIteratorTest::collectionToString(Hashtable *col) {
262 UnicodeString **resArray = new UnicodeString*[col->count()];
268 ne = col->nextElement(el);
274 ne = col->nextElement(el);
277 for(i = 0; i<col->count(); ++i) {
281 qsort(resArray, col->count(), sizeof(UnicodeString *), compareUnicodeStrings);
285 for(i = 1; i<col->count(); ++i) {
291 Iterator it = col.iterator();
  /libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 646 int col = ((Integer) h.get("name")).intValue(); local
648 if (r0[col].compareTo(columnNamePattern) != 0) {
656 row[3] = r0[col];
657 col = ((Integer) h.get("type")).intValue();
658 String typeStr = r0[col];
667 col = ((Integer) h.get("dflt_value")).intValue();
668 row[12] = r0[col];
672 col = ((Integer) h.get("cid")).intValue();
673 row[16] = Integer.toString(Integer.parseInt(r0[col]) + 1); // android-changed
674 col = ((Integer) h.get("notnull")).intValue()
777 int col = ((Integer) h0.get("unique")).intValue(); local
896 int col = ((Integer) h0.get("unique")).intValue(); local
956 int col = ((Integer) h0.get("type")).intValue(); local
989 int col = ((Integer) h0.get("table")).intValue(); local
1316 int col = ((Integer) h0.get("unique")).intValue(); local
    [all...]
  /external/srec/srec/clib/
matrix_i.c 46 double *col, **input; local
56 col = (double *) CALLOC(dim, sizeof(double), "clib.col");
69 col[ii] = 0;
70 col[jj] = 1;
71 lubksb(input, dim, index, col);
73 inv[ii][jj] = col[ii];
78 FREE((char *)col);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceExplorerView.java 280 TreeColumn col = new TreeColumn(parent, style); local
283 col.setWidth(fixedSize);
284 col.setResizable(false);
290 col.setText(sample_text);
291 col.pack();
295 prefs.setValue(pref_name, col.getWidth());
298 col.setWidth(prefs.getInt(pref_name));
304 col.addControlListener(new ControlListener() {
320 col.setText(header);
  /external/quake/quake/src/QW/client/
gl_ngraph.c 64 int row, col; local
70 col = num&15;
71 source = draw_chars + (row<<10) + (col<<3);
  /external/webkit/WebCore/html/
HTMLTableColElement.cpp 85 RenderTableCol* col = toRenderTableCol(renderer()); local
87 if (newWidth != col->width())
88 col->setNeedsLayoutAndPrefWidthsRecalc();
  /frameworks/base/core/jni/
CursorWindow.cpp 307 bool CursorWindow::putLong(unsigned int row, unsigned int col, int64_t value)
309 field_slot_t * fieldSlot = getFieldSlotWithCheck(row, col);
331 bool CursorWindow::putDouble(unsigned int row, unsigned int col, double value)
333 field_slot_t * fieldSlot = getFieldSlotWithCheck(row, col);
355 bool CursorWindow::putNull(unsigned int row, unsigned int col)
357 field_slot_t * fieldSlot = getFieldSlotWithCheck(row, col);
368 bool CursorWindow::getLong(unsigned int row, unsigned int col, int64_t * valueOut)
370 field_slot_t * fieldSlot = getFieldSlotWithCheck(row, col);
383 bool CursorWindow::getDouble(unsigned int row, unsigned int col, double * valueOut)
385 field_slot_t * fieldSlot = getFieldSlotWithCheck(row, col);
    [all...]
  /packages/apps/Phone/src/com/android/phone/
ButtonGridLayout.java 154 for (int col = 0; col < COLUMNS; col++) {
  /external/libvpx/vp8/common/
entropymode.c 38 int lez = (l->row == 0 && l->col == 0);
39 int aez = (a->row == 0 && a->col == 0);
40 int lea = (l->row == a->row && l->col == a->col);
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameActivity.java 191 int col = -1; local
210 col = i;
221 if (col != -1 || row != -1 || diag != -1) {
222 setFinished(player, col, row, diag);
234 private void setFinished(State player, int col, int row, int diagonal) {
239 mGameView.setFinished(col, row, diagonal);
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 504 int col = pos - (row * mColumns); local
507 + (col * (mSpec.mCellWidth + mSpec.mCellSpacing));
524 int col = Math.min(mColumns - 1, local
526 return (row * mColumns) + col;
697 int col = mCurrentSelection - (row * mColumns); local
701 int xPos = leftSpacing + (col * (mSpec.mCellWidth + spacing));
795 int col = pos - row * mColumns; local
799 blk.cancelRequest(col);
881 int col = index - (row * mColumns); local
884 if ((blk.mCompletedMask & (1 << col)) != 0)
    [all...]

Completed in 845 milliseconds

1 2 34 5 6 7 8 91011>>