HomeSort by relevance Sort by last modified time
    Searched refs:col (Results 1 - 25 of 459) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/vp8/common/
mv.h 18 short col; member in struct:__anon8450
  /external/chromium/app/sql/
statement.h 102 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) const
    [all...]
statement.cc 71 bool Statement::BindNull(int col) {
73 int err = CheckError(sqlite3_bind_null(ref_->stmt(), col + 1));
79 bool Statement::BindBool(int col, bool val) {
80 return BindInt(col, val ? 1 : 0);
83 bool Statement::BindInt(int col, int val) {
85 int err = CheckError(sqlite3_bind_int(ref_->stmt(), col + 1, val));
91 bool Statement::BindInt64(int col, int64 val) {
93 int err = CheckError(sqlite3_bind_int64(ref_->stmt(), col + 1, val));
99 bool Statement::BindDouble(int col, double val) {
101 int err = CheckError(sqlite3_bind_double(ref_->stmt(), col + 1, val))
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_CollectionTest.java 28 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...]
Support_UnmodifiableCollectionTest.java 29 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.size(), col.size() == 100)
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_CollectionTest.java 27 Collection<Integer> col; // must contain the Integers 0 to 99 field in class:Support_CollectionTest
35 col = c;
40 new Support_UnmodifiableCollectionTest("", col).runTest();
49 assertTrue("CollectionTest - a) add did not work", col.add(new Integer(
51 assertTrue("CollectionTest - b) add did not work", col
55 assertTrue("CollectionTest - a) remove did not work", col
57 assertTrue("CollectionTest - b) remove did not work", !col
61 assertTrue("CollectionTest - a) addAll failed", col
63 assertTrue("CollectionTest - b) addAll failed", col
67 assertTrue("CollectionTest - a) containsAll failed", col
    [all...]
Support_UnmodifiableCollectionTest.java 29 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.size(), col.size() == 100)
    [all...]
  /external/qemu-pc-bios/bochs/bios/
makesym.perl 24 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/
SQLiteStatement.h 76 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, Vector<char>&)
    [all...]
SQLiteStatement.cpp 278 bool SQLiteStatement::isColumnNull(int col)
280 ASSERT(col >= 0);
284 if (columnCount() <= col)
287 return sqlite3_column_type(m_statement, col) == SQLITE_NULL;
290 String SQLiteStatement::getColumnName(int col)
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)
303 ASSERT(col >= 0)
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Stmt.java 173 * @param col column number, 0-based
177 public native int column_int(int col) throws SQLite.Exception;
181 * @param col column number, 0-based
184 public native long column_long(int col) throws SQLite.Exception;
188 * @param col column number, 0-based
191 public native double column_double(int col) throws SQLite.Exception;
195 * @param col column number, 0-based
198 public native byte[] column_bytes(int col) throws SQLite.Exception;
202 * @param col column number, 0-based
205 public native String column_string(int col) throws SQLite.Exception
    [all...]
  /build/tools/bin2asm/
data 13 int col = 0;
40 printf((col == 0) ? ".byte %3d" : ",%3d", buf[i]);
41 col++;
42 if (col == 16) {
44 col = 0;
49 if (col != 0) {
icudata.c 13 int col = 0; local
51 if (col == 0) {
55 col++;
56 if (col == 16) {
58 col = 0;
59 } else if (col % 4 == 0) {
67 if (col != 0) {
  /frameworks/compile/libbcc/tools/build/
dataconvert.py 53 col = 0
60 if col == 0:
63 col += 1
64 if col == 8:
66 col = 0
67 elif col % 4 == 0:
71 if col != 0:
  /frameworks/compile/slang/
slangdata.py 53 col = 0
60 if col == 0:
63 col += 1
64 if col == 16:
66 col = 0
67 elif col % 4 == 0:
73 if col != 0:
  /cts/tools/dasm/src/java_cup/
parse_action_table.java 69 for (int col = 0; col < under_state[row].size(); col++)
72 act = under_state[row].under_term[col];
116 for (int col = 0; col < under_state[row].size(); col++)
119 if (under_state[row].under_term[col].kind() != parse_action.ERROR)
121 result += col + ":" + under_state[row].under_term[col] + " "
    [all...]
parse_reduce_table.java 67 for (int col = 0; col < under_state[row].size(); col++)
70 goto_st = under_state[row].under_non_term[col];
75 result += col + ":";
  /external/webkit/Source/WebCore/html/
DataGridColumnList.cpp 80 void DataGridColumnList::remove(DataGridColumn* col)
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)
96 size_t colIndex = m_columns.find(col);
99 m_columns.insert(index, col);
114 void DataGridColumnList::primaryColumnChanged(DataGridColumn* col)
116 if (col->primary()
    [all...]
  /frameworks/rs/
rsMatrix2x2.h 28 inline float get(uint32_t row, uint32_t col) const {
29 return m[row*2 + col];
32 inline void set(uint32_t row, uint32_t col, float v) {
33 m[row*2 + col] = v;
rsMatrix3x3.h 28 inline float get(uint32_t row, uint32_t col) const {
29 return m[row*3 + col];
32 inline void set(uint32_t row, uint32_t col, float v) {
33 m[row*3 + col] = v;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
TableHelper.java 52 TableColumn col = new TableColumn(parent, style); local
58 col.setText(sample_text);
59 col.pack();
63 prefs.setValue(pref_name, col.getWidth());
66 col.setWidth(prefs.getInt(pref_name));
70 col.setText(header);
75 col.addControlListener(new ControlListener() {
91 return col;
113 TreeColumn col = new TreeColumn(parent, style); local
119 col.setText(sample_text)
171 TreeColumn col = new TreeColumn(parent, style); local
    [all...]
  /external/openfst/src/script/
text-io.cc 47 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/stlport/test/unit/
collate_facets_test.cpp 20 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.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 2) == 1 )
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...]
  /ndk/tests/device/test-gnustl-full/unit/
collate_facets_test.cpp 20 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.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 2) == 1 )
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...]
  /ndk/tests/device/test-stlport/unit/
collate_facets_test.cpp 20 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.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 2) == 1 )
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...]

Completed in 901 milliseconds

1 2 3 4 5 6 7 8 91011>>