/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
H A D | DebugLinesSubsection.cpp | 47 if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines)) in operator ()() 94 assert(B.Lines.size() == B.Columns.size()); in addLineAndColumnInfo() 100 B.Columns.push_back(CNE); in addLineAndColumnInfo() 115 assert(B.Lines.size() == B.Columns.size() || B.Columns.empty()); in commit() 130 if (auto EC = Writer.writeArray(makeArrayRef(B.Columns))) in commit() 143 Size += B.Columns.size() * sizeof(ColumnNumberEntry); in calculateSerializedSize()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_tables.cpp | 13 // [SECTION] Tables: Columns changes 14 // [SECTION] Tables: Columns width management 22 // [SECTION] Columns, BeginColumns, EndColumns, etc. 161 // About clipping/culling of Columns in Tables: 481 const int old_columns_count = table->Columns.size(); in BeginTableEx() 485 old_columns_to_preserve = table->Columns.Data; in BeginTableEx() 508 ImGuiTableColumn* column = &table->Columns[n]; in BeginTableEx() 543 table->Columns[n].WidthRequest = table->Columns[n].WidthRequest * scale_factor; in BeginTableEx() 582 span_allocator.GetSpan(0, &table->Columns); in TableBeginInitMemory() [all...] |
H A D | imgui_demo.cpp | 3001 ImGui::Checkbox("Columns", &show_columns); // Will use contents size in ShowDemoWindowLayout() 3052 ImGui::Text("Columns:"); in ShowDemoWindowLayout() 3053 ImGui::Columns(4); in ShowDemoWindowLayout() 3059 ImGui::Columns(1); in ShowDemoWindowLayout() 3515 { ImGuiTableFlags_SizingFixedFit, "ImGuiTableFlags_SizingFixedFit", "Columns default to _WidthFixed (if resizable) or _WidthAuto (if not resizable), matching contents width." }, in EditTableSizingFlags() 3516 { ImGuiTableFlags_SizingFixedSame, "ImGuiTableFlags_SizingFixedSame", "Columns are all the same width, matching the maximum contents width.\nImplicitly disable ImGuiTableFlags_Resizable and enable ImGuiTableFlags_NoKeepColumnsVisible." }, in EditTableSizingFlags() 3517 { ImGuiTableFlags_SizingStretchProp, "ImGuiTableFlags_SizingStretchProp", "Columns default to _WidthStretch with weights proportional to their widths." }, in EditTableSizingFlags() 3518 { ImGuiTableFlags_SizingStretchSame, "ImGuiTableFlags_SizingStretchSame", "Columns default to _WidthStretch with same weights." } in EditTableSizingFlags() 3586 if (!ImGui::CollapsingHeader("Tables & Columns")) 3670 "This is also more similar to the old NextColumn() function of the Columns AP [all...] |
H A D | imgui.cpp | 455 - 2019/12/17 (1.75) - [undid this change in 1.76] made Columns() limited to 64 columns by asserting above that limit. While the current code technically supports it, future code may not so we're putting the restriction ahead. 2289 // Set cursor position and a few other things so that SetScrollHereY() and Columns() can work when seeking cursor. in SetCursorPosYAndSetupForPrevLine() 6263 // - Columns() for right-most edge in Begin() 11302 else if (rect_type == TRT_ColumnsRect) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->MinX, table->InnerClipRect.Min.y, c->MaxX, table->InnerClipRect.Min.y + table->LastOuterHeight); } in ShowMetricsWindow() 11303 else if (rect_type == TRT_ColumnsWorkRect) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->WorkRect.Min.y, c->WorkMaxX, table->WorkRect.Max.y); } in ShowMetricsWindow() 11304 else if (rect_type == TRT_ColumnsClipRect) { ImGuiTableColumn* c = &table->Columns[n]; return c->ClipRect; } in ShowMetricsWindow() 11305 else if (rect_type == TRT_ColumnsContentHeadersUsed){ ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y, c->ContentMaxXHeadersUsed, table->InnerClipRect.Min.y + table->LastFirstRowHeight); } // Note: y1/y2 not always accurate in ShowMetricsWindow() 11306 else if (rect_type == TRT_ColumnsContentHeadersIdeal){ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y, c->ContentMaxXHeadersIdeal, table->InnerClipRect.Min.y + table->LastFirstRowHeight); } in ShowMetricsWindow() 11307 else if (rect_type == TRT_ColumnsContentFrozen) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y, c->ContentMaxXFrozen, table->InnerClipRect.Min.y + table->LastFirstRowHeight); } in ShowMetricsWindow() 11308 else if (rect_type == TRT_ColumnsContentUnfrozen) { ImGuiTableColumn* c = &table->Columns[ in ShowMetricsWindow() [all...] |
H A D | imgui_internal.h | 22 // [SECTION] Columns support 127 struct ImGuiOldColumnData; // Storage data for a single column for legacy Columns() api 128 struct ImGuiOldColumns; // Storage data for a columns set for legacy Columns() api 1249 // [SECTION] Columns support 1298 ImVector<ImGuiOldColumnData> Columns; 2151 ImGuiTableColumnIdx PrevEnabledColumn; // Index of prev enabled/visible column within Columns[], -1 if first enabled/visible column 2152 ImGuiTableColumnIdx NextEnabledColumn; // Index of next enabled/visible column within Columns[], -1 if last enabled/visible column 2199 void* RawData; // Single allocation to hold Columns[], DisplayOrderToIndex[] and RowCellData[] 2201 ImSpan<ImGuiTableColumn> Columns; // Point within RawData[] 2562 // Internal Columns AP [all...] |
H A D | imgui.h | 715 // - Full-featured replacement for old Columns API. 729 // - IMPORTANT: Comparatively to the old Columns() API, we need to call TableNextColumn() for the first column! 744 // Tables: Headers & Columns declaration 775 // Legacy Columns API (prefer using Tables!) 777 IMGUI_API void Columns(int count = 1, const char* id = NULL, bool border = true); 1127 // - Table defaults to ImGuiTableFlags_SizingStretchSame -> all Columns defaults to ImGuiTableColumnFlags_WidthStretch with same weight. 1128 // - Columns sizing policy allowed: Stretch (default), Fixed/Auto. 1129 // - Fixed Columns will generally obtain their requested width (unless the table cannot fit them all). 1130 // - Stretch Columns will share the remaining width. 1135 // - Table defaults to ImGuiTableFlags_SizingFixedFit -> all Columns default [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LowerMatrixIntrinsics.cpp | 141 SmallVector<Value *, 16> Columns; member in __anon25166::LowerMatrixIntrinsics::ColumnMatrixTy 144 ColumnMatrixTy() : Columns() {} in ColumnMatrixTy() 146 : Columns(Cols.begin(), Cols.end()) {} in ColumnMatrixTy() 148 Value *getColumn(unsigned i) const { return Columns[i]; } in getColumn() 150 void setColumn(unsigned i, Value *V) { Columns[i] = V; } in setColumn() 152 size_t getNumColumns() const { return Columns.size(); } in getNumColumns() 154 assert(Columns.size() > 0 && "Cannot call getNumRows without columns"); in getNumRows() 155 return cast<VectorType>(Columns[0]->getType())->getNumElements(); in getNumRows() 158 const SmallVectorImpl<Value *> &getColumnVectors() const { return Columns; } in getColumnVectors() 160 SmallVectorImpl<Value *> &getColumnVectors() { return Columns; } in getColumnVectors() [all...] |
/third_party/mesa3d/bin/pick/ |
H A D | ui.py | 116 body: 'urwid.Columns' = attr.ib(attr.Factory(lambda s: s._make_body(), True), init=False) 117 footer: 'urwid.Columns' = attr.ib(attr.Factory(lambda s: s._make_footer(), True), init=False) 125 def _make_body(self) -> 'urwid.Columns': 128 return urwid.Columns([commits, feedback]) 130 def _make_footer(self) -> 'urwid.Columns': 139 return urwid.Columns(body) 224 cols = urwid.Columns([ok_btn, can_btn]) 258 cols = urwid.Columns([ok_btn, can_btn])
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | DebugLinesSubsection.h | 49 // ColumnNumberEntry Columns[NumLines]; 67 FixedStreamArray<ColumnNumberEntry> Columns; member 112 std::vector<ColumnNumberEntry> Columns; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
H A D | CodeViewYAMLDebugSections.h | 77 std::vector<SourceColumnEntry> Columns; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLDebugSections.cpp | 280 IO.mapRequired("Columns", Obj.Columns); in mapping() 424 for (auto Item : zip(LC.Lines, LC.Columns)) { in toCodeViewSubsection() 596 for (const auto &C : L.Columns) { in fromCodeViewSubsection() 600 Block.Columns.push_back(SCE); in fromCodeViewSubsection()
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsBuiltinPrecisionTests.cpp | 2656 template <typename T, int Rows, int Columns> 3570 template<int Rows, int Columns> 3571 class Transpose : public PrimitiveFunc<Signature<Matrix<float, Rows, Columns>, 3572 Matrix<float, Columns, Rows> > > 3590 for (int colNdx = 0; colNdx < Columns; ++colNdx) in doApply() 4400 template <typename T, int Rows, int Columns> 4401 class DefaultSampling<Matrix<T, Rows, Columns> > : public Sampling<Matrix<T, Rows, Columns> > 4404 typedef Matrix<T, Rows, Columns> Value; 4411 for (int colNdx = 0; colNdx < Columns; in genRandom() [all...] |
/third_party/mesa3d/src/imgui/ |
H A D | imgui.cpp | 2188 // Set cursor position and a few other things so that SetScrollHereY() and Columns() can work when seeking cursor. in SetCursorPosYAndSetupDummyPrevLine() 8149 // In the current version, Columns are very weak. Needs to be replaced with a more full-featured system. 8166 // Columns 1+ cancel out IndentX in NextColumn() 8235 IM_ASSERT(column_index < columns->Columns.Size); in GetColumnOffset() 8237 const float t = columns->Columns[column_index].OffsetNorm; in GetColumnOffset() 8249 offset_norm = columns->Columns[column_index + 1].OffsetNormBeforeResize - columns->Columns[column_index].OffsetNormBeforeResize; in GetColumnWidthEx() 8251 offset_norm = columns->Columns[column_index + 1].OffsetNorm - columns->Columns[column_index].OffsetNorm; in GetColumnWidthEx() 8263 return OffsetNormToPixels(columns, columns->Columns[column_inde in GetColumnWidth() 8453 void ImGui::Columns(int columns_count, const char* id, bool border) Columns() function in ImGui [all...] |
H A D | imgui_internal.h | 647 ImVector<ImGuiColumnData> Columns; member 662 Columns.clear(); in Clear() 1422 // New Columns API (FIXME-WIP)
|
H A D | imgui.h | 137 typedef int ImGuiColumnsFlags; // -> enum ImGuiColumnsFlags_ // Flags: for Columns(), BeginColumns() 553 // Columns 556 IMGUI_API void Columns(int count = 1, const char* id = NULL, bool border = true); 1763 // Draw channels are used by the Columns API to "split" the render list into different channels while building, so items of each column can be batched together.
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
H A D | vktShaderBuiltinPrecisionTests.cpp | 3452 template <typename T, int Rows, int Columns> 4611 template<int Rows, int Columns, class T> 4612 class Transpose : public PrimitiveFunc<Signature<Matrix<T, Rows, Columns>, 4613 Matrix<T, Columns, Rows> > > 4631 for (int colNdx = 0; colNdx < Columns; ++colNdx) in doApply() 6010 template <typename T, int Rows, int Columns> 6011 class DefaultSampling<Matrix<T, Rows, Columns> > : public Sampling<Matrix<T, Rows, Columns> > 6014 typedef Matrix<T, Rows, Columns> Value; 6021 for (int colNdx = 0; colNdx < Columns; [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/ |
H A D | vktShaderBuiltinPrecisionTests.cpp | 3441 template <typename T, int Rows, int Columns> 4600 template<int Rows, int Columns, class T> 4601 class Transpose : public PrimitiveFunc<Signature<Matrix<T, Rows, Columns>, 4602 Matrix<T, Columns, Rows> > > 4620 for (int colNdx = 0; colNdx < Columns; ++colNdx) in doApply() 5999 template <typename T, int Rows, int Columns> 6000 class DefaultSampling<Matrix<T, Rows, Columns> > : public Sampling<Matrix<T, Rows, Columns> > 6003 typedef Matrix<T, Rows, Columns> Value; 6010 for (int colNdx = 0; colNdx < Columns; [all...] |
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 8492 class Columns; 8654 auto operator + (Column const& other)->Columns; 8671 class Columns { 8677 friend Columns; 8684 iterator(Columns const& columns, EndTag) 8700 explicit iterator(Columns const& columns) 8751 auto operator += (Column const& col) -> Columns& { 8755 auto operator + (Column const& col) -> Columns { 8756 Columns combined = *this; 8761 inline friend std::ostream& operator << (std::ostream& os, Columns cons [all...] |