Searched defs:col (Results 1 - 25 of 243) sorted by relevance

12345678910

/external/libvpx/vp8/common/
H A Dmv.h18 short col; member in struct:__anon8787
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_CollectionTest.java28 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...]
H A DSupport_UnmodifiableCollectionTest.java29 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
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLDataGridColElement.h58 void setColumn(PassRefPtr<DataGridColumn> col) { m_column = col; } argument
H A DHTMLTableColElement.cpp70 RenderTableCol* col = toRenderTableCol(renderer()); local
72 if (newWidth != col->width())
73 col->setNeedsLayoutAndPrefWidthsRecalc();
/external/webkit/Source/WebKit/chromium/src/
H A DWebNodeList.cpp57 WebNodeList::WebNodeList(const PassRefPtr<NodeList>& col) argument
58 : m_private(static_cast<NodeList*>(col.releaseRef()))
H A DWebNodeCollection.cpp57 WebNodeCollection::WebNodeCollection(const PassRefPtr<HTMLCollection>& col) argument
58 : m_private(static_cast<HTMLCollection*>(col.releaseRef()))
/external/eigen/Eigen/src/Core/
H A DBooleanRedux.h21 col = (UnrollCount-1) / Derived::RowsAtCompileTime, enumerator in enum:Eigen::internal::all_unroller::__anon5201
27 return all_unroller<Derived, UnrollCount-1>::run(mat) && mat.coeff(row, col);
47 col = (UnrollCount-1) / Derived::RowsAtCompileTime, enumerator in enum:Eigen::internal::any_unroller::__anon5202
53 return any_unroller<Derived, UnrollCount-1>::run(mat) || mat.coeff(row, col);
H A DArrayWrapper.h61 inline CoeffReturnType coeff(Index row, Index col) const
63 return m_expression.coeff(row, col);
66 inline Scalar& coeffRef(Index row, Index col) argument
68 return m_expression.const_cast_derived().coeffRef(row, col);
71 inline const Scalar& coeffRef(Index row, Index col) const
73 return m_expression.const_cast_derived().coeffRef(row, col);
92 inline const PacketScalar packet(Index row, Index col) const
94 return m_expression.template packet<LoadMode>(row, col);
98 inline void writePacket(Index row, Index col, const PacketScalar& x) argument
100 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col,
179 coeffRef(Index row, Index col) argument
211 writePacket(Index row, Index col, const PacketScalar& x) argument
[all...]
H A DFlagged.h58 inline CoeffReturnType coeff(Index row, Index col) const
60 return m_matrix.coeff(row, col);
68 inline const Scalar& coeffRef(Index row, Index col) const
70 return m_matrix.const_cast_derived().coeffRef(row, col);
78 inline Scalar& coeffRef(Index row, Index col) argument
80 return m_matrix.const_cast_derived().coeffRef(row, col);
89 inline const PacketScalar packet(Index row, Index col) const
91 return m_matrix.template packet<LoadMode>(row, col);
95 inline void writePacket(Index row, Index col, const PacketScalar& x) argument
97 m_matrix.const_cast_derived().template writePacket<LoadMode>(row, col,
[all...]
H A DForceAlignedAccess.h49 inline const CoeffReturnType coeff(Index row, Index col) const
51 return m_expression.coeff(row, col);
54 inline Scalar& coeffRef(Index row, Index col) argument
56 return m_expression.const_cast_derived().coeffRef(row, col);
70 inline const PacketScalar packet(Index row, Index col) const
72 return m_expression.template packet<Aligned>(row, col);
76 inline void writePacket(Index row, Index col, const PacketScalar& x) argument
78 m_expression.const_cast_derived().template writePacket<Aligned>(row, col, x);
H A DNestByValue.h50 inline const CoeffReturnType coeff(Index row, Index col) const
52 return m_expression.coeff(row, col);
55 inline Scalar& coeffRef(Index row, Index col) argument
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) argument
79 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
H A DSwap.h52 inline Scalar& coeffRef(Index row, Index col) argument
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) argument
77 && col >= 0 && col < cols());
78 Scalar tmp = m_expression.coeff(row, col);
79 m_expression.coeffRef(row, col) = _other.coeff(row, col);
94 copyPacket(Index row, Index col, const DenseBase<OtherDerived>& other) argument
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseTranspose.h42 inline typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); }
43 inline typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); } function in class:Eigen::TransposeImpl::InnerIterator
55 inline typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); }
56 inline typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); } function in class:Eigen::TransposeImpl::ReverseInnerIterator
H A DCoreIterators.h48 inline Index col() const { return IsRowMajor ? index() : m_outer; } function in class:Eigen::DenseBase::InnerIterator
/external/openfst/src/script/
H A Dtext-io.cc47 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/
H A Dcollate_facets_test.cpp20 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
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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DConcurrentModificationExceptionTest.java29 Collection col; field in class:ConcurrentModificationExceptionTest.CollectionModifier
34 col = c;
44 col.add(someItem);
45 col.remove(someItem);
/external/chromium/chrome/browser/history/
H A Ddownload_database.cc36 void BindFilePath(sql::Statement& statement, const FilePath& path, int col) { argument
37 statement.BindString(col, path.value());
39 FilePath ColumnFilePath(sql::Statement& statement, int col) { argument
40 return FilePath(statement.ColumnString(col));
46 void BindFilePath(sql::Statement& statement, const FilePath& path, int col) {
47 statement.BindString(col, UTF16ToUTF8(path.value()));
49 FilePath ColumnFilePath(sql::Statement& statement, int col) {
50 return FilePath(UTF8ToUTF16(statement.ColumnString(col)));
/external/dropbear/
H A Dsshpty.c343 pty_change_window_size(int ptyfd, int row, int col, argument
349 w.ws_col = col;
/external/e2fsprogs/debugfs/
H A Dls.c37 int col; member in struct:list_dir_struct
113 if (ls->col + thislen > 80) {
115 ls->col = 0;
118 ls->col += thislen;
166 ls.col = 0;
/external/eigen/Eigen/src/Eigen2Support/
H A DMinor.h62 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) argument
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 >
61 Minor(const MatrixType& matrix, Index row, Index col) argument
101 minor(Index row, Index col) argument
[all...]
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DBlockOfDynamicSparseMatrix.h36 inline Index col() const { return IsRowMajor ? this->index() : m_outer; } function in class:Eigen::SparseInnerVectorSet::InnerIterator
/external/elfutils/tests/
H A Dline2addr.c92 int line = a->line, col = 0; local
93 const char *file = dwfl_lineinfo (lines[inner], &addr, &line, &col,
101 if (strcmp (file, a->file) || line != a->line || col != 0)
104 if (col != 0)
105 printf (":%d", col);
107 || strcmp (file, a->file) || line != a->line || col != 0)
/external/freetype/src/base/
H A Dftlcdfil.c107 FT_Byte* col = column; local
112 val1 = col[0];
118 col += pitch;
120 val1 = col[0];
125 col += pitch;
132 val = col[0];
141 col[-2 * pitch] = (FT_Byte)pix;
142 col += pitch;
151 col[-2 * pitch] = (FT_Byte)pix;
155 col[
231 FT_Byte* col = column; local
[all...]

Completed in 2199 milliseconds

12345678910