HomeSort by relevance Sort by last modified time
    Searched refs:TableLayout (Results 1 - 25 of 31) 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)
AutoTableLayout.cpp 35 : TableLayout(table)
    [all...]
  /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;
39 * Test {@link TableLayout.LayoutParams}.
41 @TestTargetClass(TableLayout.LayoutParams.class)
54 notes = "Test constructor(s) of {@link TableLayout.LayoutParams}.",
55 method = "TableLayout.LayoutParams",
60 notes = "Test constructor(s) of {@link TableLayout.LayoutParams}.",
61 method = "TableLayout.LayoutParams",
66 notes = "Test constructor(s) of {@link TableLayout.LayoutParams}.",
67 method = "TableLayout.LayoutParams",
72 notes = "Test constructor(s) of {@link TableLayout.LayoutParams}."
    [all...]
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...]
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...]
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...]
  /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 37 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 32 * A TableLayout consists of a number of {@link android.widget.TableRow} objects,
34 * explained below). TableLayout containers do not display border lines for
41 * column. However, a TableLayout can specify certain columns as shrinkable or
54 * <p>The children of a TableLayout cannot specify the <code>layout_width</code>
57 * is {@link android.widget.TableLayout.LayoutParams#WRAP_CONTENT}. If the child
59 * {@link android.widget.TableLayout.LayoutParams#WRAP_CONTENT}.</p>
65 * TableLayout examples in ApiDemos for examples of creating tables in XML.</p>
67 * <p>Although the typical child of a TableLayout is a TableRow, you can
68 * actually use any View subclass as a direct child of TableLayout. The View
71 * <p>See the <a href="{@docRoot}resources/tutorials/views/hello-tablelayout.html">Tabl
    [all...]
  /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
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsList.java 39 import android.widget.TableLayout;
100 private TableLayout mTableLayout;
171 mTableLayout = (TableLayout)findViewById(R.id.user_dictionary_tools_table);
222 private TableLayout.LayoutParams tableCreateParam(int w, int h) {
223 return new TableLayout.LayoutParams(w, h);
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp     [all...]
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/14/
android.jar 

Completed in 5117 milliseconds

1 2