Searched refs:group (Results 151 - 175 of 254) sorted by relevance

1234567891011

/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DStructOffsetResolver.java119 String fwname = m.group(1);
120 String stname = m.group(2);
121 int stsize = Integer.parseInt(m.group(3));
136 sf.offset.put(arch, Integer.parseInt(fm.group(1)));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DUnusedCustomizationChecker.java209 public void modelGroup(XSModelGroup group) { argument
210 if(check(group)) {
211 for( int i=0; i<group.getSize(); i++ )
212 group.getChild(i).visit(this);
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DPendingIoCache.java148 Iocp iocp = (Iocp)((Groupable)result.channel()).group();
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DSeedGenerator.java243 // Thread group for our threads
268 ThreadGroup parent, group =
270 while ((parent = group.getParent()) != null)
271 group = parent;
273 (group, "SeedGenerator ThreadGroup");
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec2_233.c294 ec_group_set_gf2m233(ECGroup *group, ECCurveName name) argument
296 group->meth->field_mod = &ec_GF2m_233_mod;
297 group->meth->field_mul = &ec_GF2m_233_mul;
298 group->meth->field_sqr = &ec_GF2m_233_sqr;
H A Decp_384.c286 ec_group_set_gfp384(ECGroup *group, ECCurveName name) argument
289 group->meth->field_mod = &ec_GFp_nistp384_mod;
290 group->meth->field_mul = &ec_GFp_nistp384_mul;
291 group->meth->field_sqr = &ec_GFp_nistp384_sqr;
H A Decp_224.c364 ec_group_set_gfp224(ECGroup *group, ECCurveName name) argument
367 group->meth->field_mod = &ec_GFp_nistp224_mod;
368 group->meth->field_mul = &ec_GFp_nistp224_mul;
369 group->meth->field_sqr = &ec_GFp_nistp224_sqr;
370 group->meth->field_div = &ec_GFp_nistp224_div;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/ct/
H A DAbstractExtendedComplexTypeBuilder.java76 public NameClass modelGroup(XSModelGroup group) {
78 for( int i=0; i<group.getSize(); i++ )
79 nc = new ChoiceNameClass(nc, group.getChild(i).getTerm().apply(this));
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystem.java273 public GroupPrincipal lookupPrincipalByGroupName(String group)
276 UserPrincipal user = WindowsUserPrincipals.lookup(group);
278 throw new UserPrincipalNotFoundException(group);
/openjdk7/jdk/test/java/util/regex/
H A DRegExTest.java160 if (!m.group().equals(expected))
166 if (m.group().equals(result) != expected)
473 result.add(m.group());
975 "(\\w{4})+;", // capturing group - OK
986 if (!m.group(0).equals(input))
1001 matcher.group(1) != null ||
1002 !matcher.group(2).equals("abcd")) {
1378 if (!matcher.group(0).equals("aa"))
1384 if (!matcher.group(0).equals("aa\u2028blah"))
1396 if (!matcher.group(
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DClassInfoImpl.java634 * Bit mask that represents secondary annotations that are allowed on this group.
755 // determine the group kind, and also count the numbers, since
757 PropertyGroup group = null;
761 group = PropertyGroup.TRANSIENT;
765 group = PropertyGroup.ANY_ATTRIBUTE;
769 group = PropertyGroup.ATTRIBUTE;
773 group = PropertyGroup.VALUE;
777 group = PropertyGroup.ELEMENT;
781 group = PropertyGroup.ELEMENT_REF;
791 if(group
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DProgressMonitor.java136 ProgressMonitor group) {
146 if (group != null) {
147 root = (group.root != null) ? group.root : group;
131 ProgressMonitor(Component parentComponent, Object message, String note, int min, int max, ProgressMonitor group) argument
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DParser.java54 public static final String GROUP_ELEMENT = "group";
112 // <group>
117 Group group = new Group();
126 monitor.setState(group.getName());
129 return group;
158 private InputMethod parseMethod(XMLParser.ElementHandler handler, Group group) throws SAXException { argument
166 InputMethod method = new InputMethod(group, handler.readRequiredAttribute(METHOD_NAME_PROPERTY), handler.readRequiredAttribute(METHOD_SHORT_NAME_PROPERTY), bci);
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DSynthFileChooserUIImpl.java292 // View button group
1070 private static void groupLabels(AlignedLabel[] group) { argument
1071 for (int i = 0; i < group.length; i++) {
1072 group[i].group = group;
1077 private AlignedLabel[] group; field in class:SynthFileChooserUIImpl.AlignedLabel
1092 // Align the width with all other labels in group.
1097 if (maxWidth == 0 && group != null) {
1099 for (int i = 0; i < group
[all...]
/openjdk7/jdk/src/share/classes/sun/net/ftp/impl/
H A DFtpClient.java103 // 6 - user, 7 - group
225 // 5 - permissions, 6 - user, 7 - group
226 filename = m.group(patternGroups[j][0]);
227 fsize = m.group(patternGroups[j][1]);
228 fdate = m.group(patternGroups[j][2]);
230 fdate += (", " + m.group(patternGroups[j][4]));
235 time = m.group(patternGroups[j][3]);
238 permstring = m.group(patternGroups[j][5]);
242 username = m.group(patternGroups[j][6]);
245 groupname = m.group(patternGroup
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DSubstitutionGroupHandler.java101 // 2.2 There is a chain of {substitution group affiliation}s from D to C, that is, either D's {substitution group affiliation} is C, or D's {substitution group affiliation}'s {substitution group affiliation} is C, or . . .
162 // check whether element is in exemplar's substitution group
164 // [Definition:] Every element declaration (call this HEAD) in the {element declarations} of a schema defines a substitution group, a subset of those {element declarations}, as follows:
165 // Define PSG, the potential substitution group for HEAD, as follows:
167 // 2 PSG is closed with respect to {substitution group affiliation}, that is, if any element declaration in the {element declarations} has a {substitution group affiliation} in PSG, then it is also in PSG itself.
168 // HEAD's actual substitution group i
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DExecutors.java304 * java.lang.SecurityManager}, it uses the group of {@link
305 * System#getSecurityManager}, else the group of the thread
309 * priority permitted in the thread group. New threads have names
558 private final ThreadGroup group; field in class:Executors.DefaultThreadFactory
564 group = (s != null) ? s.getThreadGroup() :
572 Thread t = new Thread(group, r,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A Dgroup.java45 class group extends NGCCHandler { class in inherits:NGCCHandler
60 public group(NGCCHandler parent, NGCCEventSource source, NGCCRuntimeEx runtime, int cookie) { method in class:group
66 public group(NGCCRuntimeEx runtime) { method in class:group
100 if(($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("group"))) {
112 if((($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("group")) || (($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("annotation")) || (($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("any")) || (((($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("all")) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("choice"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("sequence"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("element"))))))) {
233 if(($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("group"))) {
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDisabledAlgorithmConstraints.java322 String algorithm = matcher.group(1);
325 KeySizeConstraint.Operator.of(matcher.group(2));
326 int length = Integer.parseInt(matcher.group(3));
/openjdk7/jdk/test/java/util/concurrent/locks/Lock/
H A DTimedAcquireLeak.java115 static String match(String s, String regex, int group) { argument
118 return matcher.group(group);
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DMonitor.java182 * Map containing the thread pool executor per thread group.
1523 // the executors map. If there is a SecurityManager, the group of
1524 // System.getSecurityManager() is used, else the group of the thread
1525 // instantiating this MonitorTask, i.e. the group of the thread that
1528 ThreadGroup group = (s != null) ? s.getThreadGroup() :
1535 if (tg == group) {
1548 group.getName() + "> Executor", group));
1608 * the group of System.getSecurityManager(), else the group o
1617 final ThreadGroup group; field in class:Monitor.DaemonThreadFactory
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Duniverse.hpp176 static oop _main_thread_group; // Reference to the main thread group object
177 static oop _system_thread_group; // Reference to the system thread group object
314 static void set_main_thread_group(oop group) { _main_thread_group = group;} argument
317 static void set_system_thread_group(oop group) { _system_thread_group = group;} argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DSchemaTreeTraverser.java428 SchemaTreeNode newNode = new SchemaTreeNode("Attribute group \""
449 * Creates node of attribute group decalration reference.
451 * @param decl Attribute group decalration reference.
454 SchemaTreeNode newNode = new SchemaTreeNode("Attribute group ref \"{"
878 public void modelGroup(XSModelGroup group) { argument
879 modelGroup(group, "");
883 * Creates node for model group with additional attributes.
885 * @param group Model group.
888 private void modelGroup(XSModelGroup group, Strin argument
[all...]
/openjdk7/jdk/src/share/demo/jfc/SampleTree/
H A DSampleTree.java174 ButtonGroup group = new ButtonGroup();
193 group.add(button);
208 group.add(button);
224 group.add(button);
/openjdk7/jdk/test/sun/net/www/http/HttpClient/
H A DProxyTest.java86 askedUrl = m.group(1);

Completed in 583 milliseconds

1234567891011