HomeSort by relevance Sort by last modified time
    Searched refs:col (Results 1 - 25 of 886) 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;
  /external/chromium_org/sql/
statement.h 104 bool BindNull(int col);
105 bool BindBool(int col, bool val);
106 bool BindInt(int col, int val);
107 bool BindInt64(int col, int64 val);
108 bool BindDouble(int col, double val);
109 bool BindCString(int col, const char* val);
110 bool BindString(int col, const std::string& val);
111 bool BindString16(int col, const string16& value);
112 bool BindBlob(int col, const void* value, int value_len);
125 ColType ColumnType(int col) const
    [all...]
statement.cc 89 bool Statement::BindNull(int col) {
93 return CheckOk(sqlite3_bind_null(ref_->stmt(), col + 1));
96 bool Statement::BindBool(int col, bool val) {
97 return BindInt(col, val ? 1 : 0);
100 bool Statement::BindInt(int col, int val) {
104 return CheckOk(sqlite3_bind_int(ref_->stmt(), col + 1, val));
107 bool Statement::BindInt64(int col, int64 val) {
111 return CheckOk(sqlite3_bind_int64(ref_->stmt(), col + 1, val));
114 bool Statement::BindDouble(int col, double val) {
118 return CheckOk(sqlite3_bind_double(ref_->stmt(), col + 1, val))
    [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/chromium-trace/trace-viewer/src/tracing/analysis/
analyze_slices.css 6 .analysis-slices-table-col-1,
7 .analysis-slices-table-col-2 {