Searched refs:group (Results 176 - 200 of 254) sorted by relevance

1234567891011

/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousSocketChannelImpl.java85 AsynchronousSocketChannelImpl(AsynchronousChannelGroupImpl group) argument
88 super(group.provider());
94 AsynchronousSocketChannelImpl(AsynchronousChannelGroupImpl group, argument
99 super(group.provider());
H A DAsynchronousServerSocketChannelImpl.java69 AsynchronousServerSocketChannelImpl(AsynchronousChannelGroupImpl group) { argument
70 super(group.provider());
/openjdk7/jdk/src/solaris/classes/java/lang/
H A DUNIXProcess.java.bsd95 private final static ThreadGroup group = getRootThreadGroup();
109 Thread t = new Thread(group, grimReaper, "process reaper", 32768);
H A DUNIXProcess.java.linux95 private final static ThreadGroup group = getRootThreadGroup();
109 Thread t = new Thread(group, grimReaper, "process reaper", 32768);
/openjdk7/langtools/test/tools/javac/policy/test1/
H A DTest1b.java26 * @summary Compile a group of files and validate the set of class files produced
32 * @summary Compile a group of files and validate the set of class files produced
38 * @summary Compile a group of files and validate the set of class files produced
44 * @summary Compile a group of files and validate the set of class files produced
52 // * @summary Compile a group of files and validate the set of class files produced
58 // * @summary Compile a group of files and validate the set of class files produced
66 // * @summary Compile a group of files and validate the set of class files produced
72 // * @summary Compile a group of files and validate the set of class files produced
114 found(m.group(1), name);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalFileChooserUI.java310 // View button group
1241 private static void groupLabels(AlignedLabel[] group) { argument
1242 for (int i = 0; i < group.length; i++) {
1243 group[i].group = group;
1248 private AlignedLabel[] group; field in class:MetalFileChooserUI.AlignedLabel
1264 // Align the width with all other labels in group.
1269 if (maxWidth == 0 && group != null) {
1271 for (int i = 0; i < group
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorPanel.java60 ButtonGroup group = new ButtonGroup();
73 group.add(button);
/openjdk7/jdk/src/share/classes/java/awt/
H A DEventDispatchThread.java76 EventDispatchThread(ThreadGroup group, String name, EventQueue queue) { argument
77 super(group, name);
/openjdk7/jdk/test/java/rmi/activation/Activatable/forceLogSnapshot/
H A DForceLogSnapshot.java156 int group = 0;
166 * non-restartable service (respectively) in a group other than
167 * this VM's group.
185 groupNo = (group++)%NUM_GROUPS;
188 System.err.println("Objects group number: " + groupNo);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DPackageIndexWriter.java51 * Map representing the group of packages as specified on the command line.
64 * information as provided on the command line by "-group" option. Stores
74 groupPackageMap = configuration.group.groupPackages(packages);
75 groupList = configuration.group.getGroupList();
100 * separate table indices for each package group.
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDebug.java231 String matched = matcher.group();
255 String matched = matcher.group();
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DRangeMenu.java253 m.appendReplacement(sb, m.group(1) + m.group(2).toUpperCase(Locale.ROOT));
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileSystem.java134 * the file owner/group/permissions/timestamps but it does not preserve
334 public GroupPrincipal lookupPrincipalByGroupName(String group)
337 return UnixUserPrincipals.lookupGroup(group);
H A DUnixSecureDirectoryStream.java542 throw new IOException("'owner' parameter can't be a group");
548 public void setGroup(GroupPrincipal group) argument
551 if (!(group instanceof UnixUserPrincipals.Group))
553 int gid = ((UnixUserPrincipals.Group)group).gid();
/openjdk7/langtools/test/tools/javac/diags/
H A DRunExamples.java311 writeLines(m.group(2));
490 legalHeader = m1.group(1);
491 text = m1.group(2);
498 infoHeader = m2.group(1);
499 text = m2.group(2);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DSchema.java61 private ModelGroupDeclImpl group; field in class:Schema
97 $runtime.checkDoubleDefError( $runtime.currentSchema.getModelGroupDecl(group.getName()) );
98 $runtime.currentSchema.addModelGroupDecl(group,false);
212 if((($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("element")) || (($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("annotation")) || (($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("attributeGroup")) || (($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("simpleType")) || (($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("attribute")) || (($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("redefine")) || (($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("notation")) || (($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("group")) || (($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("complexType")) || (($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("import")) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("include"))))))))))))) {
265 if(($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("group"))) {
266 NGCCHandler h = new group(this, super._source, $runtime, 359);
379 if(($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("group"))) {
380 NGCCHandler h = new group(this, super._source, $runtime, 370);
1207 group = ((ModelGroupDeclImpl)$__result__);
1278 group
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DCurrency.java709 String code = m.group(1);
710 int numeric = Integer.parseInt(m.group(2));
711 int fraction = Integer.parseInt(m.group(3));
/openjdk7/jdk/test/java/awt/Focus/NonFocusableWindowTest/
H A DNoEventsTest.java331 CheckboxGroup group = new CheckboxGroup();
332 Checkbox ch1 = new Checkbox("one", group, true);
333 Checkbox ch2 = new Checkbox("two", group, false);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/report/
H A DHTMLSeriesReporter.java72 * Holds the groups and corresponding group-display-names
348 if (optionValues.size() == 1) continue; // don't group by this if only one value
454 " -group | -g <level> " +
455 "group-level for tests \n" +
475 int group = 2;
495 } else if (args[i].startsWith("-group") ||
499 group = Integer.parseInt(args[i]);
500 System.out.println("Grouping Level for tests: " + group);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DAxis.java70 * Returns true if this is one of the model group axis.
130 * Iterate all descendant model groups of the given model group, including itself.
233 public Iterator<XSComponent> modelGroup(XSModelGroup group) {
234 if(visited.add(group))
235 return ret(group, new Recursion(group.iterator()));
343 //public Iterator<XSElementDecl> modelGroup(XSModelGroup group) {
344 // return new Iterators.Map<XSElementDecl,XSParticle>(group.iterator()) {
460 return "group::";
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DNameGetter.java134 public String modelGroup(XSModelGroup group) { argument
H A DXSFinder.java163 public Boolean modelGroup(XSModelGroup group) { argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DDocImpl.java186 return m.group(1);
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decp_256.c422 ec_group_set_gfp256(ECGroup *group, ECCurveName name) argument
425 group->meth->field_mod = &ec_GFp_nistp256_mod;
426 group->meth->field_mul = &ec_GFp_nistp256_mul;
427 group->meth->field_sqr = &ec_GFp_nistp256_sqr;
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java123 * the group in which the object should be activated and invokes the
124 * activate method on the object's activation group (described by the
127 * necessary. For example, if an activation group for a specific group
129 * child process for the activation group. <p>
150 /** maps activation id to its respective group id */
153 /** maps group id to its GroupEntry groups */
160 /** number of simultaneous group exec's */
275 getTextResource("rmid.restart.group.warning"));
519 ActivationInstantiator group,
518 activeGroup(ActivationGroupID id, ActivationInstantiator group, long incarnation) argument
811 transient ActivationInstantiator group = null; field in class:Activation.GroupEntry
[all...]

Completed in 96 milliseconds

1234567891011