OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cspan
(Results
1 - 3
of
3
) sorted by null
/external/webkit/WebCore/html/
HTMLTableCellElement.h
48
int colSpan() const { return
cSpan
; }
108
int
cSpan
;
HTMLTableCellElement.cpp
55
,
cSpan
(1)
100
cSpan
= !attr->isNull() ? attr->value().toInt() : 1;
101
cSpan
= max(1,
cSpan
);
/external/webkit/WebCore/rendering/
RenderTableSection.cpp
184
int
cSpan
= cell->colSpan();
232
while (
cSpan
) {
235
table()->appendColumn(
cSpan
);
236
currentSpan =
cSpan
;
238
if (
cSpan
< columns[m_cCol].span)
239
table()->splitColumn(m_cCol,
cSpan
);
251
cSpan
-= currentSpan;
285
int
cspan
= cell->colSpan();
local
286
while (
cspan
&& endCol < cols) {
287
cspan
-= table()->columns()[endCol].span
[
all
...]
Completed in 166 milliseconds