HomeSort by relevance Sort by last modified time
    Searched refs:tableLayout (Results 1 - 10 of 10) sorted by null

  /cts/tests/tests/widget/src/android/widget/cts/
TableLayoutTest.java 40 import android.widget.TableLayout;
45 * Test {@link TableLayout}.
47 @TestTargetClass(TableLayout.class)
64 notes = "Test constructor(s) of {@link TableLayout}",
65 method = "TableLayout",
70 notes = "Test constructor(s) of {@link TableLayout}",
71 method = "TableLayout",
77 new TableLayout(mContext);
79 new TableLayout(mContext, null);
83 TableLayout tableLayout = (TableLayout) activit
    [all...]
TableRowTest.java 32 import android.widget.TableLayout;
119 TableLayout tableLayout = (TableLayout) activity
122 TableRow tableRow = (TableRow) tableLayout.getChildAt(0);
132 tableLayout = (TableLayout) activity.findViewById(com.android.cts.stub.R.id.table2);
134 tableRow = (TableRow) tableLayout.getChildAt(0);
156 TableLayout tableLayout = (TableLayout) activit
    [all...]
TableRow_LayoutParamsTest.java 29 import android.widget.TableLayout;
147 TableLayout tableLayout = (TableLayout) activity.findViewById(idTable);
148 View vVitural1 = ((TableRow) tableLayout.getChildAt(0)).getVirtualChildAt(1);
151 View vVitural2 = ((TableRow) tableLayout.getChildAt(0)).getVirtualChildAt(2);
197 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.width);
198 assertEquals(TableLayout.LayoutParams.WRAP_CONTENT, mockLayoutParams.height);
202 assertEquals(TableLayout.LayoutParams.WRAP_CONTENT, mockLayoutParams.width);
203 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.height)
    [all...]
  /external/webkit/Source/WebCore/bindings/objc/
DOMCSS.h 264 - (NSString *)tableLayout;
265 - (void)setTableLayout:(NSString *)tableLayout;
DOMCSS.mm 1187 - (NSString *)tableLayout
1192 - (void)setTableLayout:(NSString *)tableLayout
1194 [self setProperty:@"table-layout" value:tableLayout priority:@""];
  /external/webkit/Source/WebCore/rendering/
RenderTable.cpp 83 ETableLayout oldTableLayout = oldStyle ? oldStyle->tableLayout() : TAUTO;
90 if (!m_tableLayout || style()->tableLayout() != oldTableLayout) {
93 if (style()->tableLayout() == TFIXED && !style()->logicalWidth().isAuto())
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
HTMLConverter.mm     [all...]
  /external/webkit/Source/WebCore/css/
CSSComputedStyleDeclaration.cpp     [all...]
CSSStyleSelector.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h 475 ETableLayout tableLayout() const { return static_cast<ETableLayout>(noninherited_flags._table_layout); }
    [all...]

Completed in 148 milliseconds