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

1 2 3 4 5 6 7 8 91011>>

  /external/ImageMagick/tests/
validate-composite.tap 23 ${VALIDATE} -validate composite && echo "ok" || echo "not ok"
  /external/ImageMagick/MagickCore/
composite-private.h 16 MagickCore image composite private methods.
33 ImageMagick Alpha Composite Inline Methods (special export)
53 const double alpha,const Quantum *q,const double beta,Quantum *composite)
86 composite[i]=ClampToQuantum(gamma*MagickOver_((double) p->red,alpha,
92 composite[i]=ClampToQuantum(gamma*MagickOver_((double) p->green,alpha,
98 composite[i]=ClampToQuantum(gamma*MagickOver_((double) p->blue,alpha,
104 composite[i]=ClampToQuantum(gamma*MagickOver_((double) p->black,alpha,
110 composite[i]=ClampToQuantum(QuantumRange*RoundToUnity(Sa+Da-Sa*Da));
115 composite[i]=q[i];
123 const double alpha,const PixelInfo *q,const double beta,PixelInfo *composite)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
GridLayoutFactory.java 14 import org.eclipse.swt.widgets.Composite;
30 private GridLayoutFactory(Composite composite, GridLayout layout) {
32 composite.setLayout(m_layout);
35 public static GridLayoutFactory create(Composite composite) {
36 return new GridLayoutFactory(composite, new GridLayout());
39 public static GridLayoutFactory modify(Composite composite) {
40 Layout layout = composite.getLayout()
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFA.java 54 return grammar.composite.getNewNFAStateNumber();
58 grammar.composite.addState(state);
62 return grammar.composite.getState(s);
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestCompositeGrammars.java 211 CompositeGrammar composite = new CompositeGrammar(); local
212 Grammar g = new Grammar(antlr,tmpdir+"/M.g",composite);
213 composite.setDelegationRoot(g);
215 g.composite.assignTokenTypes();
222 realElements(g.composite.tokenIDToTypeMap).toString());
223 assertEquals(expectedStringLiteralToTypeMap, g.composite.stringLiteralToTypeMap.toString());
225 realElements(g.composite.typeToTokenList).toString());
249 CompositeGrammar composite = new CompositeGrammar(); local
250 Grammar g = new Grammar(antlr,tmpdir+"/M.g",composite);
251 composite.setDelegationRoot(g)
283 CompositeGrammar composite = new CompositeGrammar(); local
336 CompositeGrammar composite = new CompositeGrammar(); local
384 CompositeGrammar composite = new CompositeGrammar(); local
426 CompositeGrammar composite = new CompositeGrammar(); local
461 CompositeGrammar composite = new CompositeGrammar(); local
487 CompositeGrammar composite = new CompositeGrammar(); local
618 CompositeGrammar composite = new CompositeGrammar(); local
658 CompositeGrammar composite = new CompositeGrammar(); local
766 CompositeGrammar composite = new CompositeGrammar(); local
829 CompositeGrammar composite = new CompositeGrammar(); local
875 CompositeGrammar composite = new CompositeGrammar(); local
929 CompositeGrammar composite = new CompositeGrammar(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeyCreationPage.java 31 import org.eclipse.swt.widgets.Composite;
67 public void createControl(Composite parent) {
68 Composite composite = new Composite(parent, SWT.NULL); local
69 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
71 composite.setLayout(gl);
75 new Label(composite, SWT.NONE).setText("Alias:");
76 mAlias = new Text(composite, SWT.BORDER);
79 new Label(composite, SWT.NONE).setText("Password:")
    [all...]
KeystoreSelectionPage.java 32 import org.eclipse.swt.widgets.Composite;
63 public void createControl(Composite parent) {
64 Composite composite = new Composite(parent, SWT.NULL); local
65 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
67 composite.setLayout(gl);
71 mUseExistingKeystore = new Button(composite, SWT.RADIO);
77 mCreateKeystore = new Button(composite, SWT.RADIO);
82 new Label(composite, SWT.NONE).setText("Location:")
    [all...]
KeySelectionPage.java 33 import org.eclipse.swt.widgets.Composite;
70 public void createControl(Composite parent) {
71 Composite composite = new Composite(parent, SWT.NULL); local
72 composite.setLayoutData(new GridData(GridData.FILL_BOTH));
74 composite.setLayout(gl);
78 mUseExistingKey = new Button(composite, SWT.RADIO);
84 new Composite(composite, SWT.NONE).setLayoutData(gd = new GridData())
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interp.java 76 CompositeGrammar composite = new CompositeGrammar(); local
77 Grammar parser = new Grammar(tool, grammarFileName, composite);
78 composite.setDelegationRoot(parser);
84 parser.composite.assignTokenTypes();
85 parser.composite.defineGrammarSymbols();
86 parser.composite.createNFAs();
109 lexer.composite.createNFAs();
GrammarReport2.java 49 CompositeGrammar composite = root.composite; local
50 for (Grammar g : composite.getDelegates(root)) {
  /prebuilts/go/darwin-x86/test/
complit1.go 7 // Verify that illegal composite literals are detected.
40 _ = &T{i: 0, f: 0, s: "", next: {}} // ERROR "missing type in composite literal|omit types within composite literal"
41 _ = &T{0, 0, "", {}} // ERROR "missing type in composite literal|omit types within composite literal"
  /prebuilts/go/linux-x86/test/
complit1.go 7 // Verify that illegal composite literals are detected.
40 _ = &T{i: 0, f: 0, s: "", next: {}} // ERROR "missing type in composite literal|omit types within composite literal"
41 _ = &T{0, 0, "", {}} // ERROR "missing type in composite literal|omit types within composite literal"
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/wizards/
AddNativeWizardPage.java 26 import org.eclipse.swt.widgets.Composite;
55 public void createControl(Composite parent) {
56 Composite container = new Composite(parent, SWT.NULL);
63 Composite composite = new Composite(container, SWT.NONE); local
64 composite.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
65 composite.setLayout(new GridLayout(3, false));
67 Label lblLib = new Label(composite, SWT.NONE)
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug074.go 10 x := string{'a', 'b', '\n'}; // ERROR "composite"
bug465.go 7 // Issue 4230: inlining bug for composite literal in
issue4932.go 7 // Issue 4932: regression in export of composite literals.
bug300.go 14 // legal composite literals
22 // illegal composite literals: parentheses not allowed around literal type
issue8961.go 7 // Issue 8961. Empty composite literals to small globals were not filled in
18 panic("composite literal not filled in")
  /prebuilts/go/darwin-x86/test/syntax/
composite.go 10 3 // ERROR "need trailing comma before newline in composite literal"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug074.go 10 x := string{'a', 'b', '\n'}; // ERROR "composite"
bug465.go 7 // Issue 4230: inlining bug for composite literal in
issue4932.go 7 // Issue 4932: regression in export of composite literals.
bug300.go 14 // legal composite literals
22 // illegal composite literals: parentheses not allowed around literal type
issue8961.go 7 // Issue 8961. Empty composite literals to small globals were not filled in
18 panic("composite literal not filled in")
  /prebuilts/go/linux-x86/test/syntax/
composite.go 10 3 // ERROR "need trailing comma before newline in composite literal"

Completed in 1978 milliseconds

1 2 3 4 5 6 7 8 91011>>