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

1234567891011>>

/external/libvpx/vp8/common/
H A Dmv.h18 short col; member in struct:__anon8194
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/chromium-trace/trace-viewer/src/
H A Dtimeline_analysis.css35 .timeline-analysis-slice-table-col-0 {
37 .timeline-analysis-slice-table-col-1 {
40 .timeline-analysis-slices-table-col-0 {
42 .timeline-analysis-slices-table-col-1 {
45 .timeline-analysis-slices-table-col-2 {
49 .timeline-analysis-counter-table-col-0 {
51 .timeline-analysis-counter-table-col-0 {
/external/openfst/src/script/
H A Dtext-io.cc47 vector<char *> col; local
48 SplitToVector(line, "\n\t ", &col, true);
49 if (col.size() == 0 || col[0][0] == '\0') // empty line
51 if (col.size() != 2) {
57 ssize_t s = StrToInt64(col[0], filename, nline, false);
58 WeightClass weight(weight_type, col[1]);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DCollectionStore.java41 List col = new ArrayList();
50 col.add(obj);
54 return col;
/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/bcprov/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/openfst/src/include/fst/script/
H A Dcompile-impl.h65 vector<char *> col; local
67 SplitToVector(line, separator.c_str(), &col, true);
68 if (col.size() == 0 || col[0][0] == '\0') // empty line
70 if (col.size() > 5 ||
71 (col.size() > 4 && accep) ||
72 (col.size() == 3 && !accep)) {
79 StateId s = StrToStateId(col[0]);
87 switch (col.size()) {
92 fst_.SetFinal(s, StrToWeight(col[
[all...]
/external/qemu/distrib/jpeg-6b/
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)
188 register JDIMENSION col; local
197 for (col = 0; col < num_col
234 register JDIMENSION col; local
290 register JDIMENSION col; local
329 register JDIMENSION col; local
381 register JDIMENSION col; local
440 register JDIMENSION col; local
452 int col = num_cols; local
[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...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
H A DAbstractTextureBlender.java31 float oneMinusFactor = 1.0f - blendFactor, col;
96 col = blendFactor * pixelColor[0];
97 result[0] = col < materialColor[0] ? col : materialColor[0];
98 col = blendFactor * pixelColor[1];
99 result[1] = col < materialColor[1] ? col : materialColor[1];
100 col = blendFactor * pixelColor[2];
101 result[2] = col < materialColor[2] ? col
[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()))

Completed in 526 milliseconds

1234567891011>>