/external/chromium_org/third_party/WebKit/PerformanceTests/DOM/resources/dom-perf/ |
events.js | 113 for (var col = 0; col < me.cols; col++) 114 tmp.push("r" + row + "c" + col); 134 var col = document.getElementById('r' + row_id + 'c' + col_id); 135 if (col == undefined) 138 if (col.addEventListener) 139 col.addEventListener("click", EventClickHandler, false); 140 else if (col.attachEvent) 141 col.attachEvent("onclick", EventClickHandler); // To support I [all...] |
/external/eigen/doc/examples/ |
Tutorial_BlockOperations_colrow.cpp | 14 m.col(2) += 3 * m.col(0);
|
/external/eigen/doc/snippets/ |
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;
|
MatrixBase_eval.cpp | 6 cout << "If we do m.col(1) = m.row(0), then m becomes:" << endl; 7 m.col(1) = m.row(0); 9 cout << "Now let us instead do m.col(1) = m.row(0).eval(). Then m becomes" << endl; 11 m.col(1) = m.row(0).eval();
|
/external/chromium_org/third_party/WebKit/Source/core/platform/sql/ |
SQLiteStatement.cpp | 261 bool SQLiteStatement::isColumnNull(int col) 263 ASSERT(col >= 0); 267 if (columnCount() <= col) 270 return sqlite3_column_type(m_statement, col) == SQLITE_NULL; 273 bool SQLiteStatement::isColumnDeclaredAsBlob(int col) 275 ASSERT(col >= 0); 281 return equalIgnoringCase(String("BLOB"), String(reinterpret_cast<const UChar*>(sqlite3_column_decltype16(m_statement, col)))); 284 String SQLiteStatement::getColumnName(int col) 286 ASSERT(col >= 0); 290 if (columnCount() <= col) [all...] |
/external/eigen/Eigen/src/Eigen2Support/ |
Minor.h | 62 Index row, Index col) 63 : m_matrix(matrix), m_row(row), m_col(col) 66 && col >= 0 && col < matrix.cols()); 74 inline Scalar& coeffRef(Index row, Index col) 76 return m_matrix.const_cast_derived().coeffRef(row + (row >= m_row), col + (col >= m_col)); 79 inline const Scalar coeff(Index row, Index col) const 81 return m_matrix.coeff(row + (row >= m_row), col + (col >= m_col)) [all...] |
/external/eigen/unsupported/Eigen/src/Skyline/ |
SkylineInplaceLU.h | 131 const Index& col = row; local 132 for (typename MatrixType::InnerLowerIterator lIt(m_lu, col); lIt; ++lIt) { 137 typename MatrixType::InnerLowerIterator lIt(m_lu, col); 156 typename MatrixType::InnerLowerIterator lIt3(m_lu, col); 169 typename MatrixType::InnerLowerIterator lIt2(m_lu, col); 195 for (Index col = llIt.col(); col < row; col++) { 196 if (m_lu.coeffExistLower(row, col)) { 235 const Index col = row; local 317 Index col = lIt.col(); local [all...] |
/cts/tools/dasm/src/java_cup/ |
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/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_bitmap.c | 54 GLint row, col; local 84 for (col = 0; col < width; col++) { 86 span.array->x[count] = px + col; 106 for (col = 0; col < width; col++) { 108 span.array->x[count] = px + col; 154 GLint row, col; [all...] |
/external/eigen/Eigen/src/Core/ |
Swap.h | 52 inline Scalar& coeffRef(Index row, Index col) 54 return m_expression.const_cast_derived().coeffRef(row, col); 62 inline Scalar& coeffRef(Index row, Index col) const 64 return m_expression.coeffRef(row, col); 73 void copyCoeff(Index row, Index col, const DenseBase<OtherDerived>& other) 77 && col >= 0 && col < cols()); 78 Scalar tmp = m_expression.coeff(row, col); 79 m_expression.coeffRef(row, col) = _other.coeff(row, col); [all...] |
NestByValue.h | 50 inline const CoeffReturnType coeff(Index row, Index col) const 52 return m_expression.coeff(row, col); 55 inline Scalar& coeffRef(Index row, Index col) 57 return m_expression.const_cast_derived().coeffRef(row, col); 71 inline const PacketScalar packet(Index row, Index col) const 73 return m_expression.template packet<LoadMode>(row, col); 77 inline void writePacket(Index row, Index col, const PacketScalar& x) 79 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
|
/external/mesa3d/src/mesa/swrast/ |
s_bitmap.c | 54 GLint row, col; local 84 for (col = 0; col < width; col++) { 86 span.array->x[count] = px + col; 106 for (col = 0; col < width; col++) { 108 span.array->x[count] = px + col; 154 GLint row, col; [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/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
CollectionStore.java | 41 List col = new ArrayList(); local 50 col.add(obj); 54 return col;
|
/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...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
CertStoreCollectionSpi.java | 38 List col = new ArrayList(); local 49 col.add(obj); 61 col.add(obj); 66 return col; 74 List col = new ArrayList(); local 85 col.add(obj); 97 col.add(obj); 102 return col;
|
/external/eigen/bench/btl/generic_bench/init/ |
init_matrix.hh | 57 for (int col=0; col<row ; col++){ 58 double x = init_function(row,col); 59 A[row][col] = A[col][row] = x;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
SearchEngine.py | 71 msg, col = what 74 col = -1 75 self.report_error(pat, msg, col) 79 def report_error(self, pat, msg, col=-1): 84 if col >= 0: 85 msg = msg + "\nOffset: " + str(col) 125 line, col = get_line_col(start) 126 res = self.search_backward(text, prog, line, col, wrap, ok) 132 line, col = get_line_col(start) 133 res = self.search_forward(text, prog, line, col, wrap, ok [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
SearchEngine.py | 71 msg, col = what 74 col = -1 75 self.report_error(pat, msg, col) 79 def report_error(self, pat, msg, col=-1): 84 if col >= 0: 85 msg = msg + "\nOffset: " + str(col) 125 line, col = get_line_col(start) 126 res = self.search_backward(text, prog, line, col, wrap, ok) 132 line, col = get_line_col(start) 133 res = self.search_forward(text, prog, line, col, wrap, ok [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_tile.c | 43 unsigned col; /* current source column */ local 51 for (col = 0; col < width; col += tile_width, ++k) 53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col; 60 unsigned columns = MIN2(tile_width, width - col); 74 unsigned col; /* current source column */ local 82 for (col = 0; col < width; col += tile_width, ++k 105 unsigned col; \/* current source column *\/ local 136 unsigned col; \/* current source column *\/ local 167 unsigned col; \/* current source column *\/ local 257 unsigned col; \/* current destination column *\/ local 290 unsigned col; \/* current destination column *\/ local 323 unsigned col; \/* current destination column *\/ local 356 unsigned col; \/* current destination column *\/ local 389 unsigned col; \/* current destination column *\/ local [all...] |
/external/eigen/blas/ |
BandTriangularSolver.h | 38 for(int col=0 ; col<other.cols() ; ++col) 47 other.coeffRef(i,col) -= cjLhs.row(i).segment(actual_start,actual_k).transpose() 48 .cwiseProduct(other.col(col).segment(IsLower ? i-actual_k : i+1,actual_k)).sum(); 51 other.coeffRef(i,col) /= cjLhs(i,IsLower ? k : 0); 74 for(int col=0 ; col<other.cols() ; ++col) [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_tile.c | 43 unsigned col; /* current source column */ local 51 for (col = 0; col < width; col += tile_width, ++k) 53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col; 60 unsigned columns = MIN2(tile_width, width - col); 74 unsigned col; /* current source column */ local 82 for (col = 0; col < width; col += tile_width, ++k 105 unsigned col; \/* current source column *\/ local 136 unsigned col; \/* current source column *\/ local 167 unsigned col; \/* current source column *\/ local 257 unsigned col; \/* current destination column *\/ local 290 unsigned col; \/* current destination column *\/ local 323 unsigned col; \/* current destination column *\/ local 356 unsigned col; \/* current destination column *\/ local 389 unsigned col; \/* current destination column *\/ local [all...] |