Searched defs:components (Results 1 - 25 of 29) sorted by relevance

12

/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DConstantNode.java37 ConstantNode(List<Node> components) { argument
39 this.components = components;
44 if (components.size() != 0) {
H A DReplyNode.java35 void set(String kind, List<Node> components, int lineno) { argument
36 super.set(kind, components, lineno);
37 components.add(0, new NameNode(kind));
H A DOutNode.java35 void set(String kind, List<Node> components, int lineno) { argument
36 super.set(kind, components, lineno);
37 components.add(0, new NameNode("Out"));
51 for (Iterator it = components.iterator(); it.hasNext();) {
62 for (Iterator it = components.iterator(); it.hasNext();) {
79 for (Iterator it = components.iterator(); it.hasNext();) {
H A DErrorNode.java39 ErrorNode(List<Node> components) { argument
41 this.components = components;
46 if (components.size() != 0) {
H A DNode.java35 List<Node> components; field in class:Node
46 void set(String kind, List<Node> components, int lineno) { argument
48 this.components = components;
53 for (Iterator it = components.iterator(); it.hasNext();) {
66 for (Iterator it = components.iterator(); it.hasNext();) {
74 for (Iterator it = components.iterator(); it.hasNext();) {
126 for (Iterator it = components.iterator(); it.hasNext();) {
133 for (Iterator it = components.iterator(); it.hasNext();) {
187 for (Iterator it = components
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/
H A DRing.java37 * Holds all the binding related singleton components in a "ring",
38 * and let you access those components, creating them as necessary.
55 * components are in the model. But at least the following components
66 private final Map<Class,Object> components = new HashMap<Class,Object>(); field in class:Ring
73 assert !get().components.containsKey(clazz);
74 get().components.put(clazz,instance);
82 T t = (T)get().components.get(key);
88 if(!get().components.containsKey(key))
89 // many components registe
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSInputSource.java63 public void setComponents(XSObject[] components) { argument
64 fComponents = components;
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest7169395.java88 public void setComponents(Collection<Component> components) { argument
90 for (Component component : components){
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DUnionPathExpr.java62 final Vector components = new Vector();
63 flatten(components);
64 final int size = components.size();
65 _components = (Expression[])components.toArray(new Expression[size]);
100 private void flatten(Vector components) { argument
101 components.addElement(_pathExpr);
104 ((UnionPathExpr)_rest).flatten(components);
107 components.addElement(_rest);
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DBytecodeName.java81 * <code><big><b>/</b></big></code> (forward slash, used to delimit package components),
292 * components delimited by dangerous characters.
343 * Given a series of components, create a bytecode name for a classfile.
347 * @param components a series of name components
348 * @return the concatenation of all components
353 public static String unparseBytecodeName(Object[] components) { argument
354 Object[] components0 = components;
355 for (int i = 0; i < components.length; i++) {
356 Object c = components[
370 appendAll(Object[] components) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalToolBarUI.java64 private static List<WeakReference<JComponent>> components = new ArrayList<WeakReference<JComponent>>(); field in class:MetalToolBarUI
98 components.add(new WeakReference<JComponent>(c));
105 for (int counter = components.size() - 1; counter >= 0; counter--) {
108 JComponent target = components.get(counter).get();
111 components.remove(counter);
124 for (int counter = components.size() - 1; counter >= 0; counter--){
125 Object component = ((WeakReference)components.get(counter)).
130 components.remove(counter);
/openjdk7/jdk/src/share/classes/sun/font/
H A DCompositeFont.java46 /* because components can be lazily initialised the components field is
49 private PhysicalFont[] components; field in class:CompositeFont
101 components = new PhysicalFont[numSlots];
102 components[numSlots-1] = fm.getEUDCFont();
110 components = new PhysicalFont[numSlots];
169 components = new PhysicalFont[numSlots];
170 components[0] = physFont;
171 System.arraycopy(compFont.components, 0,
172 components,
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DDirectColorModel.java61 * The translation from pixel values to color/alpha components for
63 * samples to components. A <code>DirectColorModel</code> is
191 * parameters. Color components are in the specified
311 * components as float values between 0.0 and 1.0.
314 int components[] = getComponents(pixel, null, 0);
315 float norm[] = getNormalizedComponents(components, 0, null, 0);
441 * Returns the color/alpha components of the pixel in the default
446 * color components. If the alpha value is 0, for example, the color
449 * @return the RGB value of the color/alpha components of the specified
677 * Returns the color/alpha components fo
926 getComponents(int pixel, int[] components, int offset) argument
977 getComponents(Object pixel, int[] components, int offset) argument
1063 getDataElement(int[] components, int offset) argument
1113 getDataElements(int[] components, int offset, Object obj) argument
[all...]
H A DComponentColorModel.java37 * color components in the <CODE>ColorSpace</CODE>. There may be a
49 * The translation from pixel sample values to color/alpha components for
51 * samples to components.
56 * The translation from sample values to normalized color/alpha components
97 * to 1.0. Second the min/max range of all color components of the
132 * use all the bits of all sample values. Thus all color/alpha components
149 * rendering such that color components fall within the normalized range
157 * an <CODE>IllegalArgumentException</CODE>, unless the number of components
206 * parameters. Color components will be in the specified
214 * length should be at least the number of components i
1681 getComponents(int pixel, int[] components, int offset) argument
1741 getComponents(Object pixel, int[] components, int offset) argument
1816 getUnnormalizedComponents(float[] normComponents, int normOffset, int[] components, int offset) argument
1865 getNormalizedComponents(int[] components, int offset, float[] normComponents, int normOffset) argument
1894 getDataElement(int[] components, int offset) argument
1952 getDataElements(int[] components, int offset, Object obj) argument
[all...]
H A DIndexColorModel.java37 * optional alpha components corresponding to each index. All components
53 * Note that the color components in the colormap of an
55 * the alpha components.
59 * determined by examining the alpha components of the colors in the
100 * alpha components.
144 * arrays of red, green, and blue components. Pixels described
145 * by this color model all have alpha components of 255
148 * components must have at least the specified number of entries.
157 * @param r the array of red color components
1092 getComponents(int pixel, int[] components, int offset) argument
1158 getComponents(Object pixel, int[] components, int offset) argument
1204 getDataElement(int[] components, int offset) argument
1277 getDataElements(int[] components, int offset, Object pixel) argument
[all...]
H A DColorModel.java41 * methods for translating a pixel value to color components
44 * image, pixel values must be converted to color and alpha components.
47 * The number, order, and interpretation of color components for a
99 * components varies by subclass. For example, there is not necessarily
102 * <code>Raster</code> and color/alpha components. Even when
106 * pixel values to color/alpha components is done.
109 * representations of color and alpha components - a normalized form
113 * color components the minimum and maximum values for each component can
131 * component values of 0.0 for all components and maximum values of
132 * 1.0 for all components
958 getComponents(int pixel, int[] components, int offset) argument
1000 getComponents(Object pixel, int[] components, int offset) argument
1051 getUnnormalizedComponents(float[] normComponents, int normOffset, int[] components, int offset) argument
1147 getNormalizedComponents(int[] components, int offset, float[] normComponents, int normOffset) argument
1235 getDataElement(int[] components, int offset) argument
1286 getDataElements(int[] components, int offset, Object obj) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DSynthModel.java47 @XmlElementWrapper(name="components")
48 private ArrayList<UIComponent> components; field in class:SynthModel
51 for (UIComponent c: components) {
73 for (UIComponent c: components) {
/openjdk7/jdk/src/share/back/
H A DArrayReferenceImpl.c73 jboolean *components; local
75 components = newComponents(out, length, sizeof(jboolean));
76 if (components != NULL) {
78 JNI_FUNC_PTR(env,GetBooleanArrayRegion)(env, array, index, length, components);
80 (void)outStream_writeBoolean(out, components[i]);
82 deleteComponents(components);
90 jbyte *components; local
92 components = newComponents(out, length, sizeof(jbyte));
93 if (components != NULL) {
95 JNI_FUNC_PTR(env,GetByteArrayRegion)(env, array, index, length, components);
107 jchar *components; local
124 jshort *components; local
141 jint *components; local
158 jlong *components; local
175 jfloat *components; local
192 jdouble *components; local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DObjectIdentifier.java36 * The individual components are numbers, and they define paths from the
72 * can be put inside if there are huge components that cannot be saved
81 * "components" and "componentLen" instead and inits correctly.
84 * 4. new -> old: old readObject() only recognizes "components" and
85 * "componentLen" fields. If no huge components are involved, they
100 private Object components = null; // path from root field in class:ObjectIdentifier
106 // Is the components field calculated?
114 init((int[])components, componentLen);
123 components = comps;
126 components
276 init(int[] components, int length) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyConstructedImpl.java58 DynAny[] components = emptyComponents; field in class:DynAnyConstructedImpl
76 // set the current position to 0 if any has components, otherwise to -1.
87 // set the current position to 0 if any has components, otherwise to -1.
125 return (checkInitComponents() ? components[index] : null);
132 return (checkInitComponents() ? components.length : 0);
143 if (index >= 0 && index < components.length) {
162 if (newIndex < components.length) {
183 components = emptyComponents;
196 // Makes sure that the components representation is initialized
249 for (int i=0; i<components
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/
H A DNameImpl.java48 private Vector components; field in class:NameImpl
273 components = new Vector();
284 i = extractComp(n, i, len, components);
287 ? (String)components.firstElement()
288 : (String)components.lastElement();
298 components.insertElementAt("", 0);
300 components.addElement("");
312 components.addElement(comps.nextElement());
453 int size = components.size();
458 stringifyComp((String) components
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DColor.java45 * getting the color/alpha components of a <code>Color</code>, the color
46 * components are never premultiplied by the alpha component.
214 * <code>float</code> components (no alpha).
226 * <code>float</code> components (no alpha).
282 * Checks the color integer components supplied for validity.
316 * Checks the color <code>float</code> components supplied for
406 * @param rgb the combined RGB components
424 * @param rgba the combined RGBA components
501 * with the color components specified in the <code>float</code>
502 * array and the specified alpha. The number of components i
517 Color(ColorSpace cspace, float components[], float alpha) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLine.java88 private float[] locs; // x,y pairs for components in visual order
104 TextLineComponent[] components,
113 int[] componentVisualOrder = computeComponentOrder(components,
117 fComponents = components;
141 "sum of char counts of components.");
147 // first, we need to check for graphic components on the TOP or BOTTOM baselines. So
799 * Return the union of the visual bounds of all the components.
959 TextLineComponent[] components = new TextLineComponent[1];
961 components = createComponentsOnRun(0, chars.length,
967 components,
103 TextLine(FontRenderContext frc, TextLineComponent[] components, float[] baselineOffsets, char[] chars, int charsStart, int charsLimit, int[] charLogicalOrder, byte[] charLevels, boolean isDirectionLTR) argument
997 createComponentsOnRun(int runStart, int runLimit, char[] chars, int[] charsLtoV, byte[] levels, TextLabelFactory factory, Font font, CoreMetrics cm, FontRenderContext frc, Decoration decorator, TextLineComponent[] components, int numComponents) argument
1160 computeComponentOrder(TextLineComponent[] components, int[] charsLtoV) argument
1410 getAdvanceBetween(TextLineComponent[] components, int start, int limit) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGroupLayout.java40 * groups components in order to position them in a {@code Container}.
71 * components contained in it. The vertical group is responsible for
74 * components contained in it. Each {@code Component} must exist in both
80 * axis. The sequential group contains three components. A parallel group
97 * of each of the components. As all three components have the same height,
100 * The following diagram shows the same three components, but with the
107 * As {@code c1} is the largest of the three components, the parallel
126 * between components that touch the edge of the parent container and the
136 * // Turn on automatically adding gaps between components
698 linkSize(Component... components) argument
726 linkSize(int axis, Component... components) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSplitPaneUI.java876 /* Needs to remove all the components and re-add them! YECK! */
878 // be drawn on top of the other components, without this, one
1278 protected Component[] components; field in class:BasicSplitPaneUI.BasicHorizontalLayoutManager
1293 components = new Component[3];
1294 components[0] = components[1] = components[2] = null;
1323 Dimension dSize = (components[2] == null) ? null :
1324 components[2].getPreferredSize();
1355 if (components[counte
[all...]

Completed in 90 milliseconds

12