/openjdk7/langtools/test/tools/javac/ |
H A D | T6232928.java | 40 int mod = pkginfo_cls.getModifiers(); 41 if (Modifier.isAbstract(mod) && Modifier.isInterface(mod)) { 42 if ((mod & 0x1000) == 0) {
|
H A D | T6557865.java | 40 int mod = pkginfo_cls.getModifiers(); 41 if ((mod & 0x1000) != 0) {
|
/openjdk7/jdk/src/share/classes/java/lang/reflect/ |
H A D | Modifier.java | 64 * @param mod a set of modifiers 65 * @return {@code true} if {@code mod} includes the 68 public static boolean isPublic(int mod) { argument 69 return (mod & PUBLIC) != 0; 76 * @param mod a set of modifiers 77 * @return {@code true} if {@code mod} includes the 80 public static boolean isPrivate(int mod) { argument 81 return (mod & PRIVATE) != 0; 88 * @param mod a set of modifiers 89 * @return {@code true} if {@code mod} include 92 isProtected(int mod) argument 104 isStatic(int mod) argument 116 isFinal(int mod) argument 128 isSynchronized(int mod) argument 140 isVolatile(int mod) argument 152 isTransient(int mod) argument 164 isNative(int mod) argument 176 isInterface(int mod) argument 188 isAbstract(int mod) argument 200 isStrict(int mod) argument 235 toString(int mod) argument 345 isSynthetic(int mod) argument [all...] |
/openjdk7/corba/make/common/ |
H A D | CancelImplicits.gmk | 55 %: %.mod
|
/openjdk7/jdk/test/java/lang/String/ |
H A D | ICCBasher.java | 76 String mod = (String)L1.get(x); 77 mod = mod.toUpperCase(); 78 L1.set(x, mod); 82 String mod = (String)L2.get(x); 83 mod = mod.toUpperCase(); 84 L2.set(x, mod);
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/ |
H A D | IDLType.java | 64 String mod = modules_[ctr] ; 68 if (fixIDLKeywords && IDLNameTranslatorImpl.isIDLKeyword(mod)) 69 mod = IDLNameTranslatorImpl.mangleIDLKeywordClash( mod ) ; 71 sbuff.append( mod ) ;
|
/openjdk7/jdk/src/share/classes/sun/tools/java/ |
H A D | ParserActions.java | 69 int mod, IdentifierToken nm, 84 String doc, int mod, Type t, 68 beginClass(long off, String doc, int mod, IdentifierToken nm, IdentifierToken sup, IdentifierToken impl[]) argument 83 defineField(long where, ClassDefinition c, String doc, int mod, Type t, IdentifierToken nm, IdentifierToken args[], IdentifierToken exp[], Node val) argument
|
H A D | Parser.java | 179 int mod, IdentifierToken nm, 192 beginClass(off, doc, mod, nm.id, supId, implIds); 199 protected void beginClass(long off, String doc, int mod, Identifier nm, argument 237 String doc, int mod, Type t, 256 defineField(where, doc, mod, t, nm.id, argIds, expIds, val); 263 protected void defineField(long where, String doc, int mod, Type t, argument 907 protected Statement parseDeclaration(long p, int mod, Expression type) throws SyntaxError, IOException { argument 916 return new DeclarationStatement(p, mod, type, statArgs(i)); 991 int mod = parseModifiers(M_FINAL); 995 init = parseDeclaration(p2, mod, 178 beginClass(long off, String doc, int mod, IdentifierToken nm, IdentifierToken sup, IdentifierToken impl[]) argument 236 defineField(long where, ClassDefinition c, String doc, int mod, Type t, IdentifierToken nm, IdentifierToken args[], IdentifierToken exp[], Node val) argument 1509 addArgument(int mod, Type t, IdentifierToken nm) argument 1847 parseLocalClass(int mod) argument 1862 parseNamedClass(int mod, int ctx, String doc) argument 1930 parseClassBody(IdentifierToken nm, int mod, int ctx, String doc, Vector ext, Vector impl, long p ) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/tools/javac/ |
H A D | BatchParser.java | 119 public ClassDefinition beginClass(long where, String doc, int mod, argument 146 if ((mod & M_ANONYMOUS) != 0) { 147 mod |= (M_FINAL | M_PRIVATE); 149 if ((mod & M_LOCAL) != 0) { 150 mod |= M_PRIVATE; 164 if ((mod & M_INTERFACE) != 0) { 166 mod |= M_ABSTRACT; 169 mod |= M_STATIC; 180 if ((mod & (M_PRIVATE | M_PROTECTED)) == 0) 181 mod | 247 defineField(long where, ClassDefinition c, String doc, int mod, Type t, IdentifierToken name, IdentifierToken args[], IdentifierToken exp[], Node val) argument [all...] |
/openjdk7/jdk/make/common/ |
H A D | CancelImplicits.gmk | 55 %: %.mod
|
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/ |
H A D | Test.java | 50 public void addDependency(Modifier mod) { argument 51 addDependency(mod, null); 54 public void addDependency(Modifier mod, Modifier.Filter filter) { argument 55 dependencies = DependentLink.add(dependencies, mod, filter); 236 public static DependentLink add(DependentLink d, Modifier mod, argument 239 DependentLink dl = new DependentLink(mod, filter); 253 private Modifier mod; field in class:Test.DependentLink 256 private DependentLink(Modifier mod, Modifier.Filter filter) { argument 257 this.mod = mod; [all...] |
H A D | Result.java | 430 Modifier mod = (Modifier) enum_.nextElement(); 431 Object v = modifiers.get(mod); 433 System.out.print(mod.getAbbreviatedModifierDescription(v)); 447 Modifier mod = (Modifier) enum_.nextElement(); 448 Object v = modifiers.get(mod); 449 String val = mod.getModifierValueName(v); 451 "key=\""+mod.getTreeName()+"\" "+
|
/openjdk7/langtools/test/tools/javac/FloatingPointChanges/ |
H A D | Test.java | 51 int mod = m.getModifiers(); 52 if (!Modifier.isStrict(mod))
|
/openjdk7/jdk/test/java/math/BigInteger/ |
H A D | ModPow65537.java | 56 BigInteger mod = new BigInteger("75554098474976067521257305210610421240510163914613117319380559667371251381587"); 65 if (base.modPow(exp1, mod).equals(res1) == false) { 68 if (base.modPow(exp2, mod).equals(res2) == false) { 71 if (base.modPow(exp3, mod).equals(res3) == false) {
|
H A D | ModPow.java | 43 BigInteger w = base.pow(exp.intValue()).mod(m); 45 System.err.println(base +" ** " + exp + " mod "+ m); 47 System.err.println("pow.mod: " + w);
|
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/ |
H A D | ShiftLeft.java | 72 ls = ls.mod (twoPow16); 74 ls = ls.mod (twoPow32); 76 ls = ls.mod (twoPow64);
|
/openjdk7/jdk/src/share/classes/com/sun/media/sound/ |
H A D | DLSInstrument.java | 223 private ModelConnectionBlock convertToModel(DLSModulator mod) { argument 224 ModelIdentifier source = convertToModelSrc(mod.getSource()); 225 ModelIdentifier control = convertToModelSrc(mod.getControl()); 227 convertToModelDest(mod.getDestination()); 229 int scale = mod.getScale(); 272 if (mod.getVersion() == 1) { 273 //if (mod.getTransform() == DLSModulator.CONN_TRN_CONCAVE) { 278 if (mod.getTransform() == DLSModulator.CONN_TRN_CONCAVE) { 297 } else if (mod.getVersion() == 2) { 298 int transform = mod [all...] |
/openjdk7/jdk/test/javax/swing/JMenuItem/ActionListenerCalledTwice/ |
H A D | ActionListenerCalledTwiceTest.java | 113 private static int getModKeyCode(int mod) { argument 114 if ((mod & (InputEvent.SHIFT_DOWN_MASK | InputEvent.SHIFT_MASK)) != 0) { 118 if ((mod & (InputEvent.CTRL_DOWN_MASK | InputEvent.CTRL_MASK)) != 0) { 122 if ((mod & (InputEvent.ALT_DOWN_MASK | InputEvent.ALT_MASK)) != 0) { 126 if ((mod & (InputEvent.META_DOWN_MASK | InputEvent.META_MASK)) != 0) {
|
/openjdk7/langtools/test/tools/javac/generics/diamond/6996914/ |
H A D | T6996914a.java | 62 String mod; field in class:T6996914a.ConstructorKind 64 ConstructorKind(String mod) { argument 65 this.mod = mod; 82 source = sourceStub.replace("#P", pk.pkgDecl).replace("#M", ck.mod);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/ |
H A D | CodeModelClassFactory.java | 66 public JDefinedClass createClass( JClassContainer parent, int mod, String name, Locator source ) { argument 67 return createClass(parent,mod,name,source,ClassType.CLASS); 73 public JDefinedClass createInterface( JClassContainer parent, int mod, String name, Locator source ) { argument 74 return createClass(parent,mod,name,source,ClassType.INTERFACE); 81 JClassContainer parent, int mod, String name, Locator source, ClassType kind ) { 93 mod |= JMod.STATIC; 95 JDefinedClass r = parent._class(mod,name,kind); 80 createClass( JClassContainer parent, int mod, String name, Locator source, ClassType kind ) argument
|
/openjdk7/jdk/src/share/classes/sun/util/calendar/ |
H A D | CalendarUtils.java | 99 * <code>mod(n, d)</code> is returned. 122 * <code>mod(n, d)</code> is returned. 135 public static final long mod(long x, long y) { method in class:CalendarUtils 139 public static final int mod(int x, int y) { method in class:CalendarUtils 144 int z = mod(x, y); 149 long z = mod(x, y);
|
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/ |
H A D | Compile.java | 383 ModuleEntry mod = null; 400 mod = (ModuleEntry)symbolTable.get (fullName); 401 if (mod == null) 403 mod = factory.moduleEntry (); 404 mod.name (pkg); 405 mod.container (prev); 406 if (prev != null) mod.module (prev.fullName ()); 407 symbolTable.put (pkg, mod); 409 prev = mod; 411 entry.module (mod [all...] |
/openjdk7/jdk/src/share/classes/sun/tools/tree/ |
H A D | DeclarationStatement.java | 40 int mod; field in class:DeclarationStatement 47 public DeclarationStatement(long where, int mod, Expression type, Statement args[]) { argument 49 this.mod = mod; 70 vset = args[i].checkDeclaration(env, ctx, vset, mod, t, exp);
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/servicecontext/ |
H A D | ServiceContextData.java | 92 int mod = fld.getModifiers() ; 93 if (!Modifier.isPublic(mod) || !Modifier.isStatic(mod) || 94 !Modifier.isFinal(mod) )
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/ |
H A D | BooleanEncodingAlgorithm.java | 123 final int mod = (alength + 4) % 8; 124 final int unusedBits = (mod == 0) ? 0 : 8 - mod; 232 final int mod = (alength + 4) % 8; 233 final int unusedBits = (mod == 0) ? 0 : 8 - mod;
|