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

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
GridDataFactory.java 14 import org.eclipse.swt.layout.GridData;
18 * This class provides a convienient shorthand for creating and initializing GridData. This offers
19 * several benefits over creating GridData normal way:
22 * <li>The same factory can be used many times to create several GridData instances</li>
44 * GridData labelData = new GridData(GridData.HORIZONTAL_ALIGN_FILL | GridData.VERTICAL_ALIGN_FILL);
58 * GridData wrappingLabelData = new GridData(GridData.FILL_HORIZONTAL | GridData.VERTICAL_ALIGN_CENTER)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ColumnDialog.java 26 import org.eclipse.swt.layout.GridData;
57 GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1);
59 gridData.widthHint = 500;
60 container.setLayoutData(gridData);
68 table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
SampleSelectionPage.java 40 import org.eclipse.swt.layout.GridData;
79 GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, true, 2, 1);
80 gridData.heightHint = 300;
81 mTable.setLayoutData(gridData);
87 projectLabel.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1));
91 mSampleProjectName.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ConfigTab.java 31 import org.eclipse.swt.layout.GridData;
127 GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, true, 3, 1);
128 gridData.heightHint = 150;
129 this.table.setLayoutData (gridData);
  /external/deqp/modules/gles31/functional/
es31fTextureMultisampleTests.cpp 664 std::vector<tcu::Vec4> gridData(m_gridsize*m_gridsize*6);
669 gridData[(y * m_gridsize + x)*6 + 0] = tcu::Vec4(((float)(x+0) / m_gridsize) * 2.0f - 1.0f, ((float)(y+0) / m_gridsize) * 2.0f - 1.0f, 0.0f, 1.0f);
670 gridData[(y * m_gridsize + x)*6 + 1] = tcu::Vec4(((float)(x+0) / m_gridsize) * 2.0f - 1.0f, ((float)(y+1) / m_gridsize) * 2.0f - 1.0f, 0.0f, 1.0f);
671 gridData[(y * m_gridsize + x)*6 + 2] = tcu::Vec4(((float)(x+1) / m_gridsize) * 2.0f - 1.0f, ((float)(y+1) / m_gridsize) * 2.0f - 1.0f, 0.0f, 1.0f);
672 gridData[(y * m_gridsize + x)*6 + 3] = tcu::Vec4(((float)(x+0) / m_gridsize) * 2.0f - 1.0f, ((float)(y+0) / m_gridsize) * 2.0f - 1.0f, 0.0f, 1.0f);
673 gridData[(y * m_gridsize + x)*6 + 4] = tcu::Vec4(((float)(x+1) / m_gridsize) * 2.0f - 1.0f, ((float)(y+1) / m_gridsize) * 2.0f - 1.0f, 0.0f, 1.0f);
674 gridData[(y * m_gridsize + x)*6 + 5] = tcu::Vec4(((float)(x+1) / m_gridsize) * 2.0f - 1.0f, ((float)(y+0) / m_gridsize) * 2.0f - 1.0f, 0.0f, 1.0f);
677 gl.bufferData (GL_ARRAY_BUFFER, (int)(gridData.size() * sizeof(tcu::Vec4)), gridData[0].getPtr(), GL_STATIC_DRAW);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceChooser.java 63 import org.eclipse.swt.layout.GridData;
547 GridData data = new GridData();
550 data.horizontalAlignment = GridData.FILL;
551 data.verticalAlignment = GridData.BEGINNING;
558 GridData data = new GridData();
561 data.horizontalAlignment = GridData.FILL;
562 data.verticalAlignment = GridData.BEGINNING;
568 workaround.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, false, false, 1, 1))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchConfigurationTab.java 76 import org.eclipse.swt.layout.GridData;
175 GridData gd = new GridData();
183 GridData gd = new GridData();
197 gd = new GridData();
202 mProjText.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
224 gd = new GridData();
231 mTestText.setLayoutData(new GridData(GridData.FILL_HORIZONTAL))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ConfigureAssetSetPage.java 69 import org.eclipse.swt.layout.GridData;
190 configurationScrollArea.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 2));
203 foregroundLabel.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1));
207 foregroundComposite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, false, false, 2, 1));
222 mTextRadio.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 3, 1));
229 mForegroundArea.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false, 2, 1));
235 fileLabel.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1));
239 GridData pathLayoutData = new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1);
262 mClipartPreviewPanel.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1))
    [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 
jfreechart-swt-1.0.9.jar 
sdkuilib.jar 
ddmuilib.jar 
org-eclipse-jface-3.6.2.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
org.eclipse.jface_3.6.1.M20100825-0800.jar 
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9-swt.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart-swt/1.0.9/
jfreechart-swt-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/propertysheet/1.0/
propertysheet-1.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
performanceui.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 
org.eclipse.jface_3.6.2.M20110210-1200.jar 
org.eclipse.jface_3.4.2.M20090107-0800.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
org-eclipse-jface-3.6.2.jar 

Completed in 582 milliseconds