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

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
Tutorial_AdvancedInitialization_LinSpaced.cpp 2 table.col(0) = ArrayXf::LinSpaced(10, 0, 90);
3 table.col(1) = M_PI / 180 * table.col(0);
4 table.col(2) = table.col(1).sin();
5 table.col(3) = table.col(1).cos();
MatrixBase_col.cpp 2 m.col(1) = Vector3d(4,5,6);
MatrixBase_setRandom.cpp 2 m.col(1).setRandom();
ComplexEigenSolver_eigenvectors.cpp 4 << endl << ces.eigenvectors().col(1) << endl;
EigenSolver_eigenvectors.cpp 4 << endl << es.eigenvectors().col(1) << endl;
SelfAdjointEigenSolver_eigenvectors.cpp 4 << endl << es.eigenvectors().col(1) << endl;
Tutorial_commainit_01b.cpp 4 m.col(2).tail(2) << 6, 9;
LLT_solve.cpp 4 VectorXf elevations = 2*samples.col(0) + 3*samples.col(1) + VectorXf::Random(12)*0.1;
Tutorial_solve_multiple_rhs.cpp 8 cout << X.col(0) << endl;
10 cout << X.col(1) << endl;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.package/
welcome.css 113 .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12
    [all...]
  /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...]
  /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...]
  /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...]
  /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...]
  /external/libvpx/libvpx/vp8/common/
mv.h 19 short col; member in struct:__anon10956
  /external/skia/bench/
TableBench.cpp 52 for (int col = 0; col < kNumCols; ++col) {
53 SkRect cell = SkRect::MakeLTRB(col * kCellWidth,
55 (col+1) * kCellWidth,
59 SkRect bottom = SkRect::MakeLTRB(col * kCellWidth,
61 (col+1) * kCellWidth,
65 SkRect right = SkRect::MakeLTRB(col * kCellWidth + (kCellWidth-SK_Scalar1),
67 (col+1) * kCellWidth,
  /external/eigen/doc/examples/
Tutorial_BlockOperations_colrow.cpp 14 m.col(2) += 3 * m.col(0);

Completed in 1389 milliseconds

1 2 3 4 5 6 7 8 91011>>