Searched refs:fixedWidth (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderFrameBase.h44 void layoutWithFlattening(bool fixedWidth, bool fixedHeight);
H A DAutoTableLayout.cpp297 int fixedWidth = 0; local
307 fixedWidth += columnLayout.logicalWidth.value();
375 for (unsigned pos = effCol; fixedWidth > 0 && pos < lastCol; ++pos) {
376 int cellLogicalWidth = std::max(m_layoutStruct[pos].effectiveMinLogicalWidth, static_cast<int>(cellMinLogicalWidth * m_layoutStruct[pos].logicalWidth.value() / fixedWidth));
377 fixedWidth -= m_layoutStruct[pos].logicalWidth.value();
406 if (m_layoutStruct[pos].logicalWidth.isFixed() && haveAuto && fixedWidth <= cellMinLogicalWidth) {
408 fixedWidth -= m_layoutStruct[pos].logicalWidth.value();
417 if (!(m_layoutStruct[pos].logicalWidth.isFixed() && haveAuto && fixedWidth <= cellMinLogicalWidth)) {
H A DRenderFrameSet.cpp566 bool fixedWidth = frameSetElement().colLengths() && frameSetElement().colLengths()[c].isFixed(); local
570 if (!fixedWidth)
581 toRenderFrame(child)->layoutWithFlattening(fixedWidth, fixedHeight);
/macosx-10.10/tcl-105/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeElem.h49 int fixedWidth; member in struct:TreeElementArgs::__anon13259
57 int fixedWidth; member in struct:TreeElementArgs::__anon13260
H A DtkTreeElem.c2742 int fixedWidth,
2768 dbwin("TextUpdateLayout: %s %p (%s) %s\n fixedWidth %d maxWidth %d\n",
2770 func, fixedWidth, maxWidth);
2811 if (fixedWidth >= 0)
2812 width = fixedWidth;
3067 int fixedWidth
3095 if ((etl2->neededWidth != -1) && (fixedWidth >= etl2->neededWidth))
3096 fixedWidth = etl2->totalWidth;
3099 if (fixedWidth == etl2->layoutWidth)
3108 else if ((etl2->layoutWidth != -1) && (fixedWidth > etl
2739 TextUpdateLayout( char *func, TreeElementArgs *args, int fixedWidth, int maxWidth ) argument
[all...]
H A DtkTreeDisplay.c202 int fixedWidth = -1, stepWidth = -1; local
243 fixedWidth = Tree_WidthOfColumns(tree);
247 fixedWidth = tree->itemWidth;
252 fixedWidth = TreeColumn_FixedWidth(tree->columns);
260 fixedWidth = TreeColumn_WidthOfItems(tree->columnVis);
270 if ((stepWidth != -1) && (fixedWidth % stepWidth))
271 fixedWidth += stepWidth - fixedWidth % stepWidth;
328 if (fixedWidth != -1) {
329 rItem->size = fixedWidth;
472 int fixedWidth = -1, stepWidth = -1; local
[all...]
H A DtkTreeStyle.c114 int minWidth, fixedWidth, maxWidth; member in struct:MElementLink
476 if ((eLink1->fixedWidth >= 0) && (eLink1->fixedHeight >= 0)) {
477 width = eLink1->fixedWidth;
483 args.needed.fixedWidth = eLink1->fixedWidth;
497 if (eLink1->fixedWidth >= 0)
498 width = eLink1->fixedWidth;
1767 args.height.fixedWidth = layout->useWidth;
2705 eLink->minWidth = eLink->fixedWidth = eLink->maxWidth = -1;
5277 if (eLink->fixedWidth >
[all...]
H A DtkTreeItem.c225 int selfIndex = _columnIndex, fixedWidth = 0, width = 0; local
230 int fixedWidth; member in struct:span
249 spans[columnIndex].fixedWidth = TreeColumn_FixedWidth(treeColumn);
260 if (spans[columnIndex].fixedWidth >= 0) {
261 fixedWidth += spans[columnIndex].fixedWidth;
262 spans[columnIndex].spanWidth = spans[columnIndex].fixedWidth;
277 if (width > fixedWidth && span > 0) {
278 width -= fixedWidth;
284 if (spans[columnIndex].fixedWidth <
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dnucnvtst.c5559 const char *fixedWidth[] = { local
5572 for (i = 0; i < LENGTHOF(fixedWidth); i++) {
5573 cnv = ucnv_open(fixedWidth[i], &status);
5575 log_data_err("Error open converter: %s - %s \n", fixedWidth[i], u_errorName(status));
5580 log_err("%s is a fixedWidth converter but returned FALSE.\n", fixedWidth[i]);
5593 log_err("%s is NOT a fixedWidth converter but returned TRUE.\n", notFixedWidth[i]);

Completed in 229 milliseconds