/openjdk7/jdk/src/macosx/classes/com/apple/laf/ |
H A D | AquaToolBarSeparatorUI.java | 63 final JToolBar.Separator sep = (JToolBar.Separator)c; 64 if (sep.getOrientation() == SwingConstants.HORIZONTAL) { 71 final JToolBar.Separator sep = (JToolBar.Separator)c; 72 if (sep.getOrientation() == SwingConstants.HORIZONTAL) { 79 final JToolBar.Separator sep = (JToolBar.Separator)c; 80 if (sep.getOrientation() == SwingConstants.HORIZONTAL) {
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/ |
H A D | RelativePath.java | 119 int sep = path.lastIndexOf('/', l - 2); 120 return new RelativeDirectory(path.substring(0, sep + 1)); 128 int sep = path.lastIndexOf('/', l - 2); 129 return path.substring(sep + 1, l - 1); 175 int sep = path.lastIndexOf('/'); 176 return new RelativeDirectory(path.substring(0, sep + 1)); 181 int sep = path.lastIndexOf('/'); 182 return path.substring(sep + 1);
|
/openjdk7/jdk/test/java/awt/FontClass/CreateFont/fileaccess/ |
H A D | FontFile.java | 45 String sep = System.getProperty("file.separator"); 46 String fname = ".." + sep + "A.ttf"; 50 fname = dir + sep + fname; 57 testfile = classesDir + sep + testfile;
|
/openjdk7/jdk/test/java/lang/ClassLoader/deadlock/ |
H A D | Starter.java | 44 String sep = System.getProperty("file.separator"); 45 urlsa[0] = new URL("file://" + testDir + sep + "SA" + sep); 46 urlsb[0] = new URL("file://" + testDir + sep + "SB" + sep);
|
/openjdk7/jdk/test/tools/jar/ |
H A D | ChangeDir.java | 64 static void doTest(String sep) throws Throwable { argument 71 testDir = new File(dirName + sep + "a" + sep + "b"); 85 argList.add(dirName + sep + "a" + sep + sep + "b"); // Note double 'sep' is intentional
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/ |
H A D | OperationFactory.java | 57 * <li>listAction( String sep, Operation ) tokenizes the String value with sep as separator, then 59 * <li>sequenceAction( String, Operation[] ) tokenizes the String value with sep as separator, then 375 private String sep ; field in class:OperationFactory.ListAction 378 ListAction( String sep, Operation act ) argument 380 this.sep = sep ; 391 sep ) ; 407 return "listAction(separator=\"" + sep + 412 public static Operation listAction( String sep, Operatio argument 419 private String sep ; field in class:OperationFactory.SequenceAction 422 SequenceAction( String sep, Operation[] actions ) argument 456 sequenceAction( String sep, Operation[] actions ) argument [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
H A D | CPPExpressions.java | 94 String sep = "::"; 95 int idx = expr.lastIndexOf(sep); 100 String fieldName = expr.substring(idx + sep.length(), expr.length());
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/ |
H A D | BasicToolBarSeparatorUI.java | 60 JToolBar.Separator sep = (JToolBar.Separator)s; 63 if (sep.getOrientation() == JSeparator.HORIZONTAL) { 66 sep.setSeparatorSize(size);
|
/openjdk7/jdk/test/java/util/Currency/ |
H A D | CheckDataVersion.java | 66 String sep = File.separator; 67 DataInputStream dis = new DataInputStream(new FileInputStream(System.getProperty("java.home")+sep+"lib"+sep+"currency.data"));
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/ |
H A D | RawDiagnosticFormatter.java | 102 String sep = ""; 105 buf.append(sep); 109 sep = ","; 136 String sep = ": "; 138 buf.append(sep); 140 sep = ", ";
|
/openjdk7/langtools/test/tools/javac/6402516/ |
H A D | CheckIsAccessible.java | 93 int sep = name.indexOf("#"); 94 String tname = name.substring(0, sep); 95 String mname = name.substring(sep+1);
|
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/ |
H A D | Descriptor.java | 162 int sep = desc.indexOf(';', p); 163 if (sep == -1) 165 type = desc.substring(p, sep).replace('/', '.'); 166 p = sep + 1;
|
H A D | Signature.java | 63 String sep = ""; 65 sb.append(sep); 67 sep = ", "; 240 int sep = sig.indexOf(":", sigp); 241 String name = sig.substring(sigp, sep); 244 sigp = sep + 1; 258 int sep = sig.indexOf(';', sigp); 259 Type t = new SimpleType(sig.substring(sigp, sep)); 260 sigp = sep + 1;
|
H A D | Type.java | 53 String sep = ""; 55 sb.append(sep); 57 sep = ", "; 312 String sep = " extends "; 314 sb.append(sep); 316 sep = " & "; 320 sb.append(sep); 322 sep = " & ";
|
/openjdk7/hotspot/src/share/tools/ProjectCreator/ |
H A D | WinGammaPlatformVC7.java | 103 rv.add(sourceBase + Util.sep + f); 177 cfg.get("OutputDir") + Util.sep + "vm.tlb", "HeaderFileName", 201 addAttr(rv, "PrecompiledHeaderFile", outDir + Util.sep + "vm.pch"); 203 addAttr(rv, "ObjectFile", outDir + Util.sep); 204 addAttr(rv, "ProgramDataBaseFileName", outDir + Util.sep + "jvm.pdb"); 253 addAttr(rv, "ModuleDefinitionFile", outDir + Util.sep + "vm.def"); 254 addAttr(rv, "ProgramDatabaseFile", outDir + Util.sep + "jvm.pdb"); 258 addAttr(rv, "ImportLibrary", outDir + Util.sep + "jvm.lib"); 276 addAttr(rv, "BrowseInformationFile", "$(IntDir)" + Util.sep);
|
/openjdk7/jdk/test/com/sun/jdi/ |
H A D | Java_gTest.java | 90 String sep = System.getProperty("file.separator"); 92 String jbin = jhome + sep + "bin";
|
/openjdk7/jdk/test/java/awt/FontClass/CreateFont/ |
H A D | DeleteFont.java | 32 String sep = System.getProperty("file.separator"); 35 font = testSrc + sep + font;
|
/openjdk7/langtools/test/tools/javac/7003595/ |
H A D | T7003595.java | 67 String sep; field in class:T7003595.ClassKind 70 private ClassKind(String memberInnerStr, String sep, boolean staticAllowed) { argument 72 this.sep = sep; 82 System.out.println(" pos = " + pos + " kind = " + outerKinds[pos] + " sep = " + outerKinds[pos].sep); 86 return "Test" + outerKinds[pos].sep + name; 89 return outerStr + outerKinds[pos].sep + name;
|
/openjdk7/jdk/src/share/classes/sun/security/ssl/ |
H A D | TrustManagerFactoryImpl.java | 138 final String sep = File.separator; 174 storeFile = new File(javaHome + sep + "lib" + sep 175 + "security" + sep + 178 storeFile = new File(javaHome + sep + "lib" + sep 179 + "security" + sep +
|
/openjdk7/langtools/test/tools/javac/processing/model/element/TestMissingElement2/ |
H A D | Generator.java | 100 String sep = ""; 102 sb.append(sep); 104 sep = ",";
|
/openjdk7/jdk/test/java/io/File/ |
H A D | MaxPathLength.java | 32 private static String sep = File.separator; field in class:MaxPathLength 33 private static String pathComponent = sep + 104 File f = new File(pathString + sep + fn); 113 File fu = new File(pathString + sep + fn.toUpperCase());
|
/openjdk7/jdk/src/share/classes/sun/util/resources/ |
H A D | LocaleData.java | 225 final String sep = File.separator; 229 sep + "lib" + sep + "ext" + sep + localeDataJarName;
|
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/jar/ |
H A D | Handler.java | 104 int sep = file.indexOf(separator); 106 if (sep == -1) 110 String fileWithoutEntry = file.substring(0, sep); 118 String entry = file.substring(sep + 2);
|
/openjdk7/hotspot/src/share/vm/interpreter/ |
H A D | templateInterpreterGenerator.hpp | 67 void set_vtos_entry_points (Template* t, address& bep, address& cep, address& sep, address& aep, address& iep, address& lep, address& fep, address& dep, address& vep); 68 void set_short_entry_points(Template* t, address& bep, address& cep, address& sep, address& aep, address& iep, address& lep, address& fep, address& dep, address& vep);
|
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/ |
H A D | TokenList.java | 194 int pos = 0, limit = tokenStr.length(), sep = limit; 196 sep = tokenStr.indexOf(separator, pos); 197 if (sep < 0) { 198 sep = limit; 200 if (sep == pos) { 207 add(tokenStr.substring(pos, sep)); 209 pos = sep + separator.length(); 212 if (allowNulls && sep < limit) {
|