HomeSort by relevance Sort by last modified time
    Searched refs:col (Results 1 - 25 of 899) 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/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_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 base::string16& value);
112 bool BindBlob(int col, const void* value, int value_len);
125 ColType ColumnType(int col) const
    [all...]
statement.cc 95 bool Statement::BindNull(int col) {
100 return CheckOk(sqlite3_bind_null(ref_->stmt(), col + 1));
103 bool Statement::BindBool(int col, bool val) {
104 return BindInt(col, val ? 1 : 0);
107 bool Statement::BindInt(int col, int val) {
112 return CheckOk(sqlite3_bind_int(ref_->stmt(), col + 1, val));
115 bool Statement::BindInt64(int col, int64 val) {
120 return CheckOk(sqlite3_bind_int64(ref_->stmt(), col + 1, val));
123 bool Statement::BindDouble(int col, double val) {
128 return CheckOk(sqlite3_bind_double(ref_->stmt(), col + 1, val))
    [all...]
  /external/chromium-trace/trace-viewer/src/tracing/analysis/
analyze_slices.css 6 .analysis-slices-table-col-1,
7 .analysis-slices-table-col-2 {
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteStatement.h 76 bool isColumnNull(int col);
77 bool isColumnDeclaredAsBlob(int col);
78 String getColumnName(int col);
79 SQLValue getColumnValue(int col);
80 String getColumnText(int col);
81 double getColumnDouble(int col);
82 int getColumnInt(int col);
83 int64_t getColumnInt64(int col);
84 const void* getColumnBlob(int col, int& size);
85 String getColumnBlobAsString(int col);
    [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/chromium_org/third_party/sqlite/src/tool/
mkopts.tcl 21 set col 0
23 global col
24 if {$col==0} {puts -nonewline " "}
25 if {$col<2} {
27 incr col
30 set col 0
34 global col
35 if {$col>0} {puts {}}
36 set col 0
  /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...]
  /external/libvpx/libvpx/vp9/common/
vp9_mv.h 20 int16_t col; member in struct:__anon23997
30 int32_t col; member in struct:__anon23998
35 mv->col = clamp(mv->col, min_col, max_col);
  /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/libvpx/libvpx/vp8/common/
mv.h 19 short col; member in struct:__anon23930
  /external/skia/bench/
TableBench.cpp 45 for (int col = 0; col < kNumCols; ++col) {
46 SkRect cell = SkRect::MakeLTRB(col * kCellWidth,
48 (col+1) * kCellWidth,
52 SkRect bottom = SkRect::MakeLTRB(col * kCellWidth,
54 (col+1) * kCellWidth,
58 SkRect right = SkRect::MakeLTRB(col * kCellWidth + (kCellWidth-SK_Scalar1),
60 (col+1) * kCellWidth,

Completed in 1867 milliseconds

1 2 3 4 5 6 7 8 91011>>