Home
last modified time | relevance | path

Searched refs:columnIndex (Results 1 - 8 of 8) sorted by relevance

/third_party/lzma/CPP/Windows/Control/
H A DListView.h31 bool DeleteColumn(unsigned columnIndex) { return BOOLToBool(ListView_DeleteColumn(_window, columnIndex)); } in DeleteColumn() argument
33 int InsertColumn(unsigned columnIndex, const LVCOLUMN *columnInfo) { return ListView_InsertColumn(_window, columnIndex, columnInfo); } in InsertColumn() argument
34 int InsertColumn(unsigned columnIndex, LPCTSTR text, int width);
55 int InsertColumn(unsigned columnIndex, const LVCOLUMNW *columnInfo) { return (int)SendMsg(LVM_INSERTCOLUMNW, (WPARAM)columnIndex, (LPARAM)columnInfo); } in InsertColumn() argument
56 int InsertColumn(unsigned columnIndex, LPCWSTR text, int width);
99 bool GetColumn(unsigned columnIndex, LVCOLUMN* columnInfo) const in GetColumn() argument
100 { return BOOLToBool(ListView_GetColumn(_window, columnIndex, columnInf in GetColumn()
[all...]
H A DListView.cpp41 int CListView::InsertColumn(unsigned columnIndex, LPCTSTR text, int width) in InsertColumn() argument
46 ci.iSubItem = (int)columnIndex; in InsertColumn()
48 return InsertColumn(columnIndex, &ci); in InsertColumn()
74 int CListView::InsertColumn(unsigned columnIndex, LPCWSTR text, int width) in InsertColumn() argument
79 ci.iSubItem = (int)columnIndex; in InsertColumn()
81 return InsertColumn(columnIndex, &ci); in InsertColumn()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DShaderStorageBlockFunctionHLSL.cpp95 for (int columnIndex = 0; columnIndex < ssboFunction.type.getCols(); columnIndex++) in OutputSSBOLoadFunctionBody()
98 << columnIndex * ssboFunction.matrixStride << ")), "; in OutputSSBOLoadFunctionBody()
178 for (int columnIndex = 0; columnIndex < ssboFunction.type.getCols(); columnIndex++) in OutputSSBOStoreFunctionBody()
181 << columnIndex * ssboFunction.matrixStride << ", asuint(value[" << columnIndex in OutputSSBOStoreFunctionBody()
H A DOutputSPIRV.cpp1291 for (int columnIndex = 0; columnIndex < type.getCols(); ++columnIndex) in createComplexConstant()
1293 auto columnParametersStart = parameters.begin() + columnIndex * type.getRows(); in createComplexConstant()
1556 for (int columnIndex = 0; in createConstructorVectorFromMultiple()
1557 columnIndex < argumentType.getCols() && componentIndex < extractedComponents.size(); in createConstructorVectorFromMultiple()
1558 ++columnIndex) in createConstructorVectorFromMultiple()
1622 for (int columnIndex = 0; columnIndex < type.getCols(); ++columnIndex) in createConstructorMatrixFromScalar()
[all...]
/third_party/skia/third_party/externals/angle2/src/common/
H A Dmatrix_utils.h52 const T &operator()(const unsigned int rowIndex, const unsigned int columnIndex) const in operator ()()
55 ASSERT(columnIndex < mCols); in operator ()()
56 return mElements[rowIndex * columns() + columnIndex]; in operator ()()
59 T &operator()(const unsigned int rowIndex, const unsigned int columnIndex)
62 ASSERT(columnIndex < mCols);
63 return mElements[rowIndex * columns() + columnIndex];
66 const T &at(const unsigned int rowIndex, const unsigned int columnIndex) const
69 ASSERT(columnIndex < mCols);
70 return operator()(rowIndex, columnIndex);
/third_party/node/deps/npm/node_modules/cli-table3/src/
H A Dlayout-manager.js107 for (let columnIndex = 0; columnIndex < cellColumns.length; columnIndex++) {
108 let cell = cellColumns[columnIndex];
113 cellColumns.splice(columnIndex + 1, 0, colSpanCell);
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DVaryingPacking.cpp512 for (unsigned int columnIndex = 0; columnIndex < varyingColumns; ++columnIndex) in insertVaryingIntoRegisterMap()
514 mRegisterMap[registerInfo.registerRow][registerColumn + columnIndex] = true; in insertVaryingIntoRegisterMap()
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
H A Des31cExplicitUniformLocationTest.cpp1030 std::string columnIndex;
1035 columnIndex = str.str();
1047 ret << columnIndex << ", vec2(0.5)) - ";
1055 ret << columnIndex << " - ";

Completed in 12 milliseconds