HomeSort by relevance Sort by last modified time
    Searched refs:composite (Results 26 - 50 of 362) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
Gdx2DTest.java 118 Gdx2DPixmap composite = new Gdx2DPixmap(512, 256, Gdx2DPixmap.GDX2D_FORMAT_RGBA8888); local
119 composite.clear(0);
123 composite.drawPixmap(pixmaps[i], 0, 0, 32, 32, i * 64, 0, 64, 64);
124 composite.drawPixmap(pixmaps[i], 0, 0, 32, 32, i * 64, 64, 16, 16);
125 composite.drawPixmap(pixmaps[i], 0, 0, 32, 32, i * 64, 0, 64, 64);
126 composite.drawPixmap(pixmaps[i], 0, 0, 32, 32, i * 64, 64, 16, 16);
128 composite.drawPixmap(pixmaps[i], 0, 0, 32, 32, i * 64, 100, 64, 64);
129 composite.drawPixmap(pixmaps[i], 0, 0, 32, 32, i * 64, 164, 16, 16);
130 composite.drawPixmap(pixmaps[i], 0, 0, 32, 32, i * 64, 100, 64, 64);
131 composite.drawPixmap(pixmaps[i], 0, 0, 32, 32, i * 64, 164, 16, 16);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiFlagAttributeNode.java 39 import org.eclipse.swt.widgets.Composite;
82 public void createUiControl(Composite parent, IManagedForm managedForm) {
91 Composite composite = toolkit.createComposite(parent); local
92 composite.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.MIDDLE));
95 composite.setLayout(gl);
98 toolkit.paintBordersFor(composite);
100 final Text text = toolkit.createText(composite, getCurrentValue());
102 gd.horizontalIndent = 1; // Needed by the fixed composite borders under GTK
104 final Button selectButton = toolkit.createButton(composite, "Select...", SWT.PUSH)
222 Composite composite= new Composite(parent, SWT.NONE); local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_compose.py 38 composite = bucket_uri.clone_replace_name(self.MakeTempName('obj'))
40 self.RunGsUtil(['compose'] + components + [composite.uri])
41 self.assertEqual(composite.get_contents_as_string(), ''.join(data_list))
45 stderr = self.RunGsUtil(['compose'] + components + ['gs://b/composite-obj'],
51 ['compose', 'gs://b/component-obj', 'gs://b/composite-obj'],
58 target = 'gs://b/composite-obj'
92 composite = bucket_uri.clone_replace_name(self.MakeTempName('obj'))
94 self.RunGsUtil(['compose', component1.uri, component2.uri, composite.uri])
95 self.assertEqual(composite.get_contents_as_string(), 'hello world!')
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeWizard.java 29 import org.eclipse.swt.widgets.Composite;
63 public void createControl(Composite parent) {
64 Composite composite = new Composite(parent, SWT.NONE); local
65 composite.setLayout(new GridLayout(2, false));
67 Label nameLabel = new Label(composite, SWT.NONE);
71 mNameText = new Text(composite, SWT.BORDER);
75 mReplaceAllOccurrences = new Button(composite, SWT.CHECK);
89 setControl(composite);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyComposite.java 117 XmlPropertyComposite composite = new XmlPropertyComposite(xmlProperties[0], xmlProperties); local
118 composite.setCategory(xmlProperties[0].getCategory());
119 return composite;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
UnicodeNormalizer.java 151 int composite = data.getPairwiseComposition(starterCh, ch); local
152 if (composite != NormalizerData.NOT_COMPOSITE
154 UTF16Util.setCodePointAt(target, starterPos, composite);
155 starterCh = composite;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
UnicodeNormalizer.java 150 int composite = data.getPairwiseComposition(starterCh, ch); local
151 if (composite != NormalizerData.NOT_COMPOSITE
153 UTF16Util.setCodePointAt(target, starterPos, composite);
154 starterCh = composite;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BlendComposite.java 19 import java.awt.Composite;
38 public final class BlendComposite implements Composite {
122 private final BlendComposite composite; field in class:BlendComposite.BlendingContext
124 private BlendingContext(BlendComposite composite) {
125 this.composite = composite;
126 this.blender = Blender.getBlenderFor(composite);
143 float alpha = composite.getAlpha();
201 public static Blender getBlenderFor(BlendComposite composite) {
202 switch (composite.getMode())
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue8183.go 21 e // ERROR "array bound must be non-negative" "const initializer len\(composite literal\) is not a constant"
22 f // ERROR "array bound must be non-negative" "const initializer len\(composite literal\) is not a constant"
bug475.go 8 // composite literal confused gccgo.
bug482.go 7 // Using the same name for a field in a composite literal and for a
gcc61264.go 7 // PR61264: IncDec statements involving composite literals caused in ICE in gccgo.
gcc61265.go 7 // PR61265: The gccgo middle-end failed to represent array composite literals
issue4879.go 8 // composite literals in inlined bodies.
issue7590.go 7 // Issue 7590: gccgo incorrectly traverses nested composite literals.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue8183.go 21 e // ERROR "array bound must be non-negative" "const initializer len\(composite literal\) is not a constant"
22 f // ERROR "array bound must be non-negative" "const initializer len\(composite literal\) is not a constant"
bug475.go 8 // composite literal confused gccgo.
bug482.go 7 // Using the same name for a field in a composite literal and for a
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
ChooseConfigurationPage.java 36 import org.eclipse.swt.widgets.Composite;
80 public void createControl(Composite parent) {
83 Composite composite = new Composite(parent, SWT.NULL); local
84 composite.setLayout(new GridLayout(2, false /* makeColumnsEqualWidth */));
85 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
88 Label label = new Label(composite, SWT.NONE);
93 mConfigSelector = new ConfigurationSelector(composite, SelectorMode.DEFAULT);
105 Label separator = new Label(composite, SWT.SEPARATOR | SWT.HORIZONTAL)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
AccordionControl.java 38 import org.eclipse.swt.widgets.Composite;
53 * composite which is created to hold the children items, to for example allow multiple
65 public abstract class AccordionControl extends Composite {
85 protected Composite createChildContainer(Composite parent, Object header, int style) {
86 Composite composite = new Composite(parent, style); local
90 composite.setLayout(layout);
100 composite.setLayout(layout)
339 Composite composite = createChildContainer(scrolledComposite, header, SWT.NONE); local
    [all...]
  /external/ImageMagick/PerlMagick/demo/
Makefile 13 perl composite.pl
  /prebuilts/go/darwin-x86/test/
compos.go 23 panic("not allocating & composite literals")
convlit1.go 7 // Verify that illegal uses of composite literals are detected.
  /prebuilts/go/linux-x86/test/
compos.go 23 panic("not allocating & composite literals")
convlit1.go 7 // Verify that illegal uses of composite literals are detected.

Completed in 618 milliseconds

12 3 4 5 6 7 8 91011>>