Searched refs:compile (Results 226 - 246 of 246) sorted by relevance

12345678910

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTaskImpl.java132 result = compilerMain.compile(args, classNames, context, fileObjects, processors);
352 * This can be used to ensure that all compile time errors are reported.
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DSynthFileChooserUI.java495 this.pattern = Pattern.compile(new String(rPat, 0, j), Pattern.CASE_INSENSITIVE);
/openjdk7/jdk/test/java/util/ArrayList/
H A DIteratorMicroBenchmark.java134 return val == null ? null : Pattern.compile(val);
/openjdk7/jdk/test/sun/net/www/ftptest/
H A DFtpCommandHandler.java218 Pattern p = Pattern.compile("\\|(\\d)\\|(.*)\\|(\\d+)\\|");
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DWalkerFactory.java1010 expr = compiler.compile(opPos);
1013 expr = compiler.compile(opPos + 2);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A DCHANGES149 libpng will use the zlib CRC routines by (compile-time) default
193 Added macros for simple libpng debugging output selectable at compile time
391 to remove unwanted capabilities via the compile line
557 inadvertently trying to compile it.
1132 Revised pnggccrd.c to conditionally compile some thread-unsafe code only
1466 Revised "clobber list" in pnggccrd.c so it will compile under gcc-3.4.
1711 -DPNG_BUILDING_LIBPNG to compile directive, and modified pngconf.h
2321 Conditionally compile png_read_finish_row() which is not used by
2750 Revise the "#ifdef" blocks in png_inflate() so it will compile when neither
3306 to compile whe
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWM.java350 Pattern winIdPat = Pattern.compile("WINID\\s+(\\p{XDigit}{0,8})");
1344 Pattern pat = Pattern.compile("^IceWM (\\d+)\\.(\\d+)\\.(\\d+).*$");
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java52 * Pattern p = Pattern.{@link #compile compile}("a*b");
384 * and leads to a compile-time error; in order to match the string
533 * <tt>"\\u2014"</tt>, while not equal, compile into the same pattern, which
772 * RegExp r1 = RegExp.compile("abc", Pattern.I|Pattern.M);
773 * RegExp r2 = RegExp.compile("(?im)abc", 0);
938 * to lazily compile deserialized Patterns.
1021 public static Pattern compile(String regex) { method in class:Pattern
1046 public static Pattern compile(String regex, int flags) { method in class:Pattern
1085 compile();
1625 private void compile() { method in class:Pattern
[all...]
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java641 return Pattern.compile(regex).matcher(str).find();
645 Matcher matcher = Pattern.compile(regex).matcher(str);
1809 Pattern p = Pattern.compile(programName);
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME256 file <img_scaleloop.h> to do the actual work. When you compile this file
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRECompiler.java29 * command line tool uses this compiler to pre-compile regular expressions for use
1307 * @param pattern Regular expression pattern to compile (see RECompiler class
1314 public REProgram compile(String pattern) throws RESyntaxException method in class:RECompiler
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerFactoryImpl.java890 byte[][] bytecodes = xsltc.compile(null, input, outputType);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicFileChooserUI.java1107 this.pattern = Pattern.compile(new String(rPat, 0, j), Pattern.CASE_INSENSITIVE);
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipher.java402 pattern = Pattern.compile(regexp);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DOptions.java706 Pattern p = Pattern.compile("(?:"+token+"(?:\\:"+token+")?\\@)?"+token+"(?:\\:"+token+")");
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java1892 private static final Pattern OBJ_SIGNATURE = Pattern.compile("\\[*L[^;]*;|\\[+[A-Z]");
1893 private static final Pattern WIDE_SIGNATURE = Pattern.compile("[JD]");
/openjdk7/jdk/src/share/classes/sun/misc/
H A DFloatingDecimal.java1870 hexFloatPattern = Pattern.compile(
/openjdk7/jdk/test/java/util/Formatter/
H A DBasic-X.java.template175 testDateTime(Pattern.compile("t").matcher(fs).replaceFirst("T"),
/openjdk7/jdk/src/share/classes/java/util/
H A DFormatter.java2508 private static Pattern fsPattern = Pattern.compile(formatSpecifier);
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java251 final Pattern pattern = Pattern.compile(expr);
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceClass.java535 // Cf. Main.compile(). Perhaps this code belongs there somehow.
1192 * and do not attempt to compile code against this class,
2048 public void compile(OutputStream out) method in class:SourceClass
2101 // System.out.println("compile class " + getName());
2113 //System.out.println("compile field " + field.getName());

Completed in 141 milliseconds

12345678910