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

123456789

/external/libvpx/vp8/common/
H A Dmv.h18 short col; member in struct:__anon6214
H A Dfindnearmv.h34 xmv.col *= -1;
44 if (mv->col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN))
45 mv->col = xd->mb_to_left_edge - LEFT_TOP_MARGIN;
46 else if (mv->col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN)
47 mv->col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN;
/external/chromium/app/sql/
H A Dstatement.h102 bool BindNull(int col);
103 bool BindBool(int col, bool val);
104 bool BindInt(int col, int val);
105 bool BindInt64(int col, int64 val);
106 bool BindDouble(int col, double val);
107 bool BindCString(int col, const char* val);
108 bool BindString(int col, const std::string& val);
109 bool BindString16(int col, const string16& value);
110 bool BindBlob(int col, const void* value, int value_len);
123 ColType ColumnType(int col) cons
[all...]
H A Dstatement.cc71 bool Statement::BindNull(int col) { argument
73 int err = CheckError(sqlite3_bind_null(ref_->stmt(), col + 1));
79 bool Statement::BindBool(int col, bool val) { argument
80 return BindInt(col, val ? 1 : 0);
83 bool Statement::BindInt(int col, int val) { argument
85 int err = CheckError(sqlite3_bind_int(ref_->stmt(), col + 1, val));
91 bool Statement::BindInt64(int col, int64 val) { argument
93 int err = CheckError(sqlite3_bind_int64(ref_->stmt(), col + 1, val));
99 bool Statement::BindDouble(int col, double val) { argument
101 int err = CheckError(sqlite3_bind_double(ref_->stmt(), col
107 BindCString(int col, const char* val) argument
116 BindString(int col, const std::string& val) argument
125 BindString16(int col, const string16& value) argument
129 BindBlob(int col, const void* val, int val_len) argument
226 ColumnBlobAsString(int col, std::string* blob) argument
241 ColumnBlobAsVector(int col, std::vector<char>* val) const argument
256 ColumnBlobAsVector( int col, std::vector<unsigned char>* val) const argument
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_CollectionTest.java28 Collection<Integer> col; // must contain the Integers 0 to 99 field in class:Support_CollectionTest
36 col = c;
41 new Support_UnmodifiableCollectionTest("", col).runTest();
50 assertTrue("CollectionTest - a) add did not work", col.add(new Integer(
52 assertTrue("CollectionTest - b) add did not work", col
56 assertTrue("CollectionTest - a) remove did not work", col
58 assertTrue("CollectionTest - b) remove did not work", !col
62 assertTrue("CollectionTest - a) addAll failed", col
64 assertTrue("CollectionTest - b) addAll failed", col
68 assertTrue("CollectionTest - a) containsAll failed", col
[all...]
H A DSupport_UnmodifiableCollectionTest.java29 Collection<Integer> col; field in class:Support_UnmodifiableCollectionTest
40 col = c;
47 assertTrue("UnmodifiableCollectionTest - should contain 0", col
49 assertTrue("UnmodifiableCollectionTest - should contain 50", col
51 assertTrue("UnmodifiableCollectionTest - should not contain 100", !col
61 col.containsAll(hs));
65 !col.containsAll(hs));
68 assertTrue("UnmodifiableCollectionTest - should not be empty", !col
72 Iterator<Integer> it = col.iterator();
89 + col
[all...]
/external/qemu-pc-bios/bochs/bios/
H A Dmakesym.perl24 foreach $col (0,1) {
25 next if length $addr[$col] < 1;
26 $addr[$col] =~ tr/A-Z/a-z/;
27 $addr[$col] = "000f" . $addr[$col];
28 print "$addr[$col] $name[$col]\n";
/external/webkit/Source/WebCore/platform/sql/
H A DSQLiteStatement.h76 bool isColumnNull(int col);
77 String getColumnName(int col);
78 SQLValue getColumnValue(int col);
79 String getColumnText(int col);
80 double getColumnDouble(int col);
81 int getColumnInt(int col);
82 int64_t getColumnInt64(int col);
83 const void* getColumnBlob(int col, int& size);
84 String getColumnBlobAsString(int col);
85 void getColumnBlobAsVector(int col, Vecto
[all...]
H A DSQLiteStatement.cpp278 bool SQLiteStatement::isColumnNull(int col) argument
280 ASSERT(col >= 0);
284 if (columnCount() <= col)
287 return sqlite3_column_type(m_statement, col) == SQLITE_NULL;
290 String SQLiteStatement::getColumnName(int col) argument
292 ASSERT(col >= 0);
296 if (columnCount() <= col)
298 return String(reinterpret_cast<const UChar*>(sqlite3_column_name16(m_statement, col)));
301 SQLValue SQLiteStatement::getColumnValue(int col) argument
303 ASSERT(col >
329 getColumnText(int col) argument
340 getColumnDouble(int col) argument
351 getColumnInt(int col) argument
362 getColumnInt64(int col) argument
373 getColumnBlobAsString(int col) argument
395 getColumnBlobAsVector(int col, Vector<char>& result) argument
421 getColumnBlob(int col, int& size) argument
449 returnTextResults(int col, Vector<String>& v) argument
471 returnIntResults(int col, Vector<int>& v) argument
491 returnInt64Results(int col, Vector<int64_t>& v) argument
511 returnDoubleResults(int col, Vector<double>& v) argument
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DStmt.java173 * @param col column number, 0-based
177 public native int column_int(int col) throws SQLite.Exception; argument
181 * @param col column number, 0-based
184 public native long column_long(int col) throws SQLite.Exception; argument
188 * @param col column number, 0-based
191 public native double column_double(int col) throws SQLite.Exception; argument
195 * @param col column number, 0-based
198 public native byte[] column_bytes(int col) throws SQLite.Exception; argument
202 * @param col column number, 0-based
205 public native String column_string(int col) throw argument
212 column_type(int col) argument
227 column(int col) argument
247 column_table_name(int col) argument
255 column_database_name(int col) argument
263 column_decltype(int col) argument
271 column_origin_name(int col) argument
[all...]
/external/webkit/Source/WebCore/html/
H A DDataGridColumnList.cpp80 void DataGridColumnList::remove(DataGridColumn* col) argument
82 size_t index = m_columns.find(col);
86 if (col == m_primaryColumn)
88 if (col == m_sortColumn)
90 col->setColumnList(0);
94 void DataGridColumnList::move(DataGridColumn* col, unsigned long index) argument
96 size_t colIndex = m_columns.find(col);
99 m_columns.insert(index, col);
114 void DataGridColumnList::primaryColumnChanged(DataGridColumn* col) argument
116 if (col
[all...]
/external/stlport/test/unit/
H A Dcollate_facets_test.cpp20 collate<char> const& col = use_facet<collate<char> >(locale::classic()); local
27 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 1) == 0 );
28 CPPUNIT_ASSERT( col.compare(str1, str1 + size1, str2, str2 + size2) == -1 );
31 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 2, str2, str2 + size2 - 1) == -1 );
32 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 2) == 1 );
40 collate<char> const& col = use_facet<collate<char> >(loc); local
47 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 1) == 0 );
48 CPPUNIT_ASSERT( col.compare(str1, str1 + size1, str2, str2 + size2) == -1 );
51 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 2, str2, str2 + size2 - 1) == -1 );
52 CPPUNIT_ASSERT( col
56 collate<char> const& col = use_facet<collate<char> >(loc); local
87 collate<wchar_t> const& col = use_facet<collate<wchar_t> >(loc); local
104 collate<wchar_t> const& col = use_facet<collate<wchar_t> >(loc); local
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
H A DCertStoreCollectionSpi.java38 List col = new ArrayList();
49 col.add(obj);
61 col.add(obj);
66 return col;
74 List col = new ArrayList();
85 col.add(obj);
97 col.add(obj);
102 return col;
/external/libvpx/vp8/encoder/
H A Dmcomp.c43 return ((mvcost[0][(mv->row - ref->row) >> 1] + mvcost[1][(mv->col - ref->col) >> 1]) * Weight) >> 7;
49 //return ((mvcost[0][(mv->row - ref->row)>>1] + mvcost[1][(mv->col - ref->col)>>1] + 128) * error_per_bit) >> 8;
53 return ((mvcost[0][(mv->row - ref->row) >> 1] + mvcost[1][(mv->col - ref->col) >> 1]) * error_per_bit + 128) >> 8;
62 return ((mvcost[0][(mv->row - ref->row) >> 1] + mvcost[1][(mv->col - ref->col)>> 1]) + 128) >> 8;
73 x->ss[search_site_count].mv.col = 0;
82 x->ss[search_site_count].mv.col
[all...]
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCResultSet.java229 int col = findColumn(columnName);
230 return getString(col);
256 int col = findColumn(columnName);
257 return getInt(col);
266 int col = findColumn(columnName);
267 return getBoolean(col);
300 int col = findColumn(columnName);
301 return getShort(col);
337 int col = findColumn(columnName);
338 return getTime(col);
[all...]
/external/jpeg/
H A Djccolor.c141 register JDIMENSION col; local
150 for (col = 0; col < num_cols; col++) {
161 outptr0[col] = (JSAMPLE)
165 outptr1[col] = (JSAMPLE)
169 outptr2[col] = (JSAMPLE)
197 register JDIMENSION col; local
204 for (col = 0; col < num_col
236 register JDIMENSION col; local
288 register JDIMENSION col; local
347 register JDIMENSION col; local
359 int col = num_cols; local
[all...]
H A Djdcolor.c147 register JDIMENSION col; local
163 for (col = 0; col < num_cols; col++) {
164 y = GETJSAMPLE(inptr0[col]);
165 cb = GETJSAMPLE(inptr1[col]);
166 cr = GETJSAMPLE(inptr2[col]);
188 register JDIMENSION col; local
204 for (col = 0; col < num_col
229 register JDIMENSION col; local
301 register JDIMENSION col; local
377 register JDIMENSION col; local
403 register JDIMENSION col; local
454 register JDIMENSION col; local
562 register JDIMENSION col; local
583 register JDIMENSION col; local
604 register JDIMENSION col; local
641 register JDIMENSION col; local
697 register JDIMENSION col; local
[all...]
H A Drdppm.c148 JDIMENSION col; local
151 for (col = cinfo->image_width; col > 0; col--) {
166 JDIMENSION col; local
169 for (col = cinfo->image_width; col > 0; col--) {
186 JDIMENSION col; local
192 for (col
207 JDIMENSION col; local
245 JDIMENSION col; local
269 JDIMENSION col; local
[all...]
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_tiled_matrix.h37 EAPI Ewk_Tile *ewk_tile_matrix_tile_exact_get(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, float zoom);
38 EAPI Eina_Bool ewk_tile_matrix_tile_exact_exists(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, float zoom);
39 EAPI Ewk_Tile *ewk_tile_matrix_tile_nearest_get(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, float zoom);
40 EAPI Ewk_Tile *ewk_tile_matrix_tile_new(Ewk_Tile_Matrix *tm, Evas *evas, unsigned long col, unsigned int row, float zoom);
43 EAPI Eina_Bool ewk_tile_matrix_tile_update(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, const Eina_Rectangle *update);
44 EAPI Eina_Bool ewk_tile_matrix_tile_update_full(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row);
/external/webkit/Source/WebKit/chromium/src/
H A DWebNodeCollection.cpp57 WebNodeCollection::WebNodeCollection(const PassRefPtr<HTMLCollection>& col) argument
58 : m_private(static_cast<HTMLCollection*>(col.releaseRef()))
H A DWebNodeList.cpp57 WebNodeList::WebNodeList(const PassRefPtr<NodeList>& col) argument
58 : m_private(static_cast<NodeList*>(col.releaseRef()))
/external/skia/src/images/
H A Dbmpdecoderhelper.cpp197 uint8 col = pixels; local
201 col = pixels & 0xf;
203 col = pixels >> 4;
206 PutPixel(x++, y, col);
241 uint8 col = val; local
244 col = col & 0xf;
246 col >>= 4;
250 PutPixel(x++, y, col);
264 void BmpDecoderHelper::PutPixel(int x, int y, uint8 col) { argument
298 uint8 col; local
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DConcurrentModificationExceptionTest.java29 Collection col; field in class:ConcurrentModificationExceptionTest.CollectionModifier
34 col = c;
44 col.add(someItem);
45 col.remove(someItem);
/external/freetype/src/base/
H A Dftlcdfil.c107 FT_Byte* col = column; local
112 val1 = col[0];
118 col += pitch;
120 val1 = col[0];
125 col += pitch;
132 val = col[0];
141 col[-2 * pitch] = (FT_Byte)pix;
142 col += pitch;
151 col[-2 * pitch] = (FT_Byte)pix;
155 col[
231 FT_Byte* col = column; local
[all...]
/external/icu4c/test/intltest/
H A Ddadrcoll.cpp149 DataDrivenCollatorTest::processArguments(Collator *col, const UChar *start, int32_t optLen) { argument
161 col->setAttribute(attrib, value, status);
169 Collator *col = NULL; local
183 col = Collator::createInstance(localeName, status);
195 col = new RuleBasedCollator(testSetting, status);
211 if(col != NULL){
212 RuleBasedCollator* rbc = (RuleBasedCollator*)col;
228 processArguments(col, arguments, argLen);
243 processSequence(col, sequence);
254 delete col;
261 processSequence(Collator* col, const UnicodeString &sequence) argument
[all...]

Completed in 2567 milliseconds

123456789