HomeSort by relevance Sort by last modified time
    Searched refs:TableLayout (Results 1 - 25 of 44) sorted by null

1 2

  /external/webkit/Source/WebCore/rendering/
TableLayout.h 31 class TableLayout {
32 WTF_MAKE_NONCOPYABLE(TableLayout); WTF_MAKE_FAST_ALLOCATED;
34 TableLayout(RenderTable* table)
39 virtual ~TableLayout() { }
FixedTableLayout.h 25 #include "TableLayout.h"
32 class FixedTableLayout : public TableLayout {
AutoTableLayout.h 25 #include "TableLayout.h"
33 class AutoTableLayout : public TableLayout {
RenderTable.h 38 class TableLayout;
257 OwnPtr<TableLayout> m_tableLayout;
FixedTableLayout.cpp 76 : TableLayout(table)
  /frameworks/base/tools/layoutlib/create/tests/mock_android/widget/
TableLayout.java 21 public class TableLayout extends ViewGroup {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/mock_android/widget/
TableLayout.java 21 public class TableLayout extends ViewGroup {
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayout_LayoutParamsTest.java 25 import android.widget.TableLayout;
34 * Test {@link TableLayout.LayoutParams}.
46 new TableLayout.LayoutParams(mTargetContext, null);
48 TableLayout.LayoutParams layoutParams = new TableLayout.LayoutParams(200, 300);
49 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, layoutParams.width);
51 TableLayout.LayoutParams oldParams = layoutParams;
53 layoutParams = new TableLayout.LayoutParams(200, 300, 1.2f);
54 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, layoutParams.width);
57 TableLayout.LayoutParams oldMarginParams = layoutParams
    [all...]
TableLayoutTest.java 35 import android.widget.TableLayout;
40 * Test {@link TableLayout}.
57 new TableLayout(mContext);
59 new TableLayout(mContext, null);
63 TableLayout tableLayout = (TableLayout) activity
65 assertTrue(tableLayout.isColumnCollapsed(0));
66 assertTrue(tableLayout.isColumnStretchable(2));
69 tableLayout = (TableLayout) activity.findViewById(com.android.cts.stub.R.id.table2)
    [all...]
TableRow_LayoutParamsTest.java 29 import android.widget.TableLayout;
97 TableLayout tableLayout = (TableLayout) activity.findViewById(idTable);
98 View vVitural1 = ((TableRow) tableLayout.getChildAt(0)).getVirtualChildAt(1);
101 View vVitural2 = ((TableRow) tableLayout.getChildAt(0)).getVirtualChildAt(2);
139 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.width);
140 assertEquals(TableLayout.LayoutParams.WRAP_CONTENT, mockLayoutParams.height);
144 assertEquals(TableLayout.LayoutParams.WRAP_CONTENT, mockLayoutParams.width);
145 assertEquals(TableLayout.LayoutParams.MATCH_PARENT, mockLayoutParams.height)
    [all...]
TableRowTest.java 32 import android.widget.TableLayout;
87 TableLayout tableLayout = (TableLayout) activity
90 TableRow tableRow = (TableRow) tableLayout.getChildAt(0);
100 tableLayout = (TableLayout) activity.findViewById(com.android.cts.stub.R.id.table2);
102 tableRow = (TableRow) tableLayout.getChildAt(0);
118 TableLayout tableLayout = (TableLayout) activit
    [all...]
LayoutDirectionTest.java 44 checkDefaultDirectionForOneLayoutWithCode(new TableLayout(getActivity()));
69 checkDirectionForOneLayoutWithCode(new TableLayout(getActivity()));
96 checkDirectionInheritanceForOneLayoutWithCode(new TableLayout(getActivity()));
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 22 import android.widget.TableLayout;
40 final TableLayout table = (TableLayout) findViewById(R.id.menu);
54 private void appendRow(TableLayout table) {
69 table.addView(row, new TableLayout.LayoutParams());
TableLayout9.java 22 import android.widget.TableLayout;
37 final TableLayout table = (TableLayout) findViewById(R.id.menu);
TableLayout7.java 26 import android.widget.TableLayout;
41 final TableLayout table = (TableLayout) findViewById(R.id.menu);
63 private void appendRow(TableLayout table) {
78 table.addView(row, new TableLayout.LayoutParams());
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
AddColumn.java 25 import android.widget.TableLayout;
41 final TableLayout table = (TableLayout) findViewById(R.id.table);
49 table.addView(newRow, new TableLayout.LayoutParams());
AddColumnTest.java 26 import android.widget.TableLayout;
35 private TableLayout mTable;
47 mTable = (TableLayout) activity.findViewById(R.id.table);
  /frameworks/base/tools/layoutlib/create/tests/data/
mock_android.jar 
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
ResultActivity.java 36 import android.widget.TableLayout;
178 TableLayout table = (TableLayout)findViewById(R.id.table);
188 TableLayout table = (TableLayout)findViewById(R.id.table);
190 TableLayout.LayoutParams params = new TableLayout.LayoutParams();
  /frameworks/base/core/java/android/widget/
TableLayout.java 34 * A TableLayout consists of a number of {@link android.widget.TableRow} objects,
36 * explained below). TableLayout containers do not display border lines for
43 * column. However, a TableLayout can specify certain columns as shrinkable or
56 * <p>The children of a TableLayout cannot specify the <code>layout_width</code>
59 * is {@link android.widget.TableLayout.LayoutParams#WRAP_CONTENT}. If the child
61 * {@link android.widget.TableLayout.LayoutParams#WRAP_CONTENT}.</p>
67 * TableLayout examples in ApiDemos for examples of creating tables in XML.</p>
69 * <p>Although the typical child of a TableLayout is a TableRow, you can
70 * actually use any View subclass as a direct child of TableLayout. The View
74 public class TableLayout extends LinearLayout
    [all...]
  /sdk/testapps/testSensors/src/com/android/tests/testsensors/
TestSensorsActivity.java 29 import android.widget.TableLayout;
38 private TableLayout mTableLayout;
207 mTableLayout = (TableLayout) findViewById(R.id.tableLayout);
  /frameworks/opt/colorpicker/src/com/android/colorpicker/
ColorPickerPalette.java 25 import android.widget.TableLayout;
34 public class ColorPickerPalette extends TableLayout {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
LayoutParamsParserTest.java 97 assertEquals(mock_android.widget.TableLayout.LayoutParams.class,
98 ((ClassWrapper)_findLayoutParams(mock_android.widget.TableLayout.class)).wrappedClass());
115 mock_android.widget.TableLayout.LayoutParams.class);
117 // TableLayout.LayoutData does not link to ViewGroup.LayoutParams nor
121 // TableLayout.LayoutParams => ViewGroup.MarginLayoutParams => ViewGroup.LayoutParams
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
SensorActivity.java 33 import android.widget.TableLayout;
59 private TableLayout mTableLayout;
77 mTableLayout = (TableLayout) findViewById(R.id.tableLayout);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsList.java 43 import android.widget.TableLayout;
104 private TableLayout mTableLayout;
175 mTableLayout = (TableLayout)findViewById(R.id.user_dictionary_tools_table);
247 private TableLayout.LayoutParams tableCreateParam(int w, int h) {
248 return new TableLayout.LayoutParams(w, h);

Completed in 610 milliseconds

1 2